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 Mike Lewis 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. Ferlin

    Format Tooltip Text

    Here is the code I am currently using copied and pasted here. Private Sub pbBuff01_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles pbBuff01.MouseHover Dim cb As New clsBuffs("buffers.xml") cb.ParseBuffers() ToolTip1.BackColor = Color.Black...
  2. Ferlin

    Format Tooltip Text

    Anyone have some suggestions on this please. Thanks.
  3. Ferlin

    Format Tooltip Text

    Hello All, I have a tooltip control in my application, and have it displaying what I want, now I would like to format the text a little. I would like to make the tooltip background black with a yellow border. I would then like the tooltip title to be displayed in bold white, and the tooltip...
  4. Ferlin

    Database Empty After Insert?

    AlexCuse and PsychoCoder, Thanks for the replies, I found both very informative, I copied and pasted the code above, and tried to use it, and still no data in databse, I then removed all the image stuff and tried to INSERT a hardcoded 'Test' in the ImageName field, and still no data. I was...
  5. Ferlin

    Database Empty After Insert?

    Hello All, I have been fighting this for DAYS now, I have a picturebox that I place an .png image in, I then have an Update button to add this image to a Database. I have tried severl tutorials on adding images to a database all with the same results. There is no exception throwen or error of...
  6. Ferlin

    Print MDI Child Form

    What I finally did was to add a form and set it's Backcolor property to White, and it's Autodraw property to True, and it's Visible property to False. Then in my module I added the following code: Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String...
  7. Ferlin

    Print MDI Child Form

    strongm, Thanks for the reply. The code in that thread is close to what I have been trying. I have a Print Form menu that the user clicks to print the currently active form. The code in my MDI Form looks like this: Private Sub mnuPrint_Click() Printer.Orientation = vbPRORLandscape...
  8. Ferlin

    Print MDI Child Form

    Hello All, I am using an api call to keybd_event(VK_SNAPSHOT, 0, 0, 0) in order to print a form. The problem I am having is that this is taken a picture of the entire screen, and not just the current active form. Is there a way for me to capture the active mdi child form only and not the...
  9. Ferlin

    How do I select all fields but no duplicates?

    I have an employee database that has year to date information in it, it has a record for each payroll run through the year, which means multiple records for each employee. I need help with an sql statement that will give me all the fields in the table, but only one record per social security...
  10. Ferlin

    Excel and VB6 Help Please!

    Sypher2, Thanks for the reply, the message I was getting was a method failed error, no matter what method I used. I talked to the very first client that I needed to make the changes to the application for, and they had XP and Excel 2000 installed on thier machine, so I upgraded MS Office to...
  11. Ferlin

    Excel and VB6 Help Please!

    CCLINT, I was having the problem on my computer trying to make changes to the source. I upgraded my MS Office to MS Office 2000, since the immediate client that has the database changes just installed Windows XP on thier PC's also and are using Excel 2000. When I did that the program ran...
  12. Ferlin

    Excel and VB6 Help Please!

    CCLINT, Thanks for your prompt reply. I am using the Excel library by referencing it under PROJECT|REFERENCES. The clients have programs that were written in another language running on a AIX (RISC 6000) system, a program on the AIX system takes data from the database there and creates a...
  13. Ferlin

    Excel and VB6 Help Please!

    I have an application that I have been using that exports an ASCII file to Excel 97. The application was running fine. A lot of my clients are still using MS Office 97 on older machines. I upgraded my machine to Windows XP, but installed MS OFFICE 97 on it. Now I am trying to make changes to...
  14. Ferlin

    Excel and VB6 Help Please!

    I have an application that I have been using that exports an ASCII file to Excel 97. The application was running fine. A lot of my clients are still using MS Office 97 on older machines. I upgraded my machine to Windows XP, but installed MS OFFICE 97 on it. Now I am trying to make changes to...
  15. Ferlin

    Error:20599 Cannot Open Sql Server

    RohanP, Don't know if this would be of any help, but did you make sure the client machine had a Datasource Set up (ODBC) for the Database? For instance on Windows XP under the Administrative Services and Data Services. Also when you set up the Report in VB did you check to be sure the Set...
  16. Ferlin

    CRViewer Help

    Hello All, I am using CR8 and VB6 is there a way to tell if the user has actually printed from the viewer? I know there is an event in the crviewer object for the print button click, but the user could just cancel out of the print dialog box that comes up and not actually print. The...
  17. Ferlin

    CR8, VB6 Update Database Info Help

    Hello All, I am in the process of creating a Payroll System in Visual Basic 6. I have just started to use Crystal Reports 8 to do all my reports in. I am working on the Check printing report now, and was wondering if some of you could help me with this little problem. All help would be...
  18. Ferlin

    Please Help with Data Grid

    MikeCox, Well, thanks for your help so far. I'm not sure what is going on, but I can't seem to get past that Invalid Bookmark error when using a class for my datasource. I did it just like they said in the MSDN Library on the topic entitled Using the DataGrid Control with a Class Module...
  19. Ferlin

    At RunTime report is blank.

    Ngolem, I believe he was trying to say he did not understand why the report was blank instead of black. Mattia, you said you are sure that it is not a problem of both the forground and background colors being the same? It almost sounds like that to me. If you can select the information to...
  20. Ferlin

    Time activated MsgBox

    bfalkowski, Hello there, If I'm understanding what your asking for you could drop a Timer Control on your Form and set the Interval property to 60000 which is (1 Minute) the Maximum you can set the property to is 65535. Then add the following code: Dim minutes As Integer Private Sub...

Part and Inventory Search

Back
Top