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

Search:

Type: Posts; User: aixing

Page 1 of 4 1 2 3 4

Search: Search took 0.10 seconds.

  1. Any idea about test automation for Installation

    The project is developed on UNIX platform. All the installation process can be done on command line (Character or text). In the process we maybe need to access other UNIX machines via network.
    ...
  2. Replies
    4
    Views
    1,718

    I think you'd better write a ISAPI dll in your...

    I think you'd better write a ISAPI dll in your IIS server side
  3. Thread: C++ GetSel

    by aixing
    Replies
    1
    Views
    3,057

    Re: C++ GetSel

    void CEditDlg::OnEnSetfocusEdit1()
    { CEdit* pmyEdit = (CEdit*)GetDlgItem(IDC_EDIT1);

    int *nStartChar, *nEndChar;

    nStartChar = 1024;
    pmyEdit->GetSel(nStartChar,...
  4. I think WinCVS has the function you describled....

    I think WinCVS has the function you describled. Do you have the source code?
  5. Replies
    3
    Views
    852

    I have some time to participite in some projects....

    I have some time to participite in some projects. I have good experience as software developer with C++ , GUI, MFC. You can write me to Andersonai2002@hotmail.com.

    aixing
  6. Replies
    3
    Views
    1,012

    Exit VC++ and your project, remove the *.CLW,...

    Exit VC++ and your project, remove the *.CLW, *.opt.*.ncb, try oepn your project again. Click ClassView Tab, add all *.h and *.cpp into the prompting dialog listbox.
  7. Replies
    2
    Views
    1,014

    I think maybe it is because you use...

    I think maybe it is because you use 'OpenClipboard() in a callbackProc, try to pass a HWND para into the callbackproc.
  8. Replies
    2
    Views
    796

    I think you should add the following code to...

    I think you should add the following code to your DLL's OnInitInstance().....
    AFX_MANAGE_STATE(AfxGetStaticModuleState( ));
  9. Replies
    8
    Views
    1,005

    I want to retrieve some system information (such...

    I want to retrieve some system information (such as hard disk data) to protect my application in the customer's machine.
    But if he re-formatted hard disk, the data I got before will be unuseful....
  10. Replies
    8
    Views
    1,005

    Which data could be valid information after the...

    Which data could be valid information after the disk is reformatted (The size of each volume is the same as before)?
    Any API or source code is very helpful.
  11. Replies
    8
    Views
    1,005

    Is the disk volume info different?

    I use GetVolumeInformation() to get disk volume informayion, If i format my disk and re-install system, does GetVolumeInformation() return different info from previous ones?
  12. Replies
    3
    Views
    922

    Also you can override: afx_msg void...

    Also you can override:
    afx_msg void OnContextMenu( CWnd* pWnd, CPoint pos );
  13. Replies
    4
    Views
    1,007

    SHFILEINFO sfi; 1. //To Get system Icon...

    SHFILEINFO sfi;

    1. //To Get system Icon
    HIMAGELIST himlSmall = (HIMAGELIST)::SHGetFileInfo( _T("C:\\"), 0, &sfi,
    sizeof(SHFILEINFO), SHGFI_SYSICONINDEX | SHGFI_SMALLICON );

    ...
  14. OnEraseBkgnd()...

    OnEraseBkgnd()...
  15. I just developed an aplication with VC++ 6.0 in...

    I just developed an aplication with VC++ 6.0 in Win2000, it runs well in Win9.x and Win2000. But today, one of my customer told me that the application can not work in WINXP.
    If I want to port my...
  16. What is the VC++ developing environment in WinXP

    Is VC++ 6.0 compatible with WinXP?
    Or VisualStudio.NET (VC++ 7.0) is the only developing tool ?
  17. Replies
    5
    Views
    865

    The difference between Win2000 & WinXP?

    I just developed an Application under Win2000+ VC 6.0, it runs well in Win95, Win98, and Win2000.
    But today one of my customer told me that he installed WinXP in his computer, and my application...
  18. Thread: Tray position !

    by aixing
    Replies
    4
    Views
    779

    http://www.codeproject.com/shell/trayposition.asp...

    http://www.codeproject.com/shell/trayposition.asp

    Good luck.
  19. Re: Data from Harddisk to CD ..... It is very Urgent

    You can try from :
    http://www.codetools.com/useritems/udfcdr.asp
    Good luck. :-)....
  20. We can use CreateFile("\\\\.\\C:"........), then...

    We can use CreateFile("\\\\.\\C:"........), then use ::DeviceIoControl(. IOCTL_DISK_GET_PARTITION_INFO.....) to get some hard Disk's partition information. But i am not sure that maybe different...
  21. Thanks for your suggestion. I think MAC...

    Thanks for your suggestion.
    I think MAC address is not suitable for my case, because some of my clients can not have access to the internet.
    The machine base SID is a another good choice, but...
  22. Replies
    2
    Views
    8,660

    Nice answer

    This is just I want, thanks a lot.
  23. Is it safe to protect my software with ::GetVolumeInformation()

    We all know that ::GetVolumeInformation(...) can get volumeSerialNumber of some drive. If I use the function to retrieve my client's hard disk information, then store the information in my...
  24. Replies
    1
    Views
    2,139

    How to send LVN_KEYDOWN to a CListCtrl Item

    I want to to send a LVN_KEYDOWN message to a CListCtrl item, but how to construct the message? This is a message diffreent from WM_LBUTTONDOWN for CView(It is easy).
    Who can help me? thanks in...
  25. Replies
    6
    Views
    847

    Have you tried _findnext()... It is a c...

    Have you tried _findnext()...
    It is a c function, maybe it will be faster.
Results 1 to 25 of 86
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured