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

Search:

Type: Posts; User: lugangxyz

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. does vs.net 2005 really support asp .net mobile application?

    i cann't find entry to creat asp.net mobile application directly,
  2. What would happen if call the same function at same time from two different place?

    I have a function that both the work thread and the UI thread will
    call it , i think there exist such a possibility that they will call it at the same time(of course,not real "the same time"),is...
  3. Replies
    6
    Views
    941

    sorry,i have not done that before

    sorry,i have not done that before
  4. Replies
    6
    Views
    941

    try the mixerOpen() or mixerGetNumDevs(),goog luck

    try the mixerOpen() or mixerGetNumDevs(),goog luck
  5. Replies
    1
    Views
    441

    _mbsnbcnt() problems

    hi,everyone

    I want to use the _mbsnbcnt() to get the bytes number of a string

    my code is as follows:

    define CHAR_PER_LINE 30
    char *pBuf=new char[100];
    memset(pBuf,32,100);
  6. Replies
    5
    Views
    823

    Are y define tempName as char * or something make...

    Are y define tempName as char * or something make it as a string?
    i am afriad that y are not very clear about the diffierence between
    the " " and ' ',here " " is a string ,but the ' ' is empty just...
  7. I think this tool will help you...

    I think this tool will help you
    http://www.codetools.com/tools/prjconverter.asp
    but you must know that there are many functions supported in the vs.net 2003 not supported in the vc6,gook luck
  8. Replies
    2
    Views
    871

    Generally ,the serial communication is not very...

    Generally ,the serial communication is not very difficult,you can use the mscomm control to help you complete this job,and you can alse use the WriteFile() directly,search "Serial Communications in...
  9. The picture control in a dialog don't display picture

    I put a picture control on my dialog,and set a bitmap,it show the bitmap in the rource editor,but when i run the program,the bitmap
    is not displayed at all,why?
  10. Replies
    5
    Views
    942

    Thank you all, My program run on pentinum4 2.4 ...

    Thank you all,
    My program run on pentinum4 2.4

    to NigelQ:
    where can i find the "Q102025",sorry , i'm new here
  11. Replies
    5
    Views
    942

    Serial Communications problems

    i use the following code to send a word to com1,
    WORD wCommand=0x0D0A;
    WriteFile(hComm,&wCommand,sizeof(WORD), &dwWritten, &osWrite);

    at the com2,i receive the data,but the order changes to...
  12. Replies
    0
    Views
    487

    Serial Communications problems

    hComm = CreateFile( "com2",
    GENERIC_READ ,
    0,
    0,
    OPEN_EXISTING,
    FILE_FLAG_OVERLAPPED,
    0);
    if (hComm == INVALID_HANDLE_VALUE)
    {
    MessageBox("fail");
  13. How to change the settings to add Activex controls to my programe?

    At the first time when i creat my programe i choose no Activex control support in the appwizard,but now ,i have to use some Activex controls,what should i do?
  14. VictorN thank you ,I've soved this problem,it's...

    VictorN
    thank you ,I've soved this problem,it's seems that the CFileDialog
    change the current path
  15. the CFileDialog in a dialog's OnCommand() cause the program crash

    I want to use a CFileDialog in my dialog's OnCommand() function
    like this:

    int nCommandId = wParam & 0x0000FFFF;
    switch(nCommandId)
    {
    case ID_BUTTON:
    {
    CFileDialog...
  16. Replies
    4
    Views
    722

    Thank all of you Ness:I think your way will...

    Thank all of you
    Ness:I think your way will work,and now i am using tha lame to encode the wave to mp3,but i want to try the directshow,thank you very much
  17. Replies
    4
    Views
    722

    how to play the mp3 data in the buffer?

    My program need to receive the mp3 data in the buffer and play it immeditely,how should i do?
    I don't want to write the buffer to a file and then play it because it may have a long time
  18. i'll try it ,thank all of you

    i'll try it ,thank all of you
  19. Thank you ,but my program is dialog based,how...

    Thank you ,but my program is dialog based,how should i do?
  20. I want to antomaticly start my program when the user double clicked the file

    The file is specific to my program,how should i do ?
  21. How to limit the number of the character in each line in a richeditctrl

    I use a richedit in my dialog,when i use streamin() put some text in it ,some lines is very long that the user must use the hscroll bar to view it,is there any method to limit each line's text...
  22. Replies
    3
    Views
    1,457

    33 means another program has locked a part of...

    33 means another program has locked a part of the file(may be something else),you process cant access it
    the visual studio has a small tool to search the error messages by it's code ,y may find it...
  23. Andreas Masur,thank you

    Andreas Masur,thank you
  24. thank all of you

    thank all of you
  25. how to determine there is only instance of the program is currently run on the system

    I need to make sure there is only one instance of my program is currently run on the system,what should i do?
Results 1 to 25 of 44
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured