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

Search:

Type: Posts; User: arunkr6

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    737

    To create setup file of my application

    I have developed an application tool using VC++ 6.0. I want to create its setup file.

    I have read that InstallSHIELD will provide it and it is available with VC CD package. But I haven't seen it...
  2. Replies
    11
    Views
    10,083

    Re: Multi Line ListBox

    Your question makes rethinking on me..
    Bt after several try & error....... I reached here... n copied it here....
    Ok.. So 1) how do I delete the exact Selected indexes....?
    2)The return of ....
  3. Replies
    11
    Views
    10,083

    Re: Multi Line ListBox

    As like the above said procedure..I've written the code as


    int iTot = m_parameterlist.GetCount();
    iTot-=1;
    int len=m_parameterlist.GetSelCount();
    CArray<int,int> arySel;...
  4. Replies
    11
    Views
    10,083

    Re: Multi Line ListBox

    lemme try more...... n come back 2 u..thanx....
  5. Replies
    11
    Views
    10,083

    Re: Multi Line ListBox

    Assembler is extremely different from GUI concepts..... While working on GUI based pgms,I have struggled several times n the CodeGurus like u helped me a lot... tats wy am here for getti ng it. I've...
  6. Replies
    11
    Views
    10,083

    Re: Multi Line ListBox

    Sorry...In my appln, certain data is communicating with hardware.thats wy I have used certain assembly codes for error elimination.....Leave it...

    Can u help me for coding it...I've tried it...
  7. Replies
    11
    Views
    10,083

    Multi Line ListBox

    My application is developig in VC++ 2008. I have a List Box. Where I am Loading some Text data from a text file. After Loaded the listBox is as show in the attached figure :

    I have used it as a...
  8. Replies
    4
    Views
    4,394

    Re: program corrupts in secondtime run

    wchar_t store_file[255];
    _TCHAR sFileName[260];

    may be it have bugs... But the function is working as per my requirment in first run... later if I clear all those datas and using the above...
  9. Replies
    4
    Views
    4,394

    program corrupts in secondtime run

    I am doing my Project in VC++.net 2008. I want to load the datas to a List box from a text(.txt) file. So I have written the code as


    void CNewSerialPrintDlg::OnBnClickedBtnLdfile()
    {
    /*TODO:...
  10. Aligning the various CStrings in a List Box

    I am having 2 text boxes and a combo box. The dats from thiese folders are assigned to a listbox.
    The code for this add operation is


    void CNewSerialPrintDlg::OnBnClickedButtonPmenter()
    {
    //...
  11. Cannot send '00' as string through Serial Port

    I have developed a tool which is communicating from PC to an external DSP based Board. The interfacing is made via Serial Port(RS 232). Here Some values are sending from Board to Pc for user ...
  12. Replies
    5
    Views
    1,339

    Re: Problem when Converting from CString to int

    Thank u...

    The error solved bt on printing in file, I've coded as


    _ftprintf(file1,_T("%.2X"),ibyte);

    each data printed as 0 only.. not the exact converted forms of getting values in...
  13. Replies
    5
    Views
    1,339

    Re: Problem when Converting from CString to int

    thank u VictorN,

    further, if I want to write this ibyte on a file...
    Can I use fprintf function????
  14. Replies
    5
    Views
    1,339

    Problem when Converting from CString to int

    I am new on Using with dotnet platform. Previously I have Experience on working with VC++ 6.0.
    On this exp, I hav choose VC++.Net for my current Project... By understanding the UNICODE fromats, I...
  15. Replies
    1
    Views
    5,252

    Serial Port Write-Read Threaded function

    I am developing a tool using VC++.net 2008, which is connected(using Serial Port) with a PC Board.
    When I am Writing ( a Command) to the Processor(on Board) it gives certain datas and Read by my...
  16. Replies
    3
    Views
    3,567

    Re: Update MultiLine EditControl

    Thank u.... n it has worked...
  17. Replies
    3
    Views
    3,567

    Update MultiLine EditControl

    I am using a multi line edit control. Here the event will be hadle using a timer and it is updated in every seconds. In each time,the same variable will be updating. So I want to display the variable...
  18. Replies
    5
    Views
    6,959

    Re: Error in Multithread

    I've used the above mentioned format.
    ThreadProc1 declared in NewSerialPrint.h


    private:
    static UINT WINAPI ThreadProc1(LPVOID lpContext);

    and in NewSerialPrint.cpp as(otherwise it makes so...
  19. Replies
    5
    Views
    6,959

    Error in Multithread

    I'm following MFC in VC++.net 2008...
    I'm using threads in my codes. The code declared as



    public:
    DWORD WINAPI ThreadProc(LPVOID lp);

    and
  20. Replies
    7
    Views
    5,829

    Re: Code Using Multithreading

    I've declared the thread function as public only..

    Sorry 2 say,it's my first VC++ project. So how may I use WinThread().... plz. and will it fix the error coming.

    In my developing tool,have to...
  21. Replies
    7
    Views
    5,829

    Re: Code Using Multithreading

    Static means I have to declare all the variables n member functions as static. Am I right?

    thatś not easy.... So scope out of class means. Should I declare it as private???
    plz specify??
  22. Replies
    7
    Views
    5,829

    Re: Code Using Multithreading

    Sorry i was in hurry when I posted that..

    Am reposting my exact codes..Plz help me.



    void CNewSerialPrintDlg::OnBnClickedReceive()
    {
    // TODO: Add your control notification handler code...
  23. Replies
    7
    Views
    5,829

    Code Using Multithreading

    This is my first program in VC++.net. Am developing a GUI appln tool for receiving datas from a Processor based PCBs. Here i have to use Multithreading. I've no previous experience on using Thread....
  24. Replies
    3
    Views
    3,107

    Re: .exe file is not loading

    I was copying to another PC only..not on another folder...

    It is asking for Application configuration. What is it??
  25. Replies
    1
    Views
    3,004

    Convert to uppercase(Capital Letter)

    In my code I want to convert a CString to uppercase,if it is in lowercase.



    CString nName;
    m_cmdtxt.GetWindowText(nName);



    The user entered nName to be in Uppercase only when am...
Results 1 to 25 of 59
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured