Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Shivanand Gupta

@Shivanand Gupta
About
Posts
77
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Share object in same JVM
    S Shivanand Gupta

    thanks dear

    Java java lounge

  • Share object in same JVM
    S Shivanand Gupta

    yes, I agreed bu problem is that to shared variable of my current running application to other java application and if other application access my class that is OK but how to share value of my current running object.

    Java java lounge

  • Share object in same JVM
    S Shivanand Gupta

    I am reading date time and generating random number using MyClass(Java class) that have Main function. I need to exposed one class(Exposed_class) for reading random number value from My class, to third party application (that is also written in Java). in this case there was two main that is running concurrent and want to share data.

    Java java lounge

  • how to add web service in VC++2010
    S Shivanand Gupta

    VC++ 2010 wizard do not show Add WEB Reference/Service option when i select MFC project. this option was avaiable in previous version of IDE. attached link is not useful info for my problem..

    ATL / WTL / STL c++ tutorial question

  • how to add web service in VC++2010
    S Shivanand Gupta

    VC++ 2010 is not giving any option to add web service/web reference. how can it achive??

    ATL / WTL / STL c++ tutorial question

  • C++/MFC solution Convert string to integer only such that if it is alphanumeric or float it should show as invalid values.
    S Shivanand Gupta

    CString str=10.27; CString res = str.SpanIncluding(_T("0123456789")); if(res == str) { int nValue = atoi(str); } else { MessageBox("string is not integer"); } //Cheers

    ATL / WTL / STL c++ json

  • How to remove the "0" from the starting i.e. from the left of the CString
    S Shivanand Gupta

    here there are two method. method 1: if your string is numeric then first convert into integer and again change into string. eg. CString cs("000012345745"); int num = atoi(cs); cs.Format("%d",num); method 2: eg. CString cs("000012345745"); cs.Trim(); int start=0; while(cs.Mid(start,1)=="0") { start++; } cs= cs.Mid(start);

    ATL / WTL / STL help tutorial

  • Scroll Bar in CEdit (GetScrollBarCtrl)
    S Shivanand Gupta

    i want to handle scrollbar properties in Cedit class like change width and color of scroll bar. i use GetScrollBarCtrl function but it return null address. how can i change color and width.

    C / C++ / MFC question

  • Size of an empty class
    S Shivanand Gupta

    Dear, empty class does not have any size. but size of operator always return +ve value. so you get empty class size 1.

    C / C++ / MFC question

  • Compare Two XML Files
    S Shivanand Gupta

    Please use winmerge software to comapre to xml or text file.whichever you want. if you want with VC++. please use MSXML sdk or read MSDN. don't try copy paste. that's bad habbit to fresser.

    C / C++ / MFC c++ xml help

  • Urgent: RS232 Hyperterminal communicator with Visual C++
    S Shivanand Gupta

    Please use cross serial cable. and communication setting should be same. eg: baudrate , parity, stop bit etc. u can use either hyperterminal or Look Rs232. my suggestion is that please use Look RS232.it gives more option to see send and receive data.

    C / C++ / MFC c++ business

  • problem with CDaoDataBase in Thread
    S Shivanand Gupta

    when we close application then applicationn perform this line of code (daocore.cpp file) // Clean up engine object if necessary if (pDaoState->m_pDAODBEngine != NULL) { pDaoState->m_pDAODBEngine->Release(); //error ouccr in this line pDaoState->m_pDAODBEngine = NULL; }

    C / C++ / MFC help c++ database announcement

  • problem with CDaoDataBase in Thread
    S Shivanand Gupta

    i have check by breakpoint. error occur when we close the application where CdaoDatabase class used in thread .

    C / C++ / MFC help c++ database announcement

  • problem with CDaoDataBase in Thread
    S Shivanand Gupta

    when i am using CdaoDataBase in main application and close it ,it works success but when i used cdaodatabase class in thread and close database and after that close application. it gives error. daocore.cpp line 40 m_Daoworkspace.release();

    C / C++ / MFC help c++ database announcement

  • Change Disable Edit control color
    S Shivanand Gupta

    Hi, i have done to change edit control backgtound & text color when it is enable, with the help of onstlcolor, but my edit control is disable then i try to change color but color is not changing

    C / C++ / MFC help

  • Time Format
    S Shivanand Gupta

    AFTER getting currenttime you can use Format method for changing time format as you want

    C / C++ / MFC question

  • Best practice for managing large quantity of hard-coded string in application.
    S Shivanand Gupta

    it store data in key value pair. and it work well in windowXP

    C / C++ / MFC design xml question discussion announcement

  • Line Drawing
    S Shivanand Gupta

    Please find previous thread. that will help you

    C / C++ / MFC graphics tutorial question

  • Best practice for managing large quantity of hard-coded string in application.
    S Shivanand Gupta

    use "ini" file read string from ini file by GetPrivateProfileString method

    C / C++ / MFC design xml question discussion announcement

  • conversion of date and time to string [modified]
    S Shivanand Gupta

    in mfc use COleDateTime class and after that Format method in win 32 use sprintf function

    C / C++ / MFC question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups