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
M

mohindar_kks

@mohindar_kks
About
Posts
17
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to avoid the space in character array using C
    M mohindar_kks

    Not possible to set variable length string because database object is return struct variable with fixed length character using pro*C. suppose i have try to declare structure member variable like character pointer or void pointer when it return memory leak . I have developed this application using Pro *C language.

    C / C++ / MFC database tutorial data-structures help

  • How to create reference map to store information [modified]
    M mohindar_kks

    Hi, How to create indirect mapping using C# in asp page like as following example href="http://mysite.com/resource?file=1, then i have a mapping between 1 and “french.aspx”" please replay me as soon as possible

    modified on Thursday, August 14, 2008 7:17 AM

    ASP.NET tutorial csharp com question learning

  • How apply Single Scrollbar for Treview control in C#
    M mohindar_kks

    Hi, How apply comman Scrollbar for Two Treview control in C# Please Replay me Asoon as possible Thanks

    C# csharp

  • VC++ https
    M mohindar_kks

    m using the 'Post type.am attaching the code.Please verify.The http is working in same code.Is there any credentials to pass the code? HTTPMethod = _bstr_t( "POST" ); httpReq->open(HTTPMethod ,"https://gtl-334/XmlTesting/Service.asmx",noAsync,vUser,vPassword); httpReq->setRequestHeader("Content-Type", "application/soap+xml"); CString szRequest;// = "<strUserName>"; //szRequest += "chaitanya"; //szRequest +="</strUserName>"; szRequest = "<?xml version=\"1.0\" encoding=\"utf-8\"?> \ <soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\\" xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\\"> \ <soap12:Body>\ <RetrieveKey xmlns=\"http://tempuri.org/\\"> \ <serial>1001</serial>\ </RetrieveKey>\ </soap12:Body>\ </soap12:Envelope>"; //szRequest = "Chaitanya"; VARIANT vRequest; vRequest.vt = VT_BSTR; vRequest.bstrVal = szRequest.AllocSysString(); httpReq->send(vRequest); BSTR strText; _bstr_t bsResponse = httpReq->responseText;

    C / C++ / MFC csharp c++ asp-net help tutorial

  • VC++ https
    M mohindar_kks

    Hi, am sundar.I have one doubt in vc++.How to connect the https web service in vc++?The webservice was developed in vc++.I have connected http site in vc++ and it was working.When i connect the https site,it displays the error in the screen. I have done in asp.net.Its working fine.Please let me know what are the procedures to follow to connect the https site in vc++. Anyhelp would be appreciated. Regards, R.Sundar

    C / C++ / MFC csharp c++ asp-net help tutorial

  • How to avoid warning LNK4224: /COMMENT is no longer supported
    M mohindar_kks

    How to remove the /COMMENT directory from the project settings

    C / C++ / MFC tutorial

  • How to avoid warning LNK4224: /COMMENT is no longer supported
    M mohindar_kks

    How to avoid warning LNK4224: /COMMENT is no longer supported; ignored in Visual 2005 .please reply me ASAP

    C / C++ / MFC tutorial

  • How to create foxpro database in c# fly program
    M mohindar_kks

    Hi , Iam newbee in foxpro. I tryed to create foxpro database via program using the foolwing code.but it throw the error ADOX.CatalogClass dbcreate; dbcreate = new ADOX.CatalogClass(); string conPath = "Driver= {Microsoft Visual FoxPro Driver};SourceType=DBF;SourceDB=C:\\Tamil\\FPDB.dbc"; con.ConnectionString = conPath; dbcreate.Create(conPath); MessageBox.Show("Sucess");

    C# csharp database help tutorial

  • Different between const char * and const char const*
    M mohindar_kks

    Hi, what is different between const char * and const char const *.

    C / C++ / MFC question

  • Problem in Enable and disable ToolBar
    M mohindar_kks

    I had solve the problem from your valuable reply

    C / C++ / MFC help

  • Problem in Enable and disable ToolBar
    M mohindar_kks

    Hi, Am also try to run the following code, here also abnormal termination error are occured CToolBar c_oToolBar; CToolBarCtrl & a_roCtrl = c_oToolBar.GetToolBarCtrl(); a_roCtrl.EnableButton(ID_FILE_OPEN,FALSE);

    C / C++ / MFC help

  • Problem in Enable and disable ToolBar
    M mohindar_kks

    Hi, In my poject want to disable and enable ToolBar Button(save,open,new..) at runtime using view class. I had used following code but this code not work properly(abnormal termination error are occure) CToolBar m_wndToolBar; m_wndToolBar.GetToolBarCtrl().SetState(ID_FILE_NEW,TBSTATE_ENABLED); m_wndToolBar.GetToolBarCtrl().EnableButton(ID_FILE_NEW,FALSE); Please help me....

    C / C++ / MFC help

  • Problem in Disable System menu
    M mohindar_kks

    Hi I had solved Debug assertion failed problem. Problem : Not disable menu with gray color from the following code code: CWnd* wnd=AfxGetMainWnd(); CMenu* mmenu = wnd->GetMenu(); CMenu* submenu = mmenu->GetSubMenu(0); submenu->EnableMenuItem(ID_FILE_NEW,MF_DISABLED | MF_GRAYED);

    C / C++ / MFC help c++ tutorial

  • Problem in Disable System menu
    M mohindar_kks

    Hi I had work with following code in view class, but Debug assertion failed had occured. code: CWnd* wnd=AfxGetMainWnd(); CMenu* mmenu = wnd->GetMenu(); CMenu* submenu = mmenu->GetSubMenu(0); submenu->EnableMenuItem(ID_FILE_NEW,MF_DISABLED | MF_GRAYED);

    C / C++ / MFC help c++ tutorial

  • Problem in Disable System menu
    M mohindar_kks

    Hi, In my project i want to disable and enable Main Menu at run time using mfc . I had try to run the following code, but don't send error occurred CMenu* mmenu = GetMenu(); CMenu* submenu = mmenu->GetSubMenu(0); submenu->EnableMenuItem(ID_FILE_NEW,MF_DISABLED | MF_GRAYED); Please help me How to Disable/Enable Main Menu using View class

    C / C++ / MFC help c++ tutorial

  • Problem in fwrite and fread function [modified]
    M mohindar_kks

    Hi, In my project simply encrypt data using XOR operator ,Then write encrypted data in file using fwrite function in MFC. No problem in Decryption if successfully retrive data from encrypted file until EOF. But some time encrypted file automatically return EOF after postion of data retrive this data also decrypted successfully. For example , File1:Input File size(6kb) FIle2:Encrypt File size(5kb) File3:Decrypt File size(1kb) coding: Encrypt: while(!feof(Inputfile)) { int iout; fread(&iout,sizeof(iout),1,Inputfile); iout^=1300; fwrite(&iout,sizeof(iout),1,encryptfile); } Decrypt: while(!feof(encryptfile)) { int iout; fread(&iout,sizeof(iout),1,encryptfile); iout^=1300; fwrite(&iout,sizeof(iout),1,decryptfile); } Note : NoProblem occur when if XOR with value of 10 while(!feof(Inputfile)) { int iout; fread(&iout,sizeof(iout),1,Inputfile); iout^=10; fwrite(&iout,sizeof(iout),1,encryptfile); } Please replay me urgently

    C / C++ / MFC c++ help tutorial

  • Problem in fwrite and fread function [modified]
    M mohindar_kks

    Hi, In my project simply encrypt data using XOR operator ,Then write encrypted data in file using fwrite function in MFC. Problem is occure only possible to decrypt pice of data from encrypted file. For example , File1:Input File size(6kb) FIle2:Encrypt File size(5kb) File3:Decrypt File size(1kb) coding: Encrypt: while(!feof(file1)) { int iout; fread(&iout,sizeof(iout),1,file1); iout^=1300; fwrite(&iout,sizeof(iout),1,file2); } Decrypt: while(!feof(file2)) { int iout; fread(&iout,sizeof(iout),1,file2); iout^=1300; fwrite(&iout,sizeof(iout),1,file3); } Note : NoProblem occur when if XOR with value of 10 while(!feof(file1)) { int iout; fread(&iout,sizeof(iout),1,file1); iout^=10; fwrite(&iout,sizeof(iout),1,file2); } Please replay me urgently -- modified at 8:40 Thursday 26th April, 2007

    C / C++ / MFC c++ help tutorial
  • Login

  • Don't have an account? Register

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