I try to add a command on the new Gui with right placement but it adds automatically overflow to the .java file.
The Preview design shows it correct https://gyazo.com/eef78ee9d564c6957e62148db50e6bc4
but the simulator shows as overflowhttps://gyazo.com/a4023a18e48ee19a89bc86e294b5434f
Is it a bug?
Thanks in advance
This seems to be a bug in the GUI builder, we filed a lot of issues so please file this there too. It should work although might require you to go thru the steps again.
I would also suggest looking within the .gui file and seeing that the command generation looks correct.
Related
First of all, I want to greet and thank warmly this great community, you guys have helped me countless times with all kind of issues and problems.
Now, back to the issue part...
I'm trying to save a zip file containing my developed model to deploy it on NLU using IBM Knowledge Studio Advanced Rules Workspace, [full documentaint],1 but when I click on Export, selecting my developed extractor
it fails to save the zip file, so I cannot proceed anymore
No error is shown by the application itself, but I've seen that "Export as" and "Export to" options in Export Extractors window are not modifiable (the values that are visible in the screenshot are the only one that is present).
Then, I've seen through the console that when I click OK in the window to Export the zip file, the webpage get an error: https://i.imgur.com/8LehzYQ.png
It seems that it cannot read some zip checkbox inside the Export Extractors window...
Please help me because I'm completely stuck :(
WKS team has found an issue on the current Advanced Rule Editor and is working on fixing the issue. Sorry for your inconvenience.
Fix was deployed on IBM Cloud environment and we verified exporting extractor now works.
Please clear your browser cache before trying this.
I used to connect my Salesforce projects without any problem since today.
Now everytime I want to create or open a new project through Mavensmate. I get this error :
Error initializing project: client identifier invalid
I don't know how to solve it. I have googling without finding any solution. I thought this could solve my issue, but it doesn't work.
Please help!
Not sure if this is related or already said but it sounds like MavensMate has finally died. Related conversation/details here. If I knew how to build the windows version of the MavensMate source I'd try myself but seems like there is a security issue that would have to be applied too which I don't have time for (plus possibly out of my expertise reach).
So I'm now biting the bullet and starting the move from Sublime to VS Code using a couple different articles (here and here). Pretty sad about this but seems no other way. If possible I'll loop back to Sublime in the future but no idea if that will be feasible or not. If anyone finds a fix for MavensMate or a new way to do SFDC work in Sublime please let us know!
Currently I have a script that modifies nuget reference paths in old style csproj files. (for anyone that is interested this is due to building using different solutions which breaks the NuGet reference paths. I have reported it to Microsoft and it is currently in triage).
The script works correctly and does what I need it to, however I thought that this would be a good candidate for a Roslyn Analyzer with a Code fix.
I have played around with analysers and have been able to write several that can modify code within a project, but I am having great difficulty writing one that can work on the csproj file itself.
I have looked at workspaces (VisualStudioWorkspace and MSBuildWorkspace) however it seems to me that these will give you access to the various projects in a solution but will not give you access to the project file itself?
If anyone can give me a pointer to where/what I should be looking for, or if it is actually possible, i'd very much appreciate it.
Thank you
EHLO
I am into C and ncurses on Linux for the creation of an installer and I am kinda new on this. I have seen installers for linux(especially Anaconda) that can display windows, with buttons like "OK""NEXT""BACK" like on this link https://hurley.files.wordpress.com/2008/01/snack-popcorn-snapshot.png?w=500 and I need some information about it, I have found menu examples but not too much about "buttons" as I call it.
Greetings.
The example shown is from one of the slang-based applications such as whiptail. Anaconda uses python scripts which load the newt library and run those. As far as I know, there is essentially no documentation for any of those (other than source code), and that is a longstanding issue, for instance this comment, and this.
Whiptail is an application "like" dialog, but much simpler. dialog is a curses-based application which can be run using shell-scripts (such as bash). You can find more information about dialog on its homepage.
Well thank you guys.
I went to read some newt docs and it's amazing, actually is pretty simple and the official documentation is very straght-forward and it works, so I will better keep working my installer with newt instead of with ncurses.
I am tasked with the localization of a Windows Phone 7 application. The first step is to replace the actual visible text with an ID and put the ID and the text in a resource file.
This is a very tedious work and I was wondering if there are tools for this to automate?
I am thinking along the lines of the gettext package and .po files used in the linux world.
Here is a codeplex project that may help you some. http://xlocalization.codeplex.com/. To use this method, each control that is to be localized must have the name property assigned.
I tried it with my existing project, and got results that were mixed, but in the long run, I decided to do it by hand. I don't remember specifically what the problems were that I had, but if you want to try it on a copy of your project, it won't take much time. If it works for you (and if your controls to be localized all have names), it could save you time.
Also, I don't know how familiar you are with localizing, but I wrote a blog on the subject that takes you from start to finish. It's at http://www.hopnet.mobi, click Blogs.
Hope this helps.
I know this will get a lot of traditional answers, but I would also like to put forward something completely original we tried (and succeeded) doing ourselves for more efficient localisation of Silverlight using Attached Properties instead of binding:
Localisation of Silverlight projects after completion
To pre-populate the database we wrote a XML parser to find our markers in all our project's XAML files (XAML is just a subset of XML after all). We could not find any existing tools to do what you suggested, but our requirements were simplified by our new method of localisation (no resource files and no horrid bindings).
(yes, this is almost the same answer as a previous one of mine today, but it seems to fit again).
Also for future reference keep an eye out for this tool: http://www.neovelop.com/ This tool will go in private beta soon and looks very promising. Judging from their preview movie this will do exactly what you asked for.