CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: lad

Search: Search took 0.04 seconds.

  1. Re: How to get IP address,username, file..etc of connected client....

    may be a suggestion for u:
    Using sniffer and analyze information in packets stream.
    some open sources, using winpcap to capture packets:
    - ethereal
    - Winsniff sample:...
  2. Replies
    7
    Views
    2,091

    Re: packet capture in windows

    there's other solution, not using LSP:
    http://www.codeproject.com/internet/WinSniff.asp
  3. Thread: Winsock LSP

    by lad
    Replies
    3
    Views
    2,480

    Re: Winsock LSP

    I have a problem: Get ProcessID of a PORT on Win98. (on win2k, xp, I've got solution by using NTDDK, but on win98 :confused: )

    do LSP does this work well?
    or have other method?

    I've research...
  4. You need include this file: #include "stdafx.h"...

    You need include this file: #include "stdafx.h" in m.cpp
    In the same cases, u need do that, it' Ok
  5. Because I have a loop (while) and I want display...

    Because I have a loop (while) and I want display data immediatly in each loop, then using UpdateData() can't do this work.

    I used your method:
    dlg->SetDlgItemInt(IDC_COUNT, count)
    and...
  6. How to display a number in edit box with GetDlgItem?

    I have a dialog: dlg,
    IDC_CONTENT: a edit box control of dlg
    CString m_strContent : variable of IDC_CONTENT control

    i can show text with this fuction: (instead i use UpdateData(0) )...
  7. Replies
    1
    Views
    688

    Help me : change value parameter in DLL

    I write MFC-DLL, it have a export fuction :
    ----------
    void Test(int n)
    {
    n=100;
    }
    ----------


    I user this DLL in VB:
  8. Replies
    2
    Views
    1,107

    But when I add this line into top of function : ...

    But when I add this line into top of function :

    AFX_MANAGE_STATE(AfxGetStaticModuleState());

    Then Compiler error :

    mfcs42d.lib(dllmodul.obj) : error LNK2005: _DllMain@12 already defined in...
  9. Replies
    2
    Views
    1,107

    Help me please : write MFC-DLL

    - I built a MFC-DLL with VC++6.0

    I add very simple function : Hello :

    void Hello()
    {

    CFileDialog dlg(0);
    dlg.Domodal();
    }
  10. Replies
    0
    Views
    605

    Help me please : Get Bios Information

    How to get Bios Information in VC6
    sample : Firm, Data, Seri...

    Thank very much!
  11. Replies
    2
    Views
    1,136

    How to get Hardware information?

    (In visual C++6)
    I want get some information: disk driver(Quantum, Seagate...), and Serial of BIOS...
    can you help me!

    Thank very much!
  12. Help me please! (transfer files over COM PORT)

    I want a program transfer file over COM PORT, simple is good, write on VB or VC++
    Have you got it?
    Thank you very much.
  13. Help me please! (transfer files over COM PORT)

    I want a program transfer file over COM PORT, simple is good, write on VB or VC++
    Have you got it?
    Thank you very much.
  14. How to create a DLL that is used by VB,ASP...?

    DLL must useable in VB, ASP...
    I have a class : ClassBit , can I put it in DLL that is used by Visual Basic or other languages ?

    Thank.
  15. Thread: Who made RSA?

    by lad
    Replies
    11
    Views
    1,707

    Re: Who made RSA?

    Thank you very much
  16. Thread: Who made RSA?

    by lad
    Replies
    11
    Views
    1,707

    Who made RSA?

    I'm building RSA, but not use MSDN lib.
    Where can I load agorithm of RSA?
    Ex : big integer, test prime...
    Thank very much.
  17. Replies
    0
    Views
    502

    How to read a sector on HARDDISK with VC++?

    I want to read/write sector on HDD with VC++/WIN2K,WIN98
    Very important!
    Thank very much.
  18. Replies
    0
    Views
    665

    How to read a sector on HARDDISK with VC++?

    I want to read/write sector on HDD with VC++/WIN2K,WIN98
    Very important!
    Thank very much.
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured