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 bkrike 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: testare
  • Content: Threads
  • Order by date
  1. testare

    Quick Excel question

    Is it possible to export data from a recordset to excel? If so do you know any links that can i help me getitng started? Of course it should be in ASP
  2. testare

    Response.write

    I only have this code. How can i get the value that i typed in the textarea to be printed with Response.Write Request.Form("text") <%Response.Write Request.Form("text") %> <textarea name="text"></textarea> <a href="nerd.asp">link</a>
  3. testare

    OnClick call asp file

    I would like to call the insert action where pressing the button. <%If Request.QueryString ("action") = "insert" Then Response.Write("okok") End If%> <input type="button" value="Post" onClick="cal.asp?action=insert"> I'm i thinking wrong?
  4. testare

    Format + ASP?

    I would like to loop and then show it on the browser. For example 1 should be 01 and so on. I don't want the numbers to be shown like this. 2 3 4 I would like to have the number displayed like this. 01 02 03 04 I noticed that format doesn't work in ASP like in Visual Basic. In vb i do it like...
  5. testare

    Clear querystring in browser

    If i use this code below, in my browser the address would be like this admin.asp?action=login I want to clear the the querystring after it has finish the page or something else in the browser address link <form action="admin.asp?action=login" method="Post"> <input class="FormPassword"...
  6. testare

    Loop problem, i think

    Error message that i get i ADODB.Field (0x80020009) Either BOF or EOF is True, or the current record has been ... In table1 there is a primary key on ID. In table2 there is no primary key on ID. If i remove the loop then it works Set Conn = Server.CreateObject("ADODB.Connection") Set rs...
  7. testare

    Find specific text in a file

    I have 3000 files that i would like to get a specific text. It is always at the second line of the files. The textfiles are always something like this. 01,04,01,00012, 2005-07-25 11:40:08, 2005-07-25 21:02:00, 0 02,100,111,"2",112,"2",113,"60064","2005-07-25" I would like to...
  8. testare

    ado problemem new to .Net

    Today i sat down to for the first time to look at Visual Basic .Net I Notice that my Set is being disappear when i type Set Conn = CreateObject("ADODB.Connection") becuase then i want to use a recordet set Dim Conn As ADODB.Connection Dim Rec As ADODB.Recordset Dim sSQL As String Conn =...
  9. testare

    Difference between Enterprise and Prof.

    I was wondering what is difference between Visual Basic 6 Enterprise and Professional?
  10. testare

    loop file & find text and move

    Hi, I would like to loop to a specific folder. Then i would like to rename the files from .dat to .txt because then to find a specific text and if i find then move it. i've started with this code but doesn't feel good. Dim fso As FileSystemObject Set fso = New FileSystemObject...
  11. testare

    webbsite menu

    Hi DNG, DNG i know you can help me with this question. Is there a webbsite that have free code for menys like http://www.jx.se
  12. testare

    Works with IE but not with FF

    If you look at this link http://www.wilder-films.co.uk/meny/Untitled-4.htm with it will look okey with IE, but if i use FF it looks like s**t. body { clear:both; position:relative; width:37px; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; margin: 0 01px 03px...
  13. testare

    .Net and Vb6 on same machine?

    I Wanted to learn .Net so i installed .Net on one of my laptops. On my other laptop i have my Visual Basic 6 projects. My question is on the computer that i have .Net can i install VB6 and no problem should exist?
  14. testare

    Div help?

    Can anyone help me making the same middle div as this webbsite http://www.designit.com/pages/sitemap.asp I only need the middle line. Hope you understand which line im talking about.
  15. testare

    Disk Problem!

    I was helping my friend today because he had an error that couldn't read the disk. He has all his picture in my documents that he wants. The disk was partioned as two, 1 C: and 1 D: He said that Win XP has warned him for days that he doesnt have diskspace in C:\ and now he cant start windows...
  16. testare

    Table Problem

    I would like to have a table like this. http://www.wilder-films.co.uk/meny/table.bmp I have tried and the best result that i can get is this. http://www.wilder-films.co.uk/meny/table.htm As you se the third table has to get up a bit. <table width="608" height="286" border="1"> <tr> <td...
  17. testare

    Sleep function

    Hi, I wanna make my program do nothing for 45 min. because my program should wait for another program to finish and it takes the other program about 45 min to be done. Should i use Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) or should i use a timer?
  18. testare

    ASP Parser Problem

    Hi, I have a huge problem with my ASP-Parser. Sometimes when i try to connect to my asp file then the explorer is just working and nothing happense. Tried to open a file with the extension .htm (default.htm) and worked perfectly. A sign that the Webbserver is working. Tried then to open an...
  19. testare

    Problem with ASP Parser

    Hi, I have a huge problem with my ASP-Parser. Sometimes when i try to connect to my asp file then the explorer is just working and nothing happense. Tried to open a file with the extension .htm (default.htm) and worked perfectly. A sign that the Webbserver is working. Tried then to open an...
  20. testare

    Move file with &quot;file system object&quot;

    Hi, I have a directory that containes two different file names XXX_0900.xml XXX_0901.xml XXX_0902.xml SSS_0900.xml SSS_0901.xml SSS_0902.xml I would like to move all the XXX files to one directory and then move SSS files to another directory.

Part and Inventory Search

Back
Top