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
K

krishna Vuppala

@krishna Vuppala
About
Posts
21
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • any DLLs Required in Xp and 2000
    K krishna Vuppala

    initially i tried by registering required DLLs in XP system.later i installed VC++6 then also i shows the same error. :(

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

  • any DLLs Required in Xp and 2000
    K krishna Vuppala

    Iam developed one appication in MFC in my system which is having OS as XP 2000.its working fine.in my application iam maintaining some database connection and playing functionality(using some special Audio card). its working well. but iam facing problem in Xp systems.for database maintaining its working fine.but iam facing problem in playing functionality.while clicking play iam getting error. note: i kept All DLLs in XP system what ever required for my application.

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

  • Is it any DLL problem?
    K krishna Vuppala

    no its written for VC++. but i tested the EXE(in release mode) file in Various systems in my office.

    C / C++ / MFC help csharp c++ database question

  • Is it any DLL problem?
    K krishna Vuppala

    Mr.KarstenK, Thank you. I have to Access Some database window after clicking some button in GUI. its working properly in VC and .NET based systems. iam facing some problem in non VC and .NET based systems.Here iam not able to access the database window after clicking the button where as in VC n .Net systems...its working fine

    C / C++ / MFC help csharp c++ database question

  • Is it any DLL problem?
    K krishna Vuppala

    Iam Developed one application(With some Data Base) in VC++ 6.0 environment. The Exe(in Release mode)is working fine in VC++, .NET systems either the system OS is XP or 2000. But i was Stucked at some systems that are not had VC++ and .NET. here iam not able open Database connection. iam not able to get the bug.is it any DLL problem? :(( :(( :((

    C / C++ / MFC help csharp c++ database question

  • Threads
    K krishna Vuppala

    Mr.CPallini sir , iam very Thankful to you..iam using 2 buttons in a Dailog with two threads.it works well. now iam willing two generate two buttons with Single thread.is there any idea pls share with me sir... kp.Vuppala

    C / C++ / MFC tutorial

  • Threads
    K krishna Vuppala

    How to use TerminateThread() function in program. iam used like this but the thread is not stopped. CWinThread* m_pNuThread; void CThrdDlg::OnButton2() { // TODO: Add your control notification handler code here CString string; m_NuStart.GetWindowText(string); if(string =="START") { m_pNuThread = AfxBeginThread(NuThread, this); m_NuStart.SetWindowText("STOP"); } else { TerminateThread(m_pNuThread, 0); m_NuStart.SetWindowText("START"); } } UINT NuThread(LPVOID lParam) { CThrdDlg *dlg = (CThrdDlg*)lParam; //int i=0; CString str; for(int i=0;i<=100;i++) { str.Format("%d",i); dlg->m_NuEBox.SetWindowText(str); Sleep(200); if(i == 100) i=0; } return 0; } kp.Vuppala

    C / C++ / MFC tutorial

  • How to Convert text to bits in VC++
    K krishna Vuppala

    Mr.toxcct, i want to generate each Charecter in 8bits and i want to store this genrerated bits in an array.. looking for ur help

    C / C++ / MFC c++ tutorial

  • How to Convert text to bits in VC++
    K krishna Vuppala

    i encoded the text "ABC" using CCITT1 encoding technique and i got the text as "#V" now i want to convert this encoded text #V into bitstream.....

    C / C++ / MFC c++ tutorial

  • How to Convert text to bits in VC++
    K krishna Vuppala

    iam encoding some text....after getting the encoded text,then i want to convert this text into bits for modulating purpose..pls give me suggetion to encode some text into bitstream

    C / C++ / MFC c++ tutorial

  • sorry for distrubing
    K krishna Vuppala

    Sorry for distrubing all. i have to create communication Between modem and Pc through RS-232. 1)i created a port along with activeX(microsoft Communication control, version 6.0)control.it works well and opened the serial port. 2)my dialoge box is having all port configaration controls(like hyperterminal) and after that two edit boxes one for commands to modem,after that submit button. next there will edit box for responces for Modem. 3)iam not able to create thread for communication b/w pc and modem. which fuctions i have to call.pls anybody help 4)iam successfully completed the communication B/w two sys by RS-232 port. here is the thread where i used in Communication b/w in two sys UINT ReaderThread(LPVOID lParam) { CString strCount; VARIANT vtResult; CString str,str1; CSerialcomDlg* m_wnd = (CSerialcomDlg*)lParam; while(1) { int nCount = m_wnd->m_CommControl.GetInBufferCount(); if(nCount > 0) { strCount.Format("%d",nCount); for(int i = 0; i< nCount;i++) { vtResult = m_wnd->m_CommControl.GetInput(); str.Format("%s",(LPCSTR)(_bstr_t)vtResult); str1 = str; } m_wnd->m_edtrecvdata.SetWindowText(str1); } } return TRUE; }

    C / C++ / MFC com help announcement

  • Modem to PC through RS-232
    K krishna Vuppala

    Mr.p_ first you go through your systems hyperterminal and see the port configarations and know about them

    C / C++ / MFC

  • Modem to PC through RS-232
    K krishna Vuppala

    Mr.Moonen sir thankyou for your's reply. i created a port configarations using combo box and i created a "openport" button.and port also opened. after this in i created a two editboxes, one for ATcommands to Modem and other for Responses from modem like When Hyper terminal. exactly here iam not getting any idea.how send commands to modem and getting responces from modem to our editbox. i think u can understand my problem. kp

    C / C++ / MFC

  • Modem to PC through RS-232
    K krishna Vuppala

    anybody pls give me a suggestion. i already developed communication b/w two systems by RS-232(9pin)port. nw i want 2 prepare communication b/w Pc and Modem. when ever i hit a AT commands to Modem from my dailog...then Modem response is also be displayed in my Dailog box.... kp

    C / C++ / MFC

  • pls suggest
    K krishna Vuppala

    Mr.Moonen, thanks for reply, i know all the Hayes AT Commandswhich are the communication protocols through hyperterminal 2 modem. but iam enable to instantiate a connection to modem in MFC. how can i start,by inserting an activex control..shall it work regards, kp

    C / C++ / MFC c++ tutorial

  • pls suggest
    K krishna Vuppala

    Mr.KarstenK, iam already go through that topic that what u are specified to me and i know abt serial communication.but what iam asking is communication b/w system and Modem. i have to prepare that code in VC++ like when we press the button "connect".it will conncet 2 modem after 2 rings. thanQ, kp.

    C / C++ / MFC c++ tutorial

  • pls suggest
    K krishna Vuppala

    How to connect Modem after two rings through RS-232 in MFC

    C / C++ / MFC c++ tutorial

  • pls help.....!
    K krishna Vuppala

    thanQ Mr.Jhwurmbach I do't have any particular tutor in this org for VC++ and iam the only person who selected for VC++. so i have 2 prepare my own. anyway iam thankful 2 u for suggestions. and if possible pls suggest me some techniqs for self preparation in VC++.feel free 2 mail me kp007in@rediff.com thanQ sir, kp

    C / C++ / MFC c++ help learning

  • pls help.....!
    K krishna Vuppala

    Mr.Jhwurmbach me also not bad at programming.. but iam placed here as a fresher.ido't have fullpledged knowledge in VC++,upto my syllabus i know some basix of VC++.that iam asking u 2 Suggest books for improving my programming skills... i hope u suggest some gud books for me regards, kp

    C / C++ / MFC c++ help learning

  • pls help.....!
    K krishna Vuppala

    jhwurmbach wrote:

    Do you know programming but need to learn syntax and idioms of C++? What language did you do before? Are you just starting with programming as a whole

    yes iam just starting with programming, iam appointed as a trinee in VC++.

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

  • Don't have an account? Register

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