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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ghobbes98

  1. ghobbes98

    Checking exe status

    I wanted an appliction to run periodically that goes and checks to see if an exe is still running. If the exe is not running that I want to be alerted to the exe falling over. Any suggestions of something that would return back true or false if given an exe name whether it was running or not
  2. ghobbes98

    Selecting x amount of rows from a table no search criteria

    I was wondering how to get say the first 10 entries from a table? There are no critera to search by. So just return the rows. is it possible to do some select statement Sorry if this is a very basic question but relatively new to this Hobbes
  3. ghobbes98

    sending e-mails from vb

    I want to send an e-mail from a vb application. Currently I am using the following code that was given to me Set olapp = CreateObject("Outlook.Application") Set oitem = olapp.CreateItem(0) With oitem .To = strRecipients .body = strContent .Send End With however I do not...
  4. ghobbes98

    Dictionary object

    I am trying to create a dictionary object with the following code Set d = CreateObject(Scripting.Dictionary) but I get method or date member not defined however I have microsoft scripting runtime referenced which should allow me to create a dictionary object. scrrun version that I have is...
  5. ghobbes98

    unescape method

    thanks thats a great help Hobbes
  6. ghobbes98

    unescape method

    I was wondering if there is anything in vb that can do this for me. I have to unescape a string that is being put into a database from somebody using jscript. I have tried looking up the help in vb documentation to no avail. Any suggestions would be great Thanks Hobbes "you can't outrun...
  7. ghobbes98

    Date Comparison

    I have a store procedure at the moment where I pass in a date and if the value in field is equal to this date I want to pass it back to the user. However I only pass in the date as "24/6/2002" but the date in the record might be "24/6/2002 10.37.30" so it never returns back...
  8. ghobbes98

    Automating package and deployment wizard

    I was just wondering if it is posible to automate this process. I was to use this visual studio tool to package a program and I was wondering if anybody has tried to automate this apart from having to click through. I already know all the options that I want to choose. It is so that it can...
  9. ghobbes98

    Capturing Charts

    I am using the mschart and I was wondering if there is any way of saving the chart that is produced out of this without having to do a screen grab. I want to do a number of different charts to describe the situation of a system Any help would be great Thanks Hobbes
  10. ghobbes98

    calendar

    Does anybody know of any sort of calendar chooser that is available? I just want to let the user enter a date and instead of getting them to enter the dates and then having to validate the dates I was wondering if there was any handy little add ins that pop up let the user flick through a...
  11. ghobbes98

    date manipulation

    excellent very helpful mate thanks Hobbes
  12. ghobbes98

    date manipulation

    is there any simple way of getting a date 30 days previous to a given date. so if i get given a date 30/4/2002 I want to get 31/3/2002. Thanks for any help hobbes
  13. ghobbes98

    Using Datagrid

    I knew that it was something like that and thanks for the answer however I want to use this more then just his once so I was looking to learn how to use it fully
  14. ghobbes98

    Using Datagrid

    I am looking to use a datagrid to view some info from a database but I want to filter the information but do not know how to do this as the book that I am using is so helpful it does not quite cover something as practical as this Does anybody know of any good tutorials that they have used for...
  15. ghobbes98

    tye mismatch for unknown reason

    I have created a database and when I try and connect to it I get a type mismatch error Here is the very simple code that I am using Private dbworkspace As Workspace Private dbDatabase As Database Private dbTable As Recordset Private dbName As Field Private dbNumber As Field Set dbworkspace =...

Part and Inventory Search

Back
Top