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

Search:

Type: Posts; User: rag84dec

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    3
    Views
    1,301

    C++ interview preparation - Help needed.

    Hi all,

    I am preparing for c++ interview.I have 5 years of experience and mostly been to maintenance projects. It will be great if you guys help me in preparing for the interview which i plan to...
  2. is th object created in a member function going to get destroyed

    myclass myclass::operator +(myclass ob)
    {
    myclass temp;

    // add the data of the object
    // that generated the call
    // with the data of the object
    // passed to it and store...
  3. Sleep for a second for FindFirstChangeNotification

    Is it necessary to sleep for a second when i get this call , because only after sleeping for a second it gives desired results...
  4. HElp needed to create a windows service , to launch a simple thread(win32)

    HElp needed to create a windows service , to launch a simple thread created by the user.
    I got an article here...

    http://www.devx.com/cplus/Article/9857/1954


    But how to create a thread at...
  5. Passing the application name to restrict access the path - Filter Driver

    Hi all

    I am new to the filter driver programming.can you please let me know which api to use to pass the application name to the driver so that the path access is restricted?

    If you can direct...
  6. Looping through the windows registry using RegEnumKeyEx till the leaves

    Hi all,

    I am trying to write code to loop through the windows registry till i find the leaf , meaning the
    key value pair exists . Each time i get the key , i want to know whether it is parent of...
  7. Getting notification on windows registry change for a key.

    hi all,

    I am trying to write a code to notify if the registry key value has been changed in windows. I have appended the code below.
    Now, i want to get the information about the key that has been...
  8. error C2664: 'StartServiceW' : cannot convert parameter 3 from 'const char **' to 'LP

    HI all,

    I have problem while compiling the following code which i copied from the
    below location. i downloaded the source code and opened in visual studio 2008
    and compiled , it worked fine....
  9. Replies
    1
    Views
    672

    Creating a thread in a class - C++

    HI all,

    I need to create a thread of 2 functions belonging to a same class.Can any one help me write
    a class with 2 functions being threads?. Is there any predefined thread class from which i ...
  10. Re: C++ assignment for the gurus only . Solve this if u can .

    hi,

    There are some special characters in the program because of which it is not compiling.Anyways,answer for your question would be as following...

    10
    7
    -2
    2
    3
    1
  11. Re: Problem with the reference to (CTreeCtrlEx)

    HI alex,

    I just tried this...But it is giving RUNTIME EXCEPTION....Help please...



    OC_TestOptions_Common_c temp = m_Options;
    if ( OC_Dlg_PureMFC_Test_Options_c(m_Options).DoModal() != IDOK...
  12. Re: Problem with the reference to (CTreeCtrlEx)

    HI alex,

    I just tried this as well... But i am getting a RUN TIME EXCEPTION...once i press "cancel"...I am getting exception....



    m_Options = (OC_TestOptions_Common_c&)temp;
  13. Re: Problem with the reference to (CTreeCtrlEx)

    How will i do that??...
    m_Options is a reference...declared as below...


    OC_TestOptions_Common_c& m_Options;



    So following DOES NOT WORK....
  14. Problem with the reference to (CTreeCtrlEx)

    I have an MFC dialog which has a Tree(CTreeCtrlEx) structure where each node is a combo box.
    I want to have a "Cancel" button which will cancel the option chosen by the user and goes with
    the user...
  15. Replies
    1
    Views
    1,015

    Getting OS name in VC++

    HI all,

    There is one problem with VC++.The minor number and major number for "Vista" and "Windows 2008 server" are same.So, in order to distinguish between the two wProductType should be used.But...
  16. perl script to read from a file and put in a scalar variable

    Hi,
    I need to read the content of a file data.txt


    dat
    data1


    into a variable...@temp.
    I am getting both the values in $temp[0]...
  17. Replies
    1
    Views
    694

    DLL Static data

    Hi all,
    I have static data members in the class
    I have written to form static libraries.These static libraries are
    used to form a Dynamic link library.
    Do i need to use SEMAPHORE wile using...
  18. Replies
    1
    Views
    655

    Dynamic link library global data

    Hi all,

    What is the meaning of DLL's Global data?.If i have a class with member functions,will any member functions
    and data members qualify for the global data category?.
    How will i make it...
  19. Replies
    1
    Views
    739

    DLL packaging or bundling option

    Hi,
    I have a DLL which will be used by some applications. User will install the DLL . With the DLL i have some other folders where many dependent files will be stored , like thirdparty etc.
    How can...
  20. Replies
    6
    Views
    1,324

    Question on DLL written in c++...

    Hi all,

    I have a lot of static libraries written in c++. i would now like to construct a DLL.
    I have few questions...

    1) What are the possible conditions that i need to be aware of as far as...
  21. perl program to convert first 2 characters of each word in files

    Hi all,
    I have a file with some words starting with "RR_"... i want to change it to "TT_"...

    For example.... a word in the file "test.txt" ... is "RR_Word"...i want it to be converted into...
  22. How to extract "y" from abc/x.y.z?.. i need regular expression

    Hi,
    i am new to perl.Can anyone tel me wat is the regular expression to extract "y" from "abc/x.y.z"??
  23. Re: RegOpenKeyEx returns ERROR_FILE_NOT_FOUND in 64 bits windows

    HI,

    There is no problem with the parameters.Last parameter is a string "SOFTWARE/ActiveState/ActivePerl"
  24. RegOpenKeyEx returns ERROR_FILE_NOT_FOUND in 64 bits windows

    Hi,
    the above mentioned function returns ERROR_SUCCESS in 32 bit but returns ERROR_FILE_NOT_FOUND in 64 bit machine.Can anyone give me idea what has to be sent?

    Code is


    if( RegOpenKeyEx(...
  25. Replies
    4
    Views
    809

    Re: How to resize the dialog box

    One of the buttons present in the tool bar is not visible completely.
Results 1 to 25 of 90
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured