I am confused by your use of the switch, and the == operator.
Note 1: you are doing a switch on a fixed number (int choices = 3) (???)
Note 2: the == operator does a comparison. But you use it like an assignment. Are you missing an if?
Note 2b: String comparison / assignment should be done...
going back to standard C++, you can use the strtok() or strsep() routines. If you don't have the MSDN Library,
look at http://www.gnu.org/manual/glibc-2.0.6/html_chapter/libc_5.html#SEC65 for an example.
This work on standard null-terminated C-style strings (char *), so if you're using...
Once you have defined your Dialog, and have an instance of it's Class, call it's .Create() function to display it.
This will show the dialog modeless.
You can define member variables to hold the contents of the controls on the dialog. These member variables are updated
when the Ok button is...
OER Candy, AGF,
I am unclear with what you mean by Notification Message.
Are you talking about Windows Messages ? Unfortunatelly,
I have no control over the source code of the 'client'
application - I consider it as a black box, which calls
the Init routine twice (don't ask me why exactly)...
Hi,
I am working on a DLL which will display a modeless dialog
box. The executing program first calls an initialisation
routine in the DLL (which calls .Create()), and then starts
polling another routine, which should update a certain
control in the Dialog. The polling routine does this by...
Okay guys, that was the answer I was afraid of.
I tried to tackle my problem in VC++ originally, for which I also have an example of how to hook into the target application. I spent *way* too much time on the VC++ part, where I lack experience. A collegue suggested I'ld try VB instead, and I...
Hi all,
I have a problem in exporting routines from a DLL written
in VB6. What I need is a DLL which simply exports about
four pre-defined routines, which the target application
calls.
I have created an Active X DLL project, containing one
module (with sub main()) and one class (with...
I am trying to do a complex multi-line substitution while parsing a file. My data is in the form of "KEYWORD identifier (multiline\ndata) (more data);". I've got the proper matching statement and the processing of the data figured out (put it in a subroutine), but now I want to apply...
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.