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: *

  • Users: hecktic
  • Order by date
  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?
  16. hecktic

    print cr chart with patterns

    Hi, I have a cr chart in vb6 that shows up in color on the screen. I'm wondering if there is a way to display the report with patterns instead of colors so that it will be clearer when printing the chart. A bit like excel charts. Can this be done in cr? Thanks.
  17. hecktic

    Get Data from Excel

    I use DTS (Data Transformation Services) in sql server to take data from a delimited file and store it in a table. It should work for an excel file too. Once you get your DTS package working you can schedule it on daily, weekly, and monthly basis.
  18. hecktic

    report location changes on its own

    I'm using sql server, not access. But i guess it should work the same. I'll give this a try on monday. Thanks.
  19. hecktic

    !!! Entry point not found

    i tried reinstalling SP6 (6b or somethign) which supposedly has directx3a in it. Nothing. I just reinstalled windows. It's fixed now! :)
  20. hecktic

    outlook reply all

    that sucks!

Part and Inventory Search

Back
Top