GeneXus Translation issues - genexus

I have used the GX translation tool for over 6 months, and suddenly the below issue appeared. Has anyone encountered the same, or perhaps could you please give me some advice on this?
The tool freezes once I try to import or export the file.
Add some translation -> Save -> Click "Tools" -> Click "Export Translation file" -> Display freezes
- Restart the PC -> nothing changed
- Uninstall the tool and try again -> nothing changed.

Related

In VS Code: Is there any way to disable recently opened folders in the Mac Dock?

I know that I can clear recently opened via "File -> Open Recent -> Clear Recently Opened"
I also know that I can disable recently opened files for the quick search as explained here https://github.com/microsoft/vscode/issues/30770
What I want is to disable it in the dock preview (the dialog that opens when I right click on vs code in the docker)
You can disable it by setting macOS System Settings -> General -> Recent items to "none" 🙂 I was also searching for this and found this solution

QtCreator - How to Disable Live Code Debugging?

The new QtCreator appears to constantly run some kind of "error checking" to see if the code will compile. This is slowing down my computer. How can I disable this?
Probably what you are seeing is the ClangCodeModel plugin that does check your code in realtime.
You can disable it like this:
Mac: (upper left menu)QtCreator -> About Plugins -> Search for
"ClangCodeModel" and uncheck the checkbox. -> Restart QtCreator
Windows and Linux: Help -> About Plugins -> Search for "ClangCodeModel" and
uncheck the checkbox. -> Restart QtCreator
I don't encourage you disabling it though...it helps you writing better code and learning new things. To find out more about QtCreator integration of ClangCodeModel have a look here

Xcode 9 Different Files Same Window

Does anyone know how to open two files in the same Xcode9 window (via tabs). This used to be so easy and intuitive, but it seems Apple has broken this functionality entirely.
I have used the Preference -> Navigation options and they have absolutely no affect on the behavior of the application.
Thanks for your help!
I don't know about tabs..., but I think that is because there is an easier way to open a second file on the same window...
Go to the file navigator
Search for the file you want to open
Option + Double click it and you will get a second editor for that file on the same window.
NOTE - My preferences are:
a. Preferences -> Navigation -> Optional Navigation = Uses Single Assistant Editor
b. Preferences -> Navigation -> Double Click Navigation = Uses Separate Window

javascript visual studio 2013 indentation

I started playing around with javascript on Visual Studio 2013 and I couldn't figure out why it is not automatically positioning the cursor to the correct indentation level, instead always resetting back to the head. For example:
function foo(y) {
var f = function bar(x) {
|<-- cursor should be here, but ends up
|<-- over here
}
Does anyone else see this and how do you change it?
I have the typescript, nodejs plugin installed and that's about it.
With a bit of research, things started working for me. First check that, Tools -> Options -> Text Editor -> Javascript -> Tabs -> Indenting is set to 'Smart'. Next restart VS. For me restarting was important since, apparently, my file had some mixed line-endings and that was throwing off the indentation engine. Hope this helps someone.
In my case, the whole javascript formatting stopped working for every file, I could play with language options and restart VS, nothing helped, until I unchecked:
Tools -> Options -> Text Editor -> JavaScript/TypeScript -> Language Service -> Enable the new JavaScript language service
The editor returned to old school javascript formatting, which is sufficient for me.
I'm not sure if this applies to Visual Studio 2013 (the original question), but in 2015 at least, you can select the text in your JavaScript file you want to format, right-click, and then choose "Format Selection". There's a keyboard short-cut as well (Ctrl-K, Ctrl-F).
If you already have Tools -> Options -> Text Editor -> Javascript -> Tabs -> Indenting set to 'Smart', then try setting this option (the Indenting setting) to 'None' and click OK.
Open the Options back up and, set Tools -> Options -> Text Editor -> Javascript -> Tabs -> Indenting back to 'Smart', click OK.
Close and reopen the file you were working on.

Xcode doesn't show recent projects in recent projects list

Every time I start Xcode it gives me a window where my recent projects supposedly should be. It would come in handy but unfortunately it's always empty.
Does it have anything to do with the location where I store my projects? I hope not.
Thanks for any help!
I would think it's because you could have your recent items set to 0 in System Preferences -> Appearance.
Update - If you are using Yosemite the correct path is System Preferences -> General -> Recent items (Thanks to #karim)
EDIT: Based on comments : Then Reboot
#Mellson answer is correct. But there is no menu in OS X Yosemite, System Preferences -> Appearance.
It should be, System Preferences -> General -> Recent items. Set e.g. 5 items.
or in command line,
defaults write com.apple.Xcode NSRecentDocumentsLimit 5
However, to my experience the first one works more correctly.
Restart your mac.
Earlier, I faced the same issue after I did Xcode 7.3 update. It showed me empty (Clear) Xcode File -> Open Recents menu.
You disabled the Welcome to Xcode screen. Press shift+command+1, and then reselect the checkbox as shown below. You can also start a new project from the File menu : New > Project… without the Welcome to Xcode screen.

Resources