Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: cpfc
  • Content: Threads
  • Order by date
  1. cpfc

    Detecting url-protocols

    Hi, I've made my own protocol named &quot;test1:&quot; I've made it so that if you type &quot;test1:&quot; in Internet explorer's address bar notepad opens. On my web page I have the following code: <script language=&quot;javascript&quot;> <!-- function OpenNotepad() {...
  2. cpfc

    SendMessage

    Hi, I want to be able to send a pointer pointing to the following struct: struct MyStruct { int Number1; int Number2; }; to another applications window. I've tried the following: MyStruct * info=new MyStruct; info->Number1=100; info->Number2=200...
  3. cpfc

    CSocket::Send

    Hi. I have a client socket connected to server socket. If server keeps using the CSocket::Send function to send client data, for example using the following code: while (true) { Client->Send(&quot;a&quot;); } After a while (not straight away), if the client socket isn't calling...
  4. cpfc

    CHtmlView Mem Leak

    Hi... I added a CHtmlView control to my project without using AppWizard. When my application closes CHtmlView crashes. I stopped this problem by overriding CHtmlView::PostNcDestroy and leaving the function blank. But now when my application closes it no longer crashes, but instead reports...
  5. cpfc

    EnableMenuItem

    Hi... I call EnableMenuItem to disable or enable a popup menu item... Here is my code: Menu.EnableMenuItem(1,MF_BYPOSITION | MF_BYCOMMAND | MF_ENABLED); Only after calling this function the menu don't redraw itself, so the item still looks disabled... If you hover the mouse over the menu item...
  6. cpfc

    RichEdit scrolling problem

    Hi... When you scroll down to the very bottom of a rich edit control, then keep pressing the small down arrow on the scroll bar, it keeps scrolling until the bottom line of text is at the top of control... I managed to stop this problem... However... When resizing the rich edit control, the...
  7. cpfc

    Outlook Express

    Hello... Is it possible to open Outlook Express 6, log onto my identity and send a simple email in vc++6 code? (Preferably with Outlook Express hidden at all times) Any help would be extremely appreciated and thanks in advance...
  8. cpfc

    CSocket::Send freezes application

    Hello... When I call CSocket::Send the first time the application don't freeze, but when I call Send again the application freezes until the socket I'm sending the new buffer to receives the first buffer... Is there anyway to detect if the other computer as yet received the intended buffer or...

Part and Inventory Search

Back
Top