Search results for query: *

  1. S

    vertical scrollbar DataGrid

    I am using Visual Basic.Net 2003 with an Access 2000 database. An integral part of the program that i'm working on is a DataGrid which I am filling from three different queries, based on the user's input. The Grid properties are coded with specific requirements for each of the queries. I have...
  2. S

    Form Naming

    I resolved the problem byadding a new for with the correct name, copying my code an then deleting the old form from the procedure. While this solution worked I still don't understand why renaming a form caused all of the problems.
  3. S

    Form Naming

    I am using Visual Basic.net 2003. I changed the name of the default form, in a new program I am working on, from "Form1" to "frmCollections". I made the change in both the Project Explorer and the form's properties. When I attempt to run the program I am greeted with an error message "There...
  4. S

    Crystal Reports In Visual Basic 2008 Express

    I am using Visual Basic 2008 Express, Access 2000 and Crystal Reports 8.5 to rewrite an application previously written in Visual Basic 6. I need to fill the report selection formula from Visual Basic and the following code is exactly the same as in VB 6 and works fine...
  5. S

    Test For Changed Text

    I have an application that triggers a string of calculations and other events when the user leaves a text box. What I would like to do is test to see if the text in the box has been changed and if not exit the sub and avoid the events that would normally follow. A simple comparison to nothing...
  6. S

    calculate time

    I am having a similar problem in a timekeeping application. The time values are declared as: dim as DateTime dim dtOut as DateTime dim ts as TimeSpan Times are entered in textboxes by the user andconverted to the DateTime variables This code: ts=dtOut.subtract(dtIn) Results in ts =...
  7. S

    Quick Find/Quick Replace

    PROBLEM SOLVED I noticed asmall enlargement of the border of the Taskbar so I hid the Taskbar and there was the top of the Dialog Box, I simply moved it into the middle of the screen and unhid the Taskbar and it works fine, Thanks again for your help.
  8. S

    Quick Find/Quick Replace

    JohnH Thanks for the response. Unfortunately it didn't help. I reset all the keyboard defaults first and then I checked to see if Ctrl+H shortcut appeared and it does. I guess I have the "unknown problem" you referred to and I don't know where to turn next.
  9. S

    Quick Find/Quick Replace

    Raven65, thanks for the response. Control + H had no response. I think my next step is to unistall and reinststall the program.
  10. S

    Quick Find/Quick Replace

    The dialog box that normally appears when I use the Qick Find or Quick Replace does not appear. It was working find butsuddenly stopped working. I have searched the Microsoft Knowledge Base and help files and have "Repaired" VB without success. Does anyone have any suggestions on how to fix...
  11. S

    Help With Help

    Thanks for the reply. I previouslydid download and run using the "Repair" option. This didn't work. I (reluctantly) uninstalled the program and then downloaded and did a full install, and this did solve the problem.
  12. S

    Help With Help

    Thanks for the quick reply. I have tried to set the Help to search local first and get the message, I have set the option to seach on line first and get the same error. I have Vb express at home and at work. At home it works fine. I'm lost.
  13. S

    Help With Help

    I am using VB 2005 Express edition and can't get any help from "Help". When I click on the Help button and select a subject I get the following message: "You have chosen to use local Help only for Search and F1 results, and the topic could not be found in local Help." This is followed by...
  14. S

    Data Disappears

    Hi I'm working on an application with a lot of In and Out times. The application was originally written in VB 6 and converted to VB 2005 Express. There are a number of Control Arrays in the program, I save the input form into 3 separate Access 2000 tables. If I go back into a form that was...
  15. S

    PrintForm in VB 2005 Express

    Hi Again: Here's another piece of the same problem that JohnH helped me with earlier. The lansdcape works fine but when I try to add margins, it has no effect. Here's my code: pf.PrinterSettings.DefaultPageSettings.Margins.Top = 0.6 pf.PrinterSettings.DefaultPageSettings.Margins.Left =...
  16. S

    PrintForm in VB 2005 Express

    John H Thank you, your code example solved my problem. I'll bet that I spent two hours this morning trying various combinations and none worked until I tried your suggestion.
  17. S

    PrintForm in VB 2005 Express

    I added a PrintForm component and it simplified printing of a form greatly. However, I can't figure out how to change from Portrait(the default) to Landscape. This one line of code prints the form in Portrait: pf.Print '(pf is the name I gave to the Printform control) Thanks,
Back
Top