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

Search:

Type: Posts; User: RGregoire

Page 1 of 2 1 2

Search: Search took 0.16 seconds.

  1. Replies
    1
    Views
    1,360

    Error 48 Unable to load dll

    Help

    I had created a program about a year ago that among other things it would create a report and give you the option of previewing it, printing it, or exporting it to Excel.

    Back when I made...
  2. Replies
    2
    Views
    1,808

    I suppose you could use the same idea at the end...

    I suppose you could use the same idea at the end of the print routine -


    If Answer = vbOK then
    EndDoc
    Else
    KillDoc
    End If
  3. Replies
    2
    Views
    1,808

    When I had a report that needed to print on both...

    When I had a report that needed to print on both sides of the paper I printed the first page and then used the Message box to, basically pause the print job until the user turned over the paper in...
  4. Replies
    2
    Views
    3,397

    I'e run into this problem many times, especially...

    I'e run into this problem many times, especially when you start a new database without any records in it yet.
    What I usually do is to set up an Error catch for it.

    Ie.

    (At beginning of...
  5. Replies
    2
    Views
    2,876

    Originally I had the DoEvents uncommented. I...

    Originally I had the DoEvents uncommented. I thought that using the DoEvents was causing the problem.
  6. Replies
    2
    Views
    2,876

    Component Request Pending

    I have a program that transfers data from an Excel file to an Access database using DAO.

    The problem I am having is when I'm transferring a large amount of data the program locks up. When I click...
  7. Replies
    2
    Views
    940

    VB5 Program in Windows XP

    I have a customer that is using a VB5 program that I have created. This customer now has Windows XP.

    The problem I am getting is that, apparently the program cannot create a database object to...
  8. Thread: DoEvents

    by RGregoire
    Replies
    6
    Views
    906

    I use the DoEvents when I want to show a...

    I use the DoEvents when I want to show a progressbar (thats on a seperate form) for any long actions I am doing. If I do not add the DoEvents command after each reference to the progressbar, the...
  9. Replies
    0
    Views
    2,791

    VBAWrd8.hlp File

    Hey All,

    Is there anyplace on the web to download a copy of the vbawrd8.hlp file. My 97 Office disks have melted in the sun. (children, you have to love them). Any help is greatly appreciated....
  10. Replies
    8
    Views
    1,497

    I don't know if this is what you are looking for...

    I don't know if this is what you are looking for but, here goes -

    In the Item_Click event you can get the Index of the selected item. You could use a form wide variable to store the index each...
  11. Thread: PopupMenues

    by RGregoire
    Replies
    11
    Views
    1,401

    If I understand right, you would like to get the...

    If I understand right, you would like to get the underlying value from the listview to appear in the popup menu.

    I had the same problem you described where you had to left click first then right...
  12. Thread: expire

    by RGregoire
    Replies
    10
    Views
    969

    One method I have used is to have the application...

    One method I have used is to have the application create a small file with the date that a demo app was installed (encrypted) and stash it in the Windows\System folder or any other Windows folders....
  13. Replies
    2
    Views
    634

    You can also try the InStr function. You could...

    You can also try the InStr function.

    You could loop through each question listed in your database with the InStr function.

    For example -

    Dim Pos As Integer 'Position found in String
    Dim...
  14. Replies
    3
    Views
    1,088

    Its been awhile since I've done any Excel...

    Its been awhile since I've done any Excel programming but you might want to check out the MATCH function in Excel.

    I can remember using it to search and find a value I needed in a list. I believe...
  15. Replies
    2
    Views
    762

    Database conversion

    Does anyone remember that old database program Q&A?

    I have a customer who is currently using that program and now wishes to convert their data to Microsoft Access.

    I know thru VB you can...
  16. Thread: Q & A

    by RGregoire
    Replies
    0
    Views
    453

    Q & A

    Does anyone know how to convert a Q&A database to Access 97 or 2000 database.

    I am currently working on a project that will require converting or transferring data from an old Q&A database...
  17. Thread: Excel

    by RGregoire
    Replies
    4
    Views
    1,042

    Re: Excel

    Utilizing WorkBook Method worked the best.

    Just wanted to say thanks for the help.
  18. Re: ListView Count of Items - is it at all possible?

    ListView1.ListItems.Count

    Thats It - Good Luck
  19. Replies
    2
    Views
    586

    Re: listview/datagrid

    DAO Method

    Dim N As Integer
    Dim DB As Database
    Dim RS As Recordset

    Set DB = OpenDatabase("DatabaseName")
    Set RS = DB.OpenRecordset("TableName",dbWhatever)

    Do Until RS.EOF
  20. Thread: Excel

    by RGregoire
    Replies
    4
    Views
    1,042

    Excel

    Is there a way to open up an Excel file within the excel application itself from VB.

    I would like to open a file (ie. Parts List.xls) from VB, but I want it to be in the Excel application,...
  21. Replies
    3
    Views
    1,101

    Re: How to compare 2 similar strings?

    Dim Pos As Integer

    Pos = InStr(1,s2,s1)

    If s1 is found in s2 then Pos will equal something other than 0. If s1 is not found in s2 then Pos will return 0.
  22. Replies
    1
    Views
    682

    Re: Turn project into Web Application?

    Check out Tegosoft - www.tegosoft.com
  23. Thread: SSTab

    by RGregoire
    Replies
    2
    Views
    606

    Re: SSTab

    Form1.Show
    Form1.ZOrder
  24. Replies
    6
    Views
    1,606

    Re: SSTab control

    Place all 3 tabs on top of one another.

    If you want to work on each tab then right click, choose "Send To Back" until you get the tab you want to work on,

    I hope this is what you were trying to...
  25. Replies
    21
    Views
    6,664

    Re: i have a lib can help you

    rgregoire@yahoo.com

    Thank You for your time and effort.
Results 1 to 25 of 28
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured