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 strongm 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. Longia

    Need Ad hoc report sample

    Hi Everybody, Had anybody created ad hoc report in crystal reports and ASP If so Please give me some idea about it. Example code would be great. Thanks
  2. Longia

    Creating SQL Server Stored Proc in VB

    Hello Everybody Need to know if I can create stored procedure from vb code. I need this because number of parameters in stored proc is not fixed, it varies as per my logic and every time I run my program I need different parameters so is there a way to create stored proc from VB program and...
  3. Longia

    Function to check value is character

    Thanks a lot for help zemp and Tomkane
  4. Longia

    Function to check value is character

    To be very precise I need a funtion that tells me that all the characters in the field (like "TOMKANE") are actually character not numeric.
  5. Longia

    How to run .bat file on specific time. like task scheduler

    I have a bat file and I want to run it after every one hour. Any ideas about that.
  6. Longia

    Function to check value is character

    Can any body help me with this? I need a function that checks for character value in field.
  7. Longia

    How to execute .cab file in vb

    Hi Everybody I need to know how to execute a .cab setup in vb program thanks
  8. Longia

    How to create Virtual directories through VB program

    Hi Folks Need help on creating vitual directories through VB program in IIS. Thanks
  9. Longia

    Starting SQL Server from VB Code also ......

    This is a module with API function to control NT services Option Explicit '************************************************** '* NT Service sample Control Program * '* © 2000-2001 Sergey Merzlikin * '* http://smsoft.chat.ru * '* e-mail...
  10. Longia

    Passing Pararmeters with Executable

    Hello everybody Any ideas about passing parameters with application.exe to pass values to another application. Suppose I have my application created as Application.exe and I want to pass some values to this application from another application created in Panther or JAM. Can I do...
  11. Longia

    Email

    Contact Sarpreet at 602-506-6391 for code sample
  12. Longia

    Com object Question

    Can anybody tell me how to register com object programatically in VB. I just want to take Com object from CD and resgister it programatically.
  13. Longia

    Can VB6.0 open Eventlog file of windows NT

    Thanks KevinClark I really appreciate that.
  14. Longia

    Can VB6.0 open Eventlog file of windows NT

    Can anybody find code to read Window NT event log file using visual basic? The event files are stored as "Application", "System" and "Security" at c:\winnt\system32\config\AppEvent.evt, c:\winnt\system32\config\SysEvent.Evt and c:\winnt\system32\config\SecEvent.Evt.
  15. Longia

    Sending e-mail through vb6.0

    Thanks johnson
  16. Longia

    Sending e-mail through vb6.0

    Hi everybody Does anybody knows how to send automatic mail messages from VB screen?
  17. Longia

    Question about check box in vb

    Is there a way to control the value of multiple checkboxes simultaneously? I have searched internet for sample code, but found none that worked. I have the code below but very slow and I imagine can be done simpler. Is there a way to create an array of checkboxes? Could you suggest things I can...
  18. Longia

    can not delete record using delete query in VB!!!

    Try this if it works. Dim cmd As ADODB.Command strSqlDelete = "Delete from tblPtDiagnosis where admitID='0'" Set cmd = New ADODB.Command cmd.ActiveConnection = conn cmd.CommandText = strSqlDelete cmd.CommandType = 1 cmd.Prepared = True cmd.Execute I don't know how you connect to...
  19. Longia

    Calling screens from other Appllication in VB

    Hi, Does anybody knows if it is possible to call PANTHER Screen in Visual basic. Has anybody ever had done this kind of stuff. Please guide me if so

Part and Inventory Search

Back
Top