We are presently looking to pass some of our applications to Lotus Notes and we are looking at some of the best development products for the system... Please feel free to give any information on the subject.
When I use this command in DOS...
javac -g -sourcepath Sources/*.java -classpath Class -d Class -deprecation -verbose
One of the file in my directory is not load... and don't compile, making the other sources crash.
here's how my files are set...
->app
-> Class
-> Sources
Seems strange...
I create a modeless dialog box this way...
g_DlgRequest = new DlgItemFound;
g_DlgRequest->Create(DlgItemFound::IDD);
g_DlgRequest->ShowWindow(SW_SHOW);
... and then a big process is launched...
for(...){
//...
}
The window appear but don't display its controls because of the big process...
I've finally found what I was looking for...
RunModalLoop() makes an already open window modal...
EndModalLoop(0) makes this same window not modal...
maybe it'll help someone
here's a function I have done...
// you call the function like this
ifstream in;
if (seekFile(in, "MYWORD")){
... in is positionned at the caracter folowing "MYWORD"
}
else{
... wasn't found
}
// function definition
bool seekFile(ifstream& in, const char* seekString){...
// how about reading the whole file in a buffer...
char file|10000|;
char temp;
int i=0;
while(file>>temp){
file|i++| = temp;
}
file|i| = '\0';
// and then use the strstr function to retrieve the position of your text...
char* ptr = strstr(file, "WHATYOUARESEEKING");
// ptr...
2. ShellExecute(0, "open", pszMyHTMLFile, 0,
0,SW_SHOWNORMAL);
seems only to work if the internet explorer is already open... Is this normal or it's(maybe) beacause I'm using NT 4.0
I'll try to explain my problem a little better... It's not exactly what I'm doing but it'll be easier to explain what I'm looking for.
what I need to do...
void Process(...){
myDlg dlg;
// open the dlg as a modeless dialog box
// I used DoModal here, but I really mean... stopping
//...
no... It's more complicated than that... well, if there is a way to play with the modal state of the window by never closing it, that would do.
This window will be called hundreds of time and I don't want it to close and reopened each time...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.