Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. daverkennedy

    Automate merging Word documents

    Hi, I have a app accessing a database, each record in this database can have a number of Word Document attachements. I would like to merge these attachments into the one document in an automated step. Does anyone have any Ideas how I can tackle this? Thanks in advance.
  2. daverkennedy

    CLlistctrl with buttons

    I had a similar problem, I got a fix, but I dont think its the most elegant solution. You can see my thread here: http://www.tek-tips.com/viewthread.cfm?qid=1202105&page=1
  3. daverkennedy

    Add buttons & sliders automatically

    I would place the code to add controls to your form inside the View class.
  4. daverkennedy

    Embedding a button in CListView

    Thanks for your reply Well I had worked on it a alot last night and got it working by redrawing the button evertime the view was scrolled or resized. Basically i created a new class CMyButton derived from CButton, this class stores the row position(s) the button covers, and redraws to these...
  5. daverkennedy

    Add buttons & sliders automatically

    oh forgot to say, remember to show the new control using pButton->ShowWindow(SW_SHOWNORMAL);
  6. daverkennedy

    Add buttons & sliders automatically

    I would suggest you progamatically create these controls using their create function. You can place these created controls where you like on your form. CButton* pButton; CRect rectPlacement; pButton->Create(strCaption, BS_FLAT, rectPlacement, this, IDC_YOURID); Hope this helps.
  7. daverkennedy

    Communication Serial Port

    Never used mscomm before, but i found the following link very helpful. http://www.codeproject.com/system/serial_com.asp
  8. daverkennedy

    Embedding a button in CListView

    Hi could anyone help me here? I have a SDI ListView app that allows the user to add buttons in the listview... the buttons will also overlap a couple of rows. I use the something like the code below to show the button in a given cell... CButton* p_button; CRect rcNew...
  9. daverkennedy

    Accessing a database on a network.

    Thanks so much. I got a copy of your project last week... it took me a while to get my head round what was happening in the code but now I am well underway in my project.[pc3]
  10. daverkennedy

    Accessing a database on a network.

    Hi all, I still consider myself a newbie and I have quite an ambitious project to undertake. I wish to create an application that sits locally on a pc and can view and update data in an Access database located on a network drive. The database must be accessed by multiple users on multiple...

Part and Inventory Search

Back
Top