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

    cenvert Bitmap to vector markup

    I am looking for some code/object/or other piece of software to convert bitmap images to vector markup. any ideas???
  2. caseye

    Looking for a Control.

    Thanx thats what i am looking for
  3. caseye

    Looking for a Control.

    Does anyone know where I can find a control similar to the outlook folder tree.
  4. caseye

    how to get Flowchart/documentation on existing project

    Microsoft Visio might do what you are wanting to do i think the retail pro verdsion is 200 bucks.
  5. caseye

    total a column in DataGrid

    Try using a standar collection or array when you populate the data grid populate the collection or array as well then if you use a collection you can loop through and add the
  6. caseye

    Checking for a connection...

    If you are trying to connect you can use this Sub conntectToDb() On Error goto eh Dim DBConn as ADODBconnection DBConn.open(connstring) Exit Sub eh: 'error unable to connect End Sub
  7. caseye

    Layer = screen.width

    I am looking for a javascript to resize a layer to the width of the displayed area does anyone know where I can get this
  8. caseye

    Data Grid Question

    BobWMan is right it is either the # sign or % the date must be surrounded by single qoutes and #/%
  9. caseye

    Data Grid Question

    Which line gives you the error
  10. caseye

    Run - Time property creation

    Is it possible to create and add properties to a Class on the fly?
  11. caseye

    Error Handling

    Wonderful post, the file based error logging is a must for any type of program.
  12. caseye

    adodb connection problem

    Try dbs.LockType = adLockPessimistic
  13. caseye

    To Bind or Not To Bind?

    I am new to databound controls and even i can see that binding these controls to a data source it seems to be point less this method goes against the concet of OOP why have many different controls bound to different data sources when you can have 1 that can be used for all recordsets. Just my...
  14. caseye

    Object Instance from Class Module

    how do i create an bject in an exe
  15. caseye

    Object Instance from Class Module

    It is adding the same objects to the collection how ever there are several different object collections each containing a collection of a particular object. thats the intent anyway. that is the reason for the tempObj. that way i dont have to create a temp variable for each type of I am New to...
  16. caseye

    Object Instance from Class Module

    Also when I try it the way you specified i get a type mismatch error.
  17. caseye

    Object Instance from Class Module

    If you have a better way i am all ears
  18. caseye

    Object Instance from Class Module

    I am trying to create an objet from a class module in the same project And I dont know If have the syntax right because after i create it i can not access the public properties I know the class module works because i can create it at declaration but i dont want to do that here is what i am...
  19. caseye

    How to rime Letters off a string

    Sure did.
  20. caseye

    How to rime Letters off a string

    thank you

Part and Inventory Search

Back
Top