Generate j2me netbeans project from lwuit resource editor error - lwuit-resource-editor

hi i tried to generate netbeans project from lwuit 1.5 resource editor but it give me an error that say:
Problem: The project uses the Java Platform called "Sun Java(TM) Wireless Toolkit 2.5.2 for CLDC", but this platform was not found.
Solution: Click Resolve and create new platform called "Sun Java(TM) Wireless Toolkit 2.5.2 for CLDC".
how to solve this error?

1- Open the Netbeans IDE 7.x.x
2- Select : Tools, Java platforms, Click on the folder J2ME
3- Click on the "Add Platform" button
4- Select Java ME MIDP Platform Emulator, and "next"
5- The platform "C:\WTK2.5.2_01" will be automatically detected. Select it, and click "next"
6- At the tab "Description", in the textfield "Platform Name", write exactly the name: Sun Java(TM) Wireless Toolkit 2.5.2 for CLDC

Related

Configure "Eclipse IDE for C/C++ Developers" on a remote project

I have Eclipse IDE for C/C++ Developers, Version: 2019-06 (4.12.0)
I need to configure it to work on a virtual machine having a large C/C++ project.
I should have a remote access to it from Eclipse probably having SSH connection.
For that case I wanted to use Remote System Explorer , but installing it - got a message that it is not compatible with Eclipse version
What is correct solution to work remotely with eclipse?
This is what I tried in my system. May be it will help you.
1.Download and install Java 1.8 and above.
2.Download and install Eclipse IDE for C/C++ developers.
3.Open Eclipse.
4.Goto Window→Show View→ Other.
5.Search Remote and select 'Remote Systems'.
6.A window will get opened at the bottom. "Remote Systems"
7.Hover the mouse over that window and right click. Select 'New Connection'.
8.Select 'SSH Only' and click on 'Next'.
9.Put the details of the Host Name: and click on 'Finish'.

How can I configure what .NET version should be installed by windows installer in VS 2017

Currently I am working on a project that needs .NET 4.0 to work properly but when I configure the windows installer and try to install it is trying to install the latest version of .NET. So how can I configure the windows installer to install the .NET version on which the project was created. Also I would like to know how to include the Visual C++ Redistributable in my installer.
When you create a setup project and add primary output of a project to the setup project, the setup project automatically detect dependencies including Microsoft .Net Framework. To see if the detected dependency is correctly what you need, you cam see the following locations:
First of all, right click on Dependencies and click on Refresh Dependencies.
Check prerequisites for your project:
Right click on setup project and choose Properties.
In Properties dialog, from the Configurations combo box choose the configuration, and repeat the following steps for both Debug and Release.
Click on Prerequisites... button to open Prerequisites.
In the Prerequisites dialog, check the desired .Net Framework version.
Press OK and Make sure you repeat above steps for both Debug and Release.
Check Launch Conditions for your setup project:
Right click on setup project and from View select Launch Conditions:
Then under Launch COnditions node, select .Net Framework node and right click and select Properties Window.
In Properties Window check the Version property for .Net Framework launch condition.

How do I create a MeteorJS project in IntelliJ?

I would like to create a MeteorJS project in IntelliJ IDEA Ultimate 14.1, but it is not showing up in the "New Projects" template:
I have MeteorJS installed and running elsewhere, but I'm unable to find a way to create a MeteorJS project through IDEA.
It's definitely supported, so what am I doing wrong?
The Meteor plugin is not part of IDEA by default.
Here it says:
Note: The plugin is a part of WebStorm IDE and you don't need install it manually for WebStorm
If you are not using WebStorm you should install the plugin.
You can do this by doing the following:
Go to the Preferences menu (CMD , in OSX)
Click the "Plugins" section in the left pane
Click "Install Jetbrains plugin..." in the right panel in the lower
left
Search for "Meteor" in the search box
Click "Install plugin" in the right box

eclipse CDT create remote project

I'm using Eclipse CDT to create a project on a Debian 7 with RDT up and running. My Eclipse is connected and I can browse the remote filesystem, etc.
According to eclipse's documentation, I can click on "File->New->Remote C++ Project"... BUT that opetion is not available!
Eclipse is:
Eclipse IDE for C/C++ Developers
Version: Luna Service Release 1a (4.4.1)
Build id: 20150109-0600
Running on Mac OSX with Java 1.7
Anyone knows what could be wrong?
Thanks!

check if specific plugin install in eclipse

I wrote a new plugin to Eclipse, and also installed it.
Now- I want to check programmatically (C++ via QT) if the plugin was installed correctly.
so I want to find a way to retrieve all the plugins that installed on my eclipse.
any idea?
in Eclipse go to Help menu, click About Eclipse, Installation Details and click the plugins tab. That should get you an overview.