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: QTip
  • Order by date
  1. QTip

    view 10 records per page

    Yes I can try that. But it are a lot of records I have, almost 30000. Wouldn't that be to big to use in a array? Let me know what you think! If the performance is good for that kind of array then it's a good solution. Thnx for the reply!
  2. QTip

    view 10 records per page

    Hi GaryC132, thnx for your reply. I may have explained it wrong. I get the data directly from AS/400 into a string. I don't read the data from a file. Sorry for the bad explination. I have one way that works. Right now I get a certain amout of data into a string, I start cutting the string...
  3. QTip

    displaying XML string via ASP

    add this in your asp page: <?xml-stylesheet type=&quot;text/xsl&quot; href=&quot;<your stylesheet>&quot; ?> I did it like that and it work. good luck!
  4. QTip

    view 10 records per page

    yes I know. I know how it works with recordsets and database stuff. But I'm not reading from a database. I'm reading from a sort of txt file where all the data is kept on one line. The &quot;|&quot; is the line delimiter. I know the URL you gave me, but that's all with recordsets and...
  5. QTip

    view 10 records per page

    Hello, this is the situation: I have a sort of text file with an unknown amount of data. This data has delimiters. ex: dkmqlsgfkjqsldfj|lqkjqslkfj|lksdjf|lkjslkfjlq|. Now I show them on the screen like this: dkmqlsgfkjqsldfj lqkjqslkfj lksdjf lkjslkfjlq ok for now, but I want to show the first...
  6. QTip

    show a certain data per page

    Hello, I have a file with lot's of data (sort of txt file). The data is as following: ldfjmlkjf|lqkjqkjfq|nsbvcncb|mlksdflmq| ... what I mean, there are delimiters &quot;|&quot;. I made a asp script that cuts the data in parts and puts it in a xml file as following: <client> <dossier>...
  7. QTip

    DataGrid Click Event

    thnx CCLINT, I wish I knew that when I was having these problems with the Datagrid :). At least now I know, so next time it will be much easier. Thnx!
  8. QTip

    DataGrid Click Event

    If you work with a database, you can use something like this: Dim cell1 as String Private Sub DataGrid1_SelChange(Cancel As Integer) DataGrid1.Col = 0 cell1 = DataGrid1.Columns(DataGrid1.Col).Value search_data (cell1) End Sub Public Sub search_data(data As String) rst.Open...
  9. QTip

    ftp session

    ok, something extra :) When the data is being send, the date in the source directory gets deleted. Otherwise the source directory will get way too large. ok until this point. But I want to have a control on it. When there is an ftp error and the file has not been send, the source file can't be...
  10. QTip

    ftp session

    the Do While Inet1.StillExecuting = True did it. thnx man!!
  11. QTip

    ftp session

    ok, I found a way that works: With Inet1 .Cancel .Protocol = icFTP .URL = &quot;ftp://hostname&quot; .UserName = &quot;login&quot; .Password = &quot;password&quot; .Execute , &quot;PUT c:\temp\design.txt /test/design.txt&quot; End With But offcourse, this is not the...
  12. QTip

    ftp session

    ok, I'll try that. But isn't there any possible way for working with Inet? Because the others aren't for free... and you know how bosses are... &quot;make it work, ... and use the software we have!&quot; Frederico, I've tried your solution, but it still doesn't work. I don't get any error...
  13. QTip

    ftp session

    Hellow, I need to open an ftp session in VB6 and send some files to that FTP. I already searched the site here for solutions, but those I found didn't work for me. I use the Inet component. I tried it as following, but nothing works. Can somebody help me, thank you! Private Sub...
  14. QTip

    database question as400 - sql

    No, I'm using logical files. But even on the most simple query (select [data] from [table]) it's very slow. Any solutions?
  15. QTip

    database question as400 - sql

    hmm... doesn't anybody have any idea about this?
  16. QTip

    notes database on intranet

    thnx man! Gonna check it!!
  17. QTip

    database question as400 - sql

    Hellow, I have to make a website (application) where the data has to come from an AS400 database. I already tried a direct connection (ODBC and OLEDB) via Client Access between AS400 and the asp page. I notice that when my sql statement becomes more complex, the request for data is very slow...
  18. QTip

    notes database on intranet

    hello, I'm not really familiar with lotus notes. I just use it as end-user. But I'm developing an intranet. We have a database in Lotus (phone numbers) that we would like to access on the intranet. Can I connect to it via ODBC or something? And how can I do that? thnx!!
  19. QTip

    filling an array ... problem

    no, I'm sorry ... I dim like this Dim arrX(100) and he still gives the same error. Thnx anyway!
  20. QTip

    filling an array ... problem

    this might help: the array should normally not be bigger than 100. It is possible, but very unlikely.

Part and Inventory Search

Back
Top