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. RoyLofquist

    SQL query with apostrophe

    The function SqS returns a proper SQL expression for any string - e.g. SqS(&quot;O'Connor&quot;) -&gt; 'O''Connor'<br> <br> SQL= &quot;Select * from Tbl where Name = &quot; & SqS(&quot;O'Connor&quot;)<br> <br> Cut and paste this code into VB IDE to read it - &quot; and '' look the same in this...
  2. RoyLofquist

    Must forms reside in the .exe or can I place then in .dll?

    VB Project: ActiveX DLL<br> <br> The Form: frmMyClass<br> <br> Option Explicit<br> Public FMyClass as CMyClass<br> <br> Private Sub Form_Load()<br> With FMyClass<br> txtName = .Name<br> txtDescription = .Description<br> ......<br> End With<br> End Sub<br> <br>...
  3. RoyLofquist

    ADO 2.1 Error - No value given for one or more required parameters

    Delete * from ..... is improper syntax.<br> You must say: Delete from.... <br> The * is redundant.<br> <br> ADO is a work in progress. That is a polite way of saying that it is half-baked. In particular the error reporting is at best misleading and at worst a bad joke. Try putting eleven...
  4. RoyLofquist

    Rich Text

    I have RTF in a Memo column - Crystal chokes - how do I handle this other than writing a DLL&gt; <p>Roy Lofquist<br><a href=mailto:roylofquist@msn.com>roylofquist@msn.com</a><br><a href= > </a><br>
  5. RoyLofquist

    Is there a way to read/write in to NT registry?

    You must have local machine administrator privileges. Depends on what kind of a guy your network mgr is.
  6. RoyLofquist

    Rounding the numeric variable (declared as double) up to n digits

    function RoundNumber(NumberToRound as Double, Places as integer) as Double<br> dim Mask as string<br> Mask = &quot;000000000000000000.&quot;<br> Mask = Mask & Left(Mask, 1, Places)<br> RoundNumber = cdbl(Val(Format(NumberToRound,Mask)))<br> exit function
  7. RoyLofquist

    Standard windows dialogue for selecting a folder?

    The following class allows you to specify the starting folder and filter(s). For multiple choice folders I would suggest a local DB (.mdb?) to save your favorites.<br> <br> <br> Option Explicit<br> <br> Private Type OPENFILENAME<br> StructSize As Long<br> hwndOwner As Long<br>...
  8. RoyLofquist

    Intercept Help (F1) key to replace MS Help system

    How can I intercept the MS help call (F1 key) so that I can use my own help system?

Part and Inventory Search

Back
Top