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 Chriss Miller 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: bubak
  • Content: Threads
  • Order by date
  1. bubak

    managed extensions + mfc + win forms

    Hello Please is there some way to use any of windows forms from .net framework in mfc application? Using managed extensions, I can create a c++ project with .net forms/ compile it as console application, which starts a window with specified forms, but is there some way to implement .net controls...
  2. bubak

    Default FAX number

    Is there please some way, how to set the default fax number? So when I drag a document on fax icon, I 'll not get a dialog with question about destination fax number, but the document will be automatically printed/sent to the default fax destination. Is there some way how to do this? Thankx bubak
  3. bubak

    RPC over IP

    Hello Please give me some hints, how can I make my client-server prog. that uses windows RPC to work on PCs in different IP networks, interconnected via router. Is there some easy way, if PCs will have public IP addresess? Or is there only some way via some rpc proxy or web services or so. Pleas...
  4. bubak

    IO to COM port

    Hello I have this problem: When I CReateFile("COM1",GENERIC_READ | GENERIC_WRITE,0,0,OPEN_EXISTING,0, 0); I can WriteFile to that handle and it works fine. But when I do ReadFile(comhandle,buffer,1,&count,NULL), it functions just when sth is waiting there. When not, it waits for some...
  5. bubak

    Deleting a table column (ADO, Catalog)

    Hi please if anybody know, this code is not functionable and I don't know why. I want to delete a column from a table and add a new one: _CatalogPtr m_pCatalog=NULL; _ColumnPtr m_pColumn=NULL; _TablePtr m_pTable=NULL; (_COnnectionPtr m_pDstConCfg is initilaized OK, because data...
  6. bubak

    WSA and no wsa

    whats the difference, when I use WSA functions (WSAConnect, WSARecv,...) and nowsa (connect,recv,...) ??? thanks pete p.s. is there some reason 4 using no wsa functions?
  7. bubak

    Visual C++ ver6 ---> ver7

    Hello , I;ve tried a little bit VS7, it's environment is pretty good, when I compare it to the 6th version, but one problem occured. When I've used in the ol one my own messages (e,g, #define MYMSG1 WM_APP+1), catched with ON_MESSGAE(MYMSG1,OnMyMsg) OnMyMsg was afx_msg void...
  8. bubak

    network communication a cutting cable

    how can I find out, that network cable has been cutted, when I'm not using sth. like ack msgs? e.g if I just send msgs from one csocket to another and don't wait to receive anything from the end point. one way is to create a reaply for each message, but is there also some other one? thx bubak
  9. bubak

    Csocket response problems - specialist needed

    If I create a Listening socket and afterr other client Socket connected, I do accept(socket2) I have connection socket2------clientSocket When I send messages from clientSocket 2 seocket2, and nothing more and i send less than each 200 ms, it crashes, but, when I after each Received Cstring on...
  10. bubak

    CSocket communication example

    Hi there. I've made a simple client - server communication using tcp sockets, but there are two problems. If anybody knows a little bit about this area of programmin, pleasse look onto it. It's described in a txt file it is here: http://freebsd.fri.utc.sk/tcpip.zip and also here...
  11. bubak

    sockets and problems with communication

    Hello. I have a simple socket communicatin (CSocket based). One socket listenews, other one connects to it. If I send messages from client to server(listener),every time on OnTimer, i send 10 chars CString.when I'm using just arhive << CString, it works fine(sending every 10ms). when I create a...
  12. bubak

    win 2k and win xp

    I'm running a win98 and w2k box and I have a following question: I'd like to try a little coding under xp, but I'm afraid of destroying my current configuration.is there some easy way to install xp on some aditional partition and also uninstall it sometimes? is it running on well with w2k...
  13. bubak

    usage of Csocket

    HI, what's the difference, between sending data(via CArchive connected with the socket) with the << operator and with the CArchive::Write(WriteString,...)??? Is there also some other way of doing that? Thx Bubak
  14. bubak

    reinstall of windows

    Hello. I have win98 on the first partition a and on the next one I have w2k , that I've installed as the second os. now I want to reinstall the win98, but I'm afraid, taht win98 install will replace the mbr and I'll be never more able to boot w2k. Hove can I do that? Bubak
  15. bubak

    tcpip comunicatio

    hello. I need to erplace serial comunication (over com port) in my prog. with tcp-ip.with vc6. Where should I start/ what should I use. CSocket? is there som exmple around? I'm gonna google, but if anybody has som link... byez... bubak
  16. bubak

    windns.h

    where can I pls fin it (windns.h). I 've read bout it in msdn platform sdk, but cannot find it in my VC includes dir. Did I forget to install sth.? Thx Byuez Bubak
  17. bubak

    loosing focus, alt+tab, alerts

    HI I have this problem: in my object i do clipCursor after LButtonDown. on LbuttonUp I clip the cursor back to whole screen. A problem comes when I do alt+tab between ButtonDown and ButtonUp, because cursor is still clipped. Also when some message/alert windows apperars between ButtDown and...
  18. bubak

    active x component

    HI, i'm debuging code, that I haven't written. And when I find a code like: CLSID const& GetClsid() { static CLSID const clsid = { 0x7028347f, 0x3950, 0x11d3, { 0xa2, 0x76, 0x0, 0xa0, 0xc9, 0x1d, 0x5e, 0xfb } }; return clsid; } and after that createing of component with that ID, where...
  19. bubak

    slow imap based webmails

    HI has anybody same problem? I 've tried three imap based webmail, and they all worked too slow (logging in - 30s), and that was P II server with a little processes and 100MB intranet. Where can be the problem? THX bubak
  20. bubak

    not wnought move messages

    Hi I have this function, that calculates the number of WM_MOUSEMOVE messages , after WM_LBUTTONDOWN until WM_LBUTTONUP: void CGfx1::run(void) { BOOL bBreak=FALSE; GetParent()->SetCapture(); int i=0,i1=0; for(;;) { i1++; MSG aMsg; PeekMessage(&aMsg, NULL, 0, 0,PM_REMOVE); switch...

Part and Inventory Search

Back
Top