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 wOOdy-Soft 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 hecktic

  1. hecktic

    get content of char

    Ok i'll try to look into it when i get home. Rewriting node class is not an option.. i'd say that's my main problem :). This inserting in a bst thing is for an assignment... i HAVE to use the code given, cannot write my own code to implement the BST. And the bst is a class that inherits from...
  2. hecktic

    get content of char

    myBST = BSTusers, typo sorry. Not the cause of my problem.
  3. hecktic

    get content of char

    Hi, I have a program that must read from a file and insert each line into a binary search tree. I've already written all needed code to read from file and insert into the tree. My problem is that when i get the data from the file and insert into the tree, the data is not inserted.. but it's...
  4. hecktic

    How to display error message on the same form page???

    I use html forms (built using asp) with javascript. I validate the form and display error messages in a DIV. This does not require the page to be reloaded, does not erase anything in the fields, and you can put the DIV wherever you want in the page. DIV: <div id='layerErrMsg' align='center'...
  5. hecktic

    Using 'Format' in a query....

    Try: select month('2003/08/01') will return 8 select datename(month, '2003/08/01') will return August
  6. hecktic

    Line breaks in a TextArea box of a form

    use &quot;vbCrLf&quot; i.e. strLine1 & vbCrLf & strLine2 & ...
  7. hecktic

    Creating a back button...

    You can try using javascript: history.back() or history.go(-1) ... something like that. Not sure about vbscript.
  8. hecktic

    Need MAJOR help -- read txt files and writing to a database

    check out http://www.w3schools.com they have good examples/tutorials on how to use the file system object to read files/directories using asp (vbscript) and also how to connect to a database using asp.
  9. hecktic

    VBScript SQL 2000 Server Connection

    [...] set cnn = server.createobject(&quot;adodb.connection&quot;) set rst = server.createobject(&quot;adodb.recordset&quot;) cnn.open &quot;server&quot;, &quot;username&quot;, &quot;password&quot; rst.open strQuery, cnn [...]
  10. hecktic

    Refreshing data in a label box

    i've never heard of that, so don't know. But i don't understand what's you're trying to do. You're retrieving data from using the dll and displaying it in the label. And you're only showing that data for a couple seconds??! Can you elaborate?
  11. hecktic

    Refreshing data in a label box

    the syntax is simple yourLabel.Refresh if you type &quot;yourLabel&quot; and &quot;.&quot; [dot], a list should show up... and choose &quot;refresh&quot;.
  12. hecktic

    Refreshing data in a label box

    did you try &quot;label.refresh&quot;?
  13. hecktic

    Controling the Internet Connection

    You could ping your online site. And if the ping gives a reply... you could open the forum else write an alert(&quot;No internet connection&quot;); Just a suggestion.. i've never tried that :) I've only used ping in vbscript.. but i think you can use shell commands in javascript.
  14. hecktic

    print cr chart with patterns

    well, it can be done using: Report.Graph.GraphColor = crBlackAndWhiteGraph But that messes up all the graph's formatting. Didn't find out how to fix that yet... there's no many options.
  15. hecktic

    print cr chart with patterns

    There is no Analyzer in the report for VB6. Can it be done using code?

Part and Inventory Search

Back
Top