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

Search:

Type: Posts; User: CoolPG

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    1,468

    Re: Help regarding Windows Crypt API's

    Thanks a lot for your response hoxsiew, yes i am geting the readable hex string after calling BytetoStr(). I am trying to decrypt the stream after the call to BytetoStr() and i'm passing in the...
  2. Replies
    3
    Views
    1,468

    Help regarding Windows Crypt API's

    Hi please somebody help me with decoding H225 signalling messages. I am getting the encoded bytes over TCP. I used MSDN sample code of ByteToStr() to convert those byte buffer into Hex string.
    ...
  3. Replies
    1
    Views
    633

    Help Regarding Reading from File

    Hi all, i was writing a kernel mode driver in Windows and was in need of reading certain informations from an ini file.

    In usermode applications, i am using the GetProfileString Windows API to...
  4. Replies
    2
    Views
    879

    Re: RichEdit - Print - Print page 2-3?????

    @ OP



    Please use "Code Tags"

    It is difficult to read your code :(
  5. Re: problem getting function to change value of array element

    Thank you laserlight for replying and clearing the doubt.

    It was disappointing when other people went away not replying after getting their repute :(
  6. Replies
    18
    Views
    2,567

    Re: compile only one .cpp file???

    ++i :thumb:
  7. Replies
    12
    Views
    1,798

    Re: Beginner's problem

    He was asking you to post the 'exact' block of codes in your program., not your entire source code.
  8. Re: problem getting function to change value of array element

    Thanks Paul and Lindley.

    1 more doubt.



    So, if it is the case why ISO is restricting programmers from using "void" as return type for main() and is there any underlying risk in using this...
  9. Re: problem getting function to change value of array element

    Thanks for pointing out mistakes, Paul :)

    I'm sorry i got result what the OP is asking for. I didnt know that this was a risky method.

    And, about the main() i strongly believe i had seen...
  10. Replies
    12
    Views
    1,798

    Re: Beginner's problem

    You must terminate the closing braces of a class with ';' (semicolon). :)
  11. Re: problem getting function to change value of array element

    You are trying to change the value of a const char* type which is not allowed and the operation fails with a access violation error.

    You should try something like this :


    void main(void)
    {
    ...
  12. Re: i want to get some open source libraries or codes which implement VOIP using SIP?

    I had no bad or good opinion about pjsip library since i havent tried it yet ;)

    Better do some enquiry about the library to someone who had used it, and then decide whether you will be using it or...
  13. Replies
    16
    Views
    12,844

    Re: How do I stop flickering?

    FIRE!.. FIRE!.. FIRE!!!!!!

    ALARMMM!!!!!!,....................


    AMBULANCE!!!! :( :D :eek: :thumb:
  14. Re: How to change window brightness and transparency?

    Read the MSDN documentation for AlphaBlend() API for Windows.. It allows regional transparency also...


    If you need full window transparency( including non-client area like titlebar and sizebar...
  15. Replies
    2
    Views
    798

    Re: Writing in a file using CArchive class

    Next time when you post your code in code tags, please dont forget to put linebreaks wherever necessary.. it was hard to read, and i copied your code into a notepad, and put linebreaks to make it...
  16. Replies
    5
    Views
    1,315

    Re: calling a function within a function

    Why cant you think of doing that condition check in the place where you intend to call print_secure() or print_all()?

    i mean like,


    CustomerData cd;
    if( security_preference == 1 )
    ...
  17. Re: i want to get some open source libraries or codes which implement VOIP using SIP?

    Handling SIP is not a big pain in the ***... its a simple protocol similar to HTTP...

    You can go for Sofia-SIP library which is an Opensource library.

    Or use Winpcap library, get the Raw...
  18. Replies
    3
    Views
    952

    Re: Write # bytes to end of file

    Get the filesize in bytes.. then simply use SetFilePointer() API to move the pointer to anywhere you like... after that, do the write operation. :)
  19. Thread: Permission

    by CoolPG
    Replies
    7
    Views
    876

    Re: Permission

    wow, thats amazing... and, i'm doubtful how can present day applications run perfectly and smoothly on Win9x operating systems.. :O

    I'd seen on documentations of most present day softwares that...
  20. Re: Checking application opened (Challenge For Coders)

    I dont write malware on Windows because i love Windows and i like Billgates the most.

    But i hates Linux the most! :X


    so i will learn Linux programming, and writes deadly malwares on it :D
  21. Replies
    1
    Views
    749

    Re: Drawing on the Background

    I think you can do it this way... Get the DC for desktop. then create a memory DC and draw into it whatever you want. after that, just use blitting function like TransparentBlt() to blit it onto the...
  22. Thread: Permission

    by CoolPG
    Replies
    7
    Views
    876

    Re: Permission

    @ stfark

    You are using an outdated and unsuported compiler + IDE on Windows 7. MS doesnt guarentee VC6.0 works perfectly anymore on Vista+ platforms like it did in Win2k/XP before.

    You should...
  23. Replies
    4
    Views
    2,473

    Re: how to pass LPBYTE value?

    @ Saravana.

    Your function is expecting an Adress to a pointer to buffer... LPBYTE is BYTE* and your function parameter is expecting adress of a BYTE*.


    And, you are passing plainly a buffer...
  24. Re: Help me : How to write a file when user log in and logout in Windows

    @ Skizmo

    Thanks a lot, i doubt it really happens... because, when i logs off my system with Internet Explorer and other applications running, they wont get terminated.. and when i re-login again,...
  25. Help me : How to write a file when user log in and logout in Windows

    Hi i need to log the details of user login in Windows such as login time, login date and day etc and write it to a text log file... okay, i can get all these details with GetSystemTime() API.. but, i...
Results 1 to 25 of 85
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured