hello, i have a nokia N70 mobile phone which is a 2nd edition S60 Symbian OS based phone. i want to develop java application for it. So, i downloaded netbeans IDE (full version, 310mb) and latest java jdk with ME. but i dont know from where i should start because i dont find any option for S60 or N70 in netbeans. i have knowledge of core java only, not advance java. :wtf: please help :confused:
rahuljin
Posts
-
java application for mobile phone -
[mfc] making a game trainer [modified]hello, i want to make a game trainer using mfc. please guide me and tell me is it good to write a tainer in mfc ?? sorry, but here it is. i have a game "Fallout 3". there are several trainers available for it on internet but i want to develop my own trainer for this game. so i want to say that is there any tutorial available for writing a game trainer in mfc for any game ? btw thanks rahul
modified on Saturday, August 1, 2009 12:59 AM
-
[mfc] restart other processthere is no create window function in the win32 application. there is only messagebox().
modified on Friday, July 24, 2009 4:12 AM
-
[mfc] restart other processthe win32 application is not a console application. i dont know how to communication between the two application can be set. in vs2008, i used win32 project (not win32 console application) for creating the win32 application. also the header files used are ---
#include <windows.h>
#include <winsock.h>
#include <tchar.h>
#include <wchar.h>
#include <iostream>
#include <fstream>
#include <shlwapi.h> -
[mfc] start/stop other processi created the win32 c++ application long back when i dont have any idea of mfc. it is working fine. with mfc, i create a gui which accept the some content and save them in text files. these text files are then used by the win32 application. win32 application runs at startup of windows and it takes the information from the files and starts using it (it is socket application so it will not read the file again until it receives some information for the ip which is saved in the text file). so i want to restart the win32 application when closing mfc application so that win32 application can use the updated text files. actually i want to use TerminateProcess() and then start it with CreateProcess() function. but i read that TerminateProcess() can create problem with DLL structure.
-
[mfc] restart other processsorry but i could not find my old question. i created the win32 c++ application long back when i dont have any idea of mfc. it is working fine. with mfc, i create a gui which accept the some content and save them in text files. these text files are then used by the win32 application. win32 application runs at startup of windows and it takes the information from the files and starts using it (it is socket application so it will not read the file again until it receives some information for the ip which is saved in the text file). so i want to restart the win32 application when closing mfc application so that win32 application can use the updated text files. actually i want to use TerminateProcess() and then start it with CreateProcess() function. but i read that TerminateProcess() can create problem with DLL structure.
-
[mfc] restart other processplease explain a bit. i can find good info about the killprocess.
-
[mfc] restart other processcreateprocess() can start a process but cannot restart a running process.
-
[mfc] restart other processhello, i created 2 c++ applications, one is win32 and other is mfc. i want to restart the win32 process using mfc application. please tell me how to do this ?? also i want to run only 1 instance of process of both the processes. please suggest ?? btw thanks.
-
[mfc] ip address controlit is working now. since i am using
fileh.ReadString((LPTSTR)fff , 100);
therefore i have to use the following code for the correct result ---
swscanf((LPCTSTR)fff,_T("%d.%d.%d.%d"),&m1,&m2,&m3,&m4);
thanks for the help.
-
[mfc] start/stop other processplease tell me how to use TerminateProcess() function. if there is an alternative for this function, please suggest.
-
[mfc] ip address controlthis method shows wrong ip in the ip address control.
-
[mfc] ip address controli dont get, please explain. i am using this code but it makes the mfc application crash.
len = strlen(fff); if(strlen(fff) > 0 && strcmp(fff, "\\n") != 0) { while(fff\[i\] != '.') { c\[j\] = fff\[i\]; j++; i++; } m1 = atoi(c); j = 0; i++; ZeroMemory(c, 3); while(fff\[i\] != '.') { c\[j\] = fff\[i\]; j++; i++; } m2 = atoi(c); j = 0; i++; ZeroMemory(c, 3); while(fff\[i\] != '.') { c\[j\] = fff\[i\]; j++; i++; } m3 = atoi(c); j = 0; i++; ZeroMemory(c, 3); while(len > i) { c\[j\] = fff\[i\]; j++; i++; } m4 = atoi(c); j = 0; i++; ZeroMemory(c, 3); ipAdd.SetAddress(m1, m2, m3, m4); }
-
[mfc] start/stop other processmfc application creates some text files which are used by other win32 c++ program. if i try to access the files through mfc application while win32 c++ program running, it causes the crash of the mfc application (beacuse i dont used any 'if' for file open and i cant). i used the createprocess() and it is working great.
-
[mfc] start/stop other processhello, i want to start and stop other process (win32 vc++ application without gui) in a mfc dialog application. please tell me how to do that ? for stopping, i read that TerminateProcess() can be used but it should be used in extreme circumstances. The state of global data maintained by dynamic-link libraries (DLLs) may be compromised if TerminateProcess is used. so is it safe to use it ??
-
[mfc] ip address controlhello, i want to set the value of the ip address control from a string, say ip[100] which is read from a text file. how this can be done ? the text file contains ip like --- 127.0.0.1 or 111.111.11.1
-
search a list controli have vs2008. i set the limit by using this code ---
portID.SetLimitText(5);
only numeric problem is left.
modified on Wednesday, July 22, 2009 2:29 AM
-
search a list controlhello, is it possible to make edit control to take only numeric values and limited digits only ??? i have an edit control which is used for the port number, so i want that the user can enter only numeric value and 5 digits. any suggestion ??
-
search a list controlin that case, 'i' will not be -1 and lstrcmp(ipList.GetItemText(i, 0), temp.psz) will be equal to zero because the item text and temp.psz will be same.
-
search a list controlgot another solution ---
temp.flags = LVFI_STRING;
and everything becomes right.
modified on Monday, July 20, 2009 5:46 AM