Search results for query: *

  • Users: John H.
  • Content: Threads
  • Order by date
  1. J

    RichTextBox vbLF problems

    I am trying to create a viewer for files with large (sometimes over 2,000 characters) records. I want to use the rich text box control and show a given record in rows of 100 characters each. I have set the font to Courier New and sized the RTB appropriately to show the records correctly...
  2. J

    VBEx .net use of .dll

    I'm trying to create a .dll in VB Express with multiple functions and subs. For the .dll program, I create a class module with: Public Class Class1 Public Function ReturnOne(ByRef MyVar As Integer) As Integer MyVar = 1 End Function Public Sub ReturnString(ByRef MyVar As...
  3. J

    Is file currently being used?

    Don't know if this is correct forum. Please advise if not. I have a program used by a number of people. I store the program .exe on the LAN and have them point a shortcut to it. Works well except when I need to update the file. If I try to move the new version into the directory when...
  4. J

    I keep losing Find/Change box

    Lost the Find and Change functions Not sure if this is the right forum, but . . . After using VB 2008 Express for many months, suddenly the Find (Cntl F) and change (Cntl H) functions no longer work. If I highlight a series of lines and press Cntl H, both the blue bar at the top of the page...
  5. J

    Invoke a SUB named in a string

    I need to invoke a SUB that is named in a string object. Is this possible? ' Delcare the return code variable DIM strReturnCode as string ' Declare the sub name DIM strSubName as string = "MySubName" ' Invoke the sub, passing a return code parameter strSubName(strReturnCode) the SUB is in a...
  6. J

    Multiple form paths don't return correctly

    I have FormA, FormB, and FormC. FormA has a button that takes me to FormB, and FormB has a button that takes me to FormC. When I end FormC (me.hide), I would like it to show FormB, and when I end FormB, I would like it to show FormA. This works fine unless I am at FormC and decide to go...
Back
Top