|
I think your call to ShellExecute has a problem. The third parameter should be the name of the .exe, and the fourth should be the command line parameter; in this case, the URL. What happens if you try this? (It works for me) -
ShellExecute(NULL, _T("open"), _T("iexplore.exe"), _T("http://www.google.com"), NULL, SW_SHOWNORMAL);
L u n a t i c F r i n g e
|
|
|
|
|
That is not what I would expect. Your code is enforcing Internet Explorer as the browser to open a particular URL; putting the URL (or any filename with a file extension association) as the third parameter should call the associated EXE to open that URL/file, similar to a double-click inside Windows Explorer. I suggest you try with a .doc file.
|
|
|
|
|
Luc Pattyn wrote: Your code is enforcing Internet Explorer as the browser
Hadn't thought of that... MS slave that I am. I was thinking IE, not generic browser.
L u n a t i c F r i n g e
|
|
|
|
|
Is there an existing C++ class/function which can translates IP info (such as 123.234.567.333) to country string (or country and state string)?
|
|
|
|
|
Try searching for geolocation database, one example is ip-countryside[^]. Some IP ranges are clearly assigned to a location, for others there is manual labour involved to map them, that's why you would need a database. Adding new functionality to your network application, includeh10?
Cheers
/M
|
|
|
|
|
Hi, guys,
I am using ncurses library on *nix.
I have a while loop that always keep running until a user hits a button that would exit the loop, also it accepts other buttons and in respect to their code, certain actions take place. i have several issues i'd like to fix. first of all, how can i solve this:
[code]
while(cond1)
{
halfdelay(2);
chr = getch();
switch(chr)
{
//code
}
foo(chr);
}
[/code]
if key x was pressed, something would happen, then it would do a certain action, if nothing was pressed, it would continue doing that action in respect to they previous char (in this case, char x). if key(char) x was hit again, it should ignore it (without significant pause) and continue doing foo() in respect to key x.
my problem is that pause.
problem 2: since i have that pause, if a user woudl decide to do a silly action and hold key x for long time (not a single quick key hit, but hoding it), obviously the action would be paused for that moment. how can i eliminate that problem?
any hints, please?
thanks
modified 1-Aug-19 21:02pm.
|
|
|
|
|
I want to begin to learn how to do visual gui programs in VC++. I am good with c/c++. To get myself starting I would like to write an app that simply receives messsages over a tcp connection and displays them to a scrolling window. The window should automatically scroll down as new messages are added. But the user should have the ability to scroll back as well.
Any suggestions on how to approach this? Also, as a follow on project I'll want to display data in row/column format and be able to update cells as changes are received over a tcp connection.
Thanks
|
|
|
|
|
Do you know how to do the "receive tcp message" stuff (code and implementation) ?
if you know how to do that, then the rest is quite simple.
Create a worker thread that will receive the data; when the data is received, send a message to the main UI thread (
Create a simple UI thread (main UI, do not create and manage UI in the worker thread)that contains either a CListBox or a CListCtrl. implement handlers for the messages sent by the worker thread.
good luck.
M.
Watched code never compiles.
|
|
|
|
|
Thanks. Anything I need to be careful to select or not to select when I create the project in VC? When you say implement handlers, do you mean each message gets it own handle and is processed from that perspective?
|
|
|
|
|
I would suggest you forget about the TCP stuff until you have mastered the text viewer and scrolling. Whether you use simple Win32 or MFC this can be quite a challenge and TCP would only complicate matters. Start with a view window and add the scroll features then add a mechanism to send some lines of text, say up to 100 and see that your scrolling is working. Then when you have all those features under control you can start to add the more complex pieces of the TCP feed.
It's time for a new signature.
|
|
|
|
|
Alan Kurlansky wrote: To get myself starting I would like to write an app that simply receives messsages over a tcp connection and displays them to a scrolling window.
Hi Alan! I suggest an alternative approach without multi threading to get up and running quickly:
1) create a new MFC project and add a CListBox control: Using the CListBox control[^], this comes with a working example dialog project.
2) Add a TCP client socket such as CAsyncSocket to your dialog: Socket Programming with MFC (Part 1)[^], this will also explain which initialisation is needed in your application.
3) Add a button to your dialog so you can connect/disconnect to a server.
The client will tell you in its OnReceive()[^] handler when more data is available, you can add this to the listbox with AddString()[^] and scroll listbox with SendMessage(WM_VSCROLL, SB_BOTTOM, NULL) . There are many ways to communicate between socket and GUI, for starters you could give the socket object a pointer to your dialog. For example with a method OnReceiveText() that you call from your socket whenever a full text line is available:
void CMyDlg::OnReceiveText(const char* szText)
{
m_listbox.AddString(szText);
m_output.SendMessage(WM_VSCROLL, SB_BOTTOM, NULL);
while(m_output.GetCount() > 10000) m_output.DeleteString(0);
}
Hope this helps
/Moak
|
|
|
|
|
|
ozmrdn wrote: Its my home work
Then it's for you to do the work. Don't expect other people to do it for you.
It's time for a new signature.
|
|
|
|
|
i dont expect anyone to do for me..this is a kind of popular game in programming.i thought someone at least tried this..i can do it but i dont have enough time i have a lot of exams..
oztahir
|
|
|
|
|
ozmrdn wrote: .i can do it but i dont have enough time i have a lot of exams.
And you think people here have lots of time to waste doing your homework for you!
It's time for a new signature.
|
|
|
|
|
man i think you have diffuculty to understand what im saying. i said if any one has that not to do my homework..well if u dont wanna help let the people to help and you are not suppose to answer...
oztahir
|
|
|
|
|
I think you have difficulty understanding the purpose of these forums. They are here to help with technical questions, not so someone can provide you with a working solution to order. Reread the guidelines on how to ask a question.
It's time for a new signature.
|
|
|
|
|
|
And also the same as you, they didn't get a positive response.
|
|
|
|
|
Ever get the feeling you were talking to a wall?
L u n a t i c F r i n g e
|
|
|
|
|
I wonder when Chris is going to figure out that since he messed with the Soapbox, everyone has to come to the technical forums to play Whack An Idiot.
You measure democracy by the freedom it gives its dissidents, not the freedom it gives its assimilated conformists.
|
|
|
|
|
We wouldn't need to if the idiots stayed in their boxes.
It's time for a new signature.
|
|
|
|
|
L u n a t i c F r i n g e
|
|
|
|
|
How to programmingly export and import IE's favorates?It's better ,if you give out C++ code.
I am not a genius, but shed more sweat!
|
|
|
|
|
Aric Green wrote: It's better ,if you give out C++ code.
Really? Guess you'd better sweat some more.
You measure democracy by the freedom it gives its dissidents, not the freedom it gives its assimilated conformists.
|
|
|
|