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

    getting the current position of a recordset

    I'm not really sure how these recordsets work either, but it seems to be depend on the property settings for the Recordset and Command objects before you open the RS - for instance opening a Client-side Keyset recordset with Optimistic locking always seems to allow me to get the correct...
  2. benjaboy

    Printscreen

    Use the BitBlt API command.
  3. benjaboy

    Me

    You could use Me.ActiveControl, which returns a reference to the active control on a form, funnily enough. You can see if its a text box by doing something like If TypeName(Me.ActiveControl) = "TextBox" Then Me.ActiveControl.Top = ... or If Left(LCase(Me.ActiveControl.Name), 3)...
  4. benjaboy

    How can i make the COMPLETE exe file that it runs without any furthure

    No you can't. You NEED the VB6 runtime on the client.
  5. benjaboy

    Date functions

    Also bear the WeekdayName() function in mind, which returns the actual day name string. Make sure you've got the FirstDayOfWeek parameter set properly though.
  6. benjaboy

    can activex dll write to text file??

    Yes it is perfectly do-able, I have done this many times before! See below... <%@ Language=VBScript %> <% Dim s, sTextFile 'create file-system-object Set fs = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) sTextFile = &quot;testfile.txt&quot; 'create text file Set ts =...

Part and Inventory Search

Back
Top