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 SkipVought 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. smeyer52

    Finding linked files that are relocated to drive D:

    My fairly simple image database table contains one OLE field of links to image files and other fields that index these images. The jpg images are not stored in the table, just links to them are stored in the table. The actual image files were originally on drive C:, but space constraints...
  2. smeyer52

    Can virtual screen resolution exceed actual display resolution?

    Your comment is helpful. My card is 2048 x 1536 (ATI tech), but perhaps I need to shop for a higher resolution card. I am running Windows 2000, but I'll check out a friend's Linux setup.
  3. smeyer52

    Can virtual screen resolution exceed actual display resolution?

    I want my computer to think the screen resolution is 2500x2500 or higher. For example, SONY makes a higher "screen" resolution than the actual pixel display on some of its notebooks (1280x1024 on an XGA display). Sony displays 1024x768 but then scrolls the additional screen when the...
  4. smeyer52

    Passing values between forms

    Thanks, PankajBanga. That solution worked. Instead of form2 passing the value to form1, which form2 could not see as instantiated, form1 retrieves the value from form2, which form1 instantiated. Also, I was using frm.show(), but it only works correctly with frm.showdialog(). THanks again...
  5. smeyer52

    Passing values between forms

    Thanks, PankajBanga; but the code "Dim as New" creates a new instance of form1 when I already have the original form1 on the screen. So I wind up with two Form1 objects on my screen. I intend for form1 to up form2, but to remain visible while passing focus to form2. Form 2 will...
  6. smeyer52

    Passing values between forms

    Please help me pass a value from form2 back to form1. I am obviously a novice. Form1 has textbox displaying the client's order, and a button to place order. Form1.button_click pops up form2. Form2 displays listbox with multiple choices. Form2 also has button to accept order, which will then...
  7. smeyer52

    Can't conditionally change forecolor of textbox

    if textbox.forecolor = system.drawing.color.green then textbox.forecolor = system.drawing.color.red will not compile. VB.net gives me the message that "operator '=' is not defined for types 'system.drawing.color' and 'system.drawing.color'." with error highlight on the "if...
  8. smeyer52

    replacing the character that is pressed by another

    Thanks for the code snippet. I don't understand VB.net (VB6 seemed much simpler). I modified your code to only allow numeric entries in a text box: Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If...
  9. smeyer52

    Control arrays in Access 97?

    Can I create a control array in Access 97? I can't find any information in the Help files, and my efforts have failed in my form. An access amateur, S Meyer

Part and Inventory Search

Back
Top