|
Try this one.
"Opinions are neither right nor wrong. I cannot change your opinion of me. I can, however, change what influences your opinion." - David Crow
|
|
|
|
|
web is an instance of CWebBrowser2;
use following code to display a page
CString cs="http://company.com/some.html";
web.Navigate(cs, 0, 0, 0, 0);
how do I know if user is offline or the URL is unavailable?
I need to open a local page if URL above can't be displayed.
thx
includeh10
|
|
|
|
|
Hi,
I am using ReportEvent() to write an event to the event log. I see the event in the event viewer, but then I try to double click it (for properties), event viewer crashes.
I tried reducing the number of characters in the logged event and it works. Does anyone know what the max chars permitted by the event viewer are?
Thanks!
|
|
|
|
|
I am trying to debug my app in MS Visual C++ 6.0 and when I come to an unhandled expression I get a dialog that pops up that says: Please enter the path to STRLEN.ASM...all I need to know is which statement is causing the error. Any suggestions?
|
|
|
|
|
What line of code is blowing up when you get this ? Or aren't you stepping through your code ?
Christian
I have several lifelong friends that are New Yorkers but I have always gravitated toward the weirdo's. - Richard Stringer
|
|
|
|
|
That's the problem...the dialog pops up and then when I hit cancel it takes me to the funny looking assembly code (or whatever it may be)
|
|
|
|
|
So, you should set a breakpoint and step through the offending code. Or check the stack trace to see where the call has come from.
Christian
I have several lifelong friends that are New Yorkers but I have always gravitated toward the weirdo's. - Richard Stringer
|
|
|
|
|
I'm running embedded visual C++, and creating a little program for pocket pc 2002-3. I have created a menu resource which I want to link to the main dialog that I use. Now for somereason everything compiles correctly, but when I run the program, no menu. hmmmm Anyone out there able to help.
Thanks
JOchum
|
|
|
|
|
Rebuild all the resources and if it does not work still check the association of the MENU ID with the function that creates it .
Dharani Babu S
|
|
|
|
|
Hi
I have same problem. Menu is loaded fine but is not attaching to Dialog.
Did you find a solution for this. I am new to PPC stuff.
Please tell me your solution.
Thanks in Advance.
-----------------------------
In my dream, I was dorwning my §orrow§
But my §orrow§, they learned to §wim
|
|
|
|
|
i'm making a setup for a c/s program which access oracle database ,use installshield ,can it do without setup oracle at client?Thanks a lot !
|
|
|
|
|
Your client will need a driver to connect to the Oracle database, but you don't need to install the DB locally, if you're not connecting to it locally.
Oracle sucks, BTW.
Christian
I have several lifelong friends that are New Yorkers but I have always gravitated toward the weirdo's. - Richard Stringer
|
|
|
|
|
How to realize it ?can you tell me more ?Can I use installshield do it ?thanks a lot !!!
|
|
|
|
|
Your client needs to run the Oracle driver on their machine. I'm sure you can tell installshield to run an external task, but I don't know how.
Christian
I have several lifelong friends that are New Yorkers but I have always gravitated toward the weirdo's. - Richard Stringer
|
|
|
|
|
Hello.
In my software ,i want to get the message from
the "messager"dialog which is displayed by the
"net send..."command line.But i can't got the way to catch "messager"
Do you know about it??
Tell me more ,thanks~!
|
|
|
|
|
Windows' Messenger service uses port 139 by default. If you monitor that port, you should get the results you desire.
"Opinions are neither right nor wrong. I cannot change your opinion of me. I can, however, change what influences your opinion." - David Crow
|
|
|
|
|
Thanks a lot~~~!!!!
139~~let me see...
I just wanna be free, free like the wind
|
|
|
|
|
like it winamp, winmediaplayer or realoneplayer.
thanks
Nho'c Ti`
|
|
|
|
|
Hi
Is there a way for me to open an instance of notepad programmatically using VC++ 6? I've tried system("Notepad <filename>") but it also open a DOS prompt along with Notepad, which is not what I want. Is there any other way to do this? BTW, I also want my app to still be responsive to user input while the notepad is open.
Thanks!
|
|
|
|
|
|
Hello,
When I add a Rich Edit 2.0 box to my FormView, my app crashes upon executing. Basically, if fails the pWnd->Create() function. When I delete the Rich Edit 2.0 from the FormView, everything works again. I saw in documentation that there needs to be a call to AfxInitRichEdit() prior to this. I call it in my applications InitInstance() function and again later, but to no avail. Does anyone have any ideas?
thanks,
JennyP
|
|
|
|
|
Hi, I'm Javier. I'm developing a pocketPC 2003 application. I need to use Bitmap buttons in a dialog window. It's works, but the problem is the button is "down" and "up" quickly when I push and hold, and the event happens. I need that button doesn't released(remain down) until I release the stylus and then must happen the "button click event" and "bitmap button" up.
How can I do this? Must I create a derivate Cbitmapbutton class and manage messages?
Have Anyone any class about this?
I dont know very much about managing messages (I'm novice in this). I have seen the button articles in this web and I have found only one for PocketPC and it uses icons.
Thank you.
|
|
|
|
|
I imagine it is fairly easy, but how can I have my program create a folder ( plain and simple). I want to create a folder that my program can put text documents in.
David
|
|
|
|
|
CreateDirectory
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/createdirectory.asp
wWw.KruncherInc.cOm
|
|
|
|
|
I am trying to capture the event that happens on holding the stylus at a point on the screen i tried doing what i want to do in the handler of NM_RECOGNIZEGESTURE but that doesnt work. Any sugesstions.
|
|
|
|