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

Search:

Type: Posts; User: rajeshrp

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    550

    Problem in opening application

    Hi all
    I am working on an application which gets properly opened when i debug/release mode by pressing F5. But when i double click on the exe in the debug/ Release folder location it is creating...
  2. Replies
    6
    Views
    1,858

    Comparing þ character in unicode

    Hi all
    I am using Unicode Character Set .

    I am trying to find the position of thorn character(þ) with the string value which contains thorn character in unicode but the find is not able to...
  3. Replies
    1
    Views
    1,559

    Wrapper class for Vb.net dll using MFC

    Hi all

    Using Visual Basic dll, we are able to generate wrapper class using Add class option "MFC class From TypeLib" in VC++.
    After converting the same dll in Visual Basic.Net 2003. we are not...
  4. Replies
    6
    Views
    8,974

    Re: Problem with _tcscpy

    HI 0xC0000005

    Does GetPrivateProfileStruct and GetPrivateProfileStructW will make any difference since i am working on the project with unicode settings. When i move the cursor over...
  5. Replies
    6
    Views
    8,974

    Re: Problem with _tcscpy

    Sorry Skizmo and 0xC0000005, as i did not mention it properly............

    CPass is a class which i have created to open a ini file and read data from it...
    Also the constructor does not pass a...
  6. Replies
    6
    Views
    8,974

    Problem with _tcscpy

    Hi all
    I have developed a project with unicode support settings. In my code which is as follows:

    Wchar strpath[255];
    CPass cp( inifile, value, "",bufsize);
    if (value==true)
    _tcscpy(...
  7. Thread: using wcschr

    by rajeshrp
    Replies
    3
    Views
    2,002

    Re: using wcschr

    Thank u hoxsiew
    I was not able to find using L'\n' but when i used L'\r' i was able to find the exact place where the new line is inserted....
  8. Thread: using wcschr

    by rajeshrp
    Replies
    3
    Views
    2,002

    using wcschr

    Hi all

    While reading a ftx file which contains the following content:

    This is the sample content
    This document contains some text value
    ==============================

    I need to find the...
  9. Replies
    4
    Views
    1,493

    Class Not Registered error

    Hi all,

    We created MFC shared dll in Visual studio 2003.The dll is registered using regsvr32. ClassID is also there in the Registry After upgrading to Visual Studio 2008 with Unicode build. While...
  10. Re: How to write unicode text in a edit box or text box...

    Thank you victor and OReubens..........

    I have changed the character set from MBCS to Unicode Character set and the edit box is accepting the unicode characters.....Also i have made changes...
  11. How to write unicode text in a edit box or text box...

    Hi all

    In my application i have a text box. When i copy the unicode characters into the text box it is being displayed as ?????. Can any one explain whether the problem occurs since i copy into...
  12. WritePrivateProfileString for saving Unicode characters

    Hi all

    i need to save the unicode characters in an ini file. When saving the unicode characters are saved as ???????. Now when i manually changed the format of the file from ASCII to Unicode while...
  13. Replies
    0
    Views
    679

    Using Activex dll in VC++

    Hi all

    In my application i am using a dll of activex type and i need to know how should i use the functions of that dll in my vc++ code.

    I have the following doubts:
    1) What is the difference...
  14. Replies
    6
    Views
    1,398

    Re: Saving Unicode in html file.

    While writing i was able to write using the WriteString() of the StdIofileEx class but while reading there is a problem in the ReadString() function it is reading only one character. i am calling the...
  15. Replies
    6
    Views
    1,398

    Re: Saving Unicode in html file.

    While writing i was able to write using the WriteString() of the StdIofileEx class but while reading there is a problem in the ReadString() function it is reading only one character. i am calling the...
  16. Replies
    6
    Views
    1,398

    Re: Saving Unicode in html file.

    I tried writing the file using the CStdIofileEx class and able to write content into the html file but the problem is that the unicode text is shown as some other text for example the unicode text
    ...
  17. Replies
    6
    Views
    1,398

    Saving Unicode in html file.

    Hi all
    In my appln., i can add text in the unicode format and on clicking save button, the text will be saved in the html format in a specified location and SaveBtnclick event,...
  18. Replies
    1
    Views
    666

    Writing in the unicode format

    Hi all
    In my application, there is an option to write in a file and on clicking on save the WriteString() function of CStdIoFile is called and the file will be saved.

    I have added the unicode...
  19. Replies
    0
    Views
    700

    Regarding DataGridView Control

    Hi all

    I am new to cSharp and i am doing a small application which performs the following:

    1) there are 2 textboxes and 1 numericupdown control,
    2) save and display button
    3) when I enter...
  20. Thread: using #define

    by rajeshrp
    Replies
    4
    Views
    833

    Re: using #define

    i have used the following code

    CString m_strIniPath("C:\\Program Files\\DS\\Store.ini");
    if(!fopen( m_strIniPath , "r" ) )
    {
    CFile cp_file( m_strIniPath, CFile::modeCreate );
    }

    if the...
  21. Thread: using #define

    by rajeshrp
    Replies
    4
    Views
    833

    Re: using #define

    But i dont want the user to specify the location of where to store the file and it should be in a location specified by me with the user name say if a user named John is using the file should be...
  22. Thread: using #define

    by rajeshrp
    Replies
    4
    Views
    833

    using #define

    Hi all
    I created an application which has an edit box and a save button.When i type some value in the edit box and click on the save button the value gets stored in the C:\some.txt file. Now i need...
  23. Replies
    2
    Views
    867

    Re: Encryption and decryption

    Thanks a lot cilu i will try doing it
  24. Replies
    2
    Views
    867

    Encryption and decryption

    Hi all
    I have one edit box and when i type some data i need to store data in a text file and the text file should be in an encrypted format. Also i have a function called retrieve which should...
  25. Replies
    1
    Views
    615

    Performance related issue

    Hi all
    i am using a project which makes calls from vc++ code to vb based code for performing some operations. I need to know whether a call from vc++ code to vb code will reduce the performance of...
Results 1 to 25 of 68
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured