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

Search:

Type: Posts; User: LOOSER_007

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Windows service on Windows 7 64 bit machine ???

    I have created a sample windows service which runs fine on windows 7 32 bit machine, but the same dosen't work on a 64 bit system. I am getting error code 1053 "The service did not respont to the...
  2. Adding Manifest in VS2010 MFC for UI controls display ???

    I have migrated my MFC application from Visual Studio 6 to VS2010. But the UI controls still looks the same as of old theme. How can i add the manifest file now to get the UI controls to be displayed...
  3. Replies
    3
    Views
    2,415

    Re: Socket function "Select" crashes...????

    Thanks Paul ! By faulty coding you mean to say that there may be the chances of invalid socket handle, invalid FD_Set struct right ??? I cannot share my code but thanks for your reply i'll check once...
  4. Replies
    3
    Views
    2,415

    Socket function "Select" crashes...????

    Hi,

    In one of my application the socket function call "Select" crashes. It doesn't happen everytime. If anyone knows the reason for the "Select" function to crash.
    I checked for the proper values...
  5. [RESOLVED] SetPrinterData() with REG_MULTI_SZ ???

    I am writing an application to create a registry value under printer driver data. Basically i want to know how to create the entry using set printer data as i not able to do so. As far as i know we...
  6. Replies
    3
    Views
    3,407

    Re: Copy file on specific OS using INF file.

    using an INF
  7. Replies
    3
    Views
    3,407

    Copy file on specific OS using INF file.

    I want to copy a file to a specific OS and exclude the copy if the OS ver is Win 7. i.e. a file should be copied only if the OS is Vista or below.

    How to add a section in an inf to achieve this ?...
  8. Re: Password edit control box shows junk characters on UI...???

    Did anybody even faced such problem...???
  9. Password edit control box shows junk characters on UI...???

    Hi all,

    After adding up a manifest file in my application, a password edit box shows junk chars (||||) while entering the password... Why..???

    how to resolve this problem...????

    Thanks,
  10. Replies
    2
    Views
    720

    Re: Need some help with c++

    Did you even tried anything for this..... All the info is well described in your QA file.... Try to code it first... and then ask the queries for the problems you face.... :D
  11. Replies
    6
    Views
    1,067

    Re: run on startup problem

    Just have a look at this thread....

    http://www.codeguru.com/forum/showthread.php?t=469565
  12. Re: Windows defender is blocking application to run from startup in Vista

    How to create an exception for the application in the Defender.

    Any sample code.... any links... Plz Help...

    Thanks,
  13. Replies
    5
    Views
    2,592

    Re: how to start an exe after reboot

    Did you tried with the UAC turned off in windows vista..???
  14. Re: Disable the entire UI.. Prevent user to enter the inputs ???

    Thanks to all of you guys.... those suggestions were really helpful...

    BTW actually what i am doing in my app is when the user click the "go" button... im creating a thread to establish the...
  15. Replies
    5
    Views
    2,592

    Re: how to start an exe after reboot

    The format of manifest file is as below..



    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly
    xmlns="urn:schemas-microsoft-com:asm.v1"
    manifestVersion="1.0">...
  16. Re: Disable the entire UI.. Prevent user to enter the inputs ???

    I tried that but doing so makes the window non-movable... i.e. i can't even drag the application window... also the System menu buttons like... "mininize, maximize and close" dosen't work when the...
  17. Disable the entire UI.. Prevent user to enter the inputs ???

    Hi,

    I have developed an application, containing some edit boxes, check boxes, radio buttons etc to get the inputs from the user.... after selecting desired inputs and filling up the edit boxes......
  18. Thread: IOCTL codes

    by LOOSER_007
    Replies
    1
    Views
    791

    Re: IOCTL codes

    Post the thread under "Driver Development" section.

    Thanks,
  19. Replies
    5
    Views
    782

    Re: 1 small issue and im happy!!! =)

    Here in the above code... If the user enters.... -3( which is not >=41) will be acccepted.



    do {
    if (reghours <=0) {
    cout<< "Hours must be between 1 and 40. Please reenter hours...
  20. Replies
    19
    Views
    20,630

    Re: using dll, assertion failed afxgetthread()

    MSDN Says: AfxGetThread() returns: Pointer to the currently executing thread; otherwise NULL.(Must be called from within the desired thread. )

    Just check the place from where you are calling the...
  21. Replies
    6
    Views
    10,508

    Re: How does WriteProfileString() works...???

    Yes thats true, But in my case i can see the values are getting stored in MyApp_Name.ini file under windows directory.

    I think as Victor_N said in his above posts if we use SetRegistryKey()...
  22. Replies
    3
    Views
    5,143

    Re: string problems if/else structure

    Hi,

    strcmp (psd, "joshua") will return you "0" when both the strings are same, which is FALSE for an "if" i.e. if(0) so it will execute your "else" part. Thats why the result will be vice-versa...
  23. Replies
    6
    Views
    10,508

    Re: How does WriteProfileString() works...???

    Thanks for all of your efforts Victor_N, Those info were really helpful....

    Also i found that the application creates an "App_Name.ini" file in "C:\Windows" and its doing read and write via this...
  24. Replies
    6
    Views
    10,508

    Re: How does WriteProfileString() works...???

    No, there is not call to SetRegistryKey() .... Anyway in registry where can i look for the data written by WriteProfileString().

    BTW i am call the fun like this:

    CWinApp* pApp = AfxGetApp();...
  25. Replies
    6
    Views
    10,508

    How does WriteProfileString() works...???

    Hi all,

    I am using WriteProfileString() function call in my application... Microsoft SDK says that : The WriteProfileString function copies a string into the specified section of the Win.ini file...
Results 1 to 25 of 194
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured