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

Search:

Type: Posts; User: manjut19

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    2,499

    Re: Setup program for a win32 application

    My project manager asked me to do with MSI
  2. Replies
    7
    Views
    2,499

    Re: Setup program for a win32 application

    I heard abou MSI in visual studio & i tryed to make a setup program for my win32 application by reading document about MSI...
  3. Replies
    3
    Views
    1,413

    Re: Scrolling of a staic text

    Ya that is good methode.I forgot about read-only edit control .thanks alot

    Thanks & Regards
    Manju
  4. Replies
    3
    Views
    1,413

    Scrolling of a staic text

    Hi
    I am working on a win32 application.i want to load some file contents in to a window(or dialog box).
    So what i did is ,created a dialog box and inside that box on a static control using...
  5. Replies
    3
    Views
    1,474

    get data from input stream c++

    #include <fstream>
    #include <string>
    using namespace std;

    ifstream inf("file name");
    string line;

    while (inf.good()) {
    getline(inf, line);
    }
  6. Replies
    7
    Views
    2,499

    Re: Setup program for a win32 application

    I am not understaning what is that.& what i have to do.Please Give me some idea about this...
  7. Replies
    7
    Views
    2,499

    Setup program for a win32 application

    hi,

    I have an application based on WIN32 API , VC++(2008).I want to create a setup program for this application,Currently application is running on any other PC(Other than Development PC)by...
  8. Re: Sending a text file to the printer using win32 API

    Thank you for your kind replay.Its working now

    Thanks & Regards
    Manju
  9. Re: Sending a text file to the printer using win32 API

    unicode
  10. Re: Sending a text file to the printer using win32 API

    How to convert std::string to LPCWSTR.
    if(!(TextOut(hPrinter,100,100*iI,line,wcslen(line))))
  11. Re: Sending a text file to the printer using win32 API

    If iam calling StartPage/EndPage multiple time multiple page can print.But i don't know howmany lines will be there in 1 page.How to get that number?Is it printer depended or programatically setting ...
  12. Re: Sending a text file to the printer using win32 API

    I tryed with wcstok to split the text file content line by line .


    memset( &di, 0, sizeof(DOCINFO) );
    di.cbSize = sizeof(DOCINFO);
    di.lpszDocName = (LPCTSTR)TEXT("Printing Test"); ...
  13. Re: Sending a text file to the printer using win32 API

    Thanks for your great comment.I tryed that sample code with PrimoPDF and i can generate a pdf file also.Next my question is how to pass a file(text )content into the TextOut function.Any help would...
  14. Sending a text file to the printer using win32 API

    32213Hi all,
    I got a project in that,Text file creating by application should get in to print.So i want to send the text file to the printer using win 32 API.I don't have any idea about Printer...
  15. Replies
    11
    Views
    3,235

    Re: Compiler optimization problem in VS 2008

    My problem got solved.that is because of,I was using a string copying function in Search function.I was using wcscpy()instead of wcscpy_s().Thanks for all for your valuable reply
  16. Replies
    1
    Views
    1,016

    List view scrolling information

    Hi ,
    In my win32 application,I have a list view inreport style.I want to know scrollinf information of the list view,So how to catch LVN_BEGINSCROLL. & LVN_ENDSCROLL?


    BOOL CALLBACK...
  17. Replies
    11
    Views
    3,235

    Re: Compiler optimization problem in VS 2008

    SearchEntry Function will saech the passing string on a Array of string suppose

    TCHAR *p[]={_T("abc"),_T("xyz"))

    SearchEntry function search string abc into this array p.
    "correct entry"means...
  18. Replies
    11
    Views
    3,235

    Compiler optimization problem in VS 2008

    Hi all,
    I am developing a win 32 application on Visual studio2008.In realease mode with compiler optimization disabled ,my application working fine.But,in maximize speed(Compiler optimization field...
  19. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    Thanks alot.My code is working fine now
  20. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    One more qustuion,After Getting the index of searched item ,i have to make it as selected,But the same time previosly selected row should be deslected.How to deselect a perticular row?

    if...
  21. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    Ok,Thanks alot I will try for that
  22. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    Ya,i done mistake,I was written wrong.It should be hWndListViewSymbol.Thanks alot.But one more thing how to search subitems in a list view control,as like item saerching?
  23. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    In a watch window while debugging that "lpfr->lpstrFindWhat holding a value 3
  24. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    Ya i debugged the code,32099
    Suppose in Find text box i am giving a value 3 means lpfr->lpstrFindWhat
    holding a value 3,but ListView_FindItem() returning zero only,it supposedto return 2 right??
  25. Replies
    15
    Views
    8,349

    Re: Item search in Listview control

    LPFINDREPLACE lpfr;
    if (message == uFindReplaceMsg)
    {

    lpfr=(LPFINDREPLACE)lParam; if (lpfr->Flags & FR_DIALOGTERM)
    {
    HdlgFindOrReplce = NULL; ...
Results 1 to 25 of 77
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured