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

    Hello, I need help with a SELECT

    Well, I checked, but Last() is not the correct way of getting the row.
  2. dianal

    Hello, I need help with a SELECT

    Correct. SELECT RecType, Max(Col3) FROM tblMy GROUP BY RecType; If you need also Row, try this: SELECT Last(Row), RecType, Max(Col3) FROM tblMy GROUP BY RecType;
  3. dianal

    Hello, I need help with a SELECT

    Yep, my mistake - last minute change :) SELECT Row, RecType, Max(Col3) FROM tblMy GROUP BY Row, RecType; If you do not need row,you can saely delete from select and from group by.
  4. dianal

    Hello, I need help with a SELECT

    SELECT Row, RecType, Max(Col3) FROM tblMy GROUP BY RecType;
  5. dianal

    Consistant Next Button

    One option: Use a global variable nextpage and set in your pages accordingly. Script will remain the same. <html> <head> <title> 1 </title> <script language=&quot;JavaScript&quot;> nextpage = 2 function mynext(){ strNextpage = &quot;MyTour&quot; + nextpage + &quot;.htm&quot;; document.location...
  6. dianal

    unable to pass two parameters to a VB script function

    Give it a try: <INPUT type=button NAME=&quot;TEMP&quot; onClick='EG &quot;aaa&quot;,&quot;sss&quot;'> calling function with parameters is without parenthnesses
  7. dianal

    Opening and closing the child windows, if the parent window is closed

    The check should be: if(window.winArray[i] != null && !window.winArray[i].closed) not as typed: if(window.winArray[i] != null && !winArray[i].window.closed)
  8. dianal

    Problem with menu

    I've bothered to check your code and found the error: Definition of functionin menucode.js is: function cm_makeMenu(name,parent,text,link,target,width,height,<other params>) You use in your menu.js like: oCMenu.makeMenu('sub01','top0','<p align=center>Board...
  9. dianal

    Executing asp

    I got your question. As far as I know you cannot do this due to security reasons. May be I'm wrong. I would suggest to rethink your task and use another approach - may be putting what you need in function in file 1.asp and the use directive #include in 2.asp and use the function you need there...
  10. dianal

    Executing asp

    Try concatenation operator instead of = (or response.write) str_HTML = &quot;<img='&quot; & str_filename & &quot;'>&quot; response.write str_HTML
  11. dianal

    ASP page will not write to access database

    Did you open datbase for editing in MS Access? If you open it, first close it then try the query.
  12. dianal

    Reference Number... pls help!!!

    Hello, Your task could be better solved with server side using a database. If you do not have database it will be usefull to have a file to write to at server side. If it is only client side it will be very difficult to achieve the result you want. Please specify your problem.
  13. dianal

    ecommerce solution with huge data

    It always pull all you asked for in your SELECT statement. Use something like this: //select top 25 will return only 25 records and it will be quicker! //the code is metacode - you'll have to adjust the syntax pageSize = 25 //next page myCommand = &quot;SELECT TOP &quot; + pageSize + &quot...
  14. dianal

    Setup nt workstation fom w2k server

    On small pc - win nt workstation has to be installed. If it is possible only W2k professional to be installed, I have to buy new licences, but I'll persuade my boss. Thank you.
  15. dianal

    Setup nt workstation fom w2k server

    Hello all, Sitiation is the following: I have set up an W2K advanced server as PDC. I also have 12 machines with NT workstation on them. Unfortunately only one of th eworkstations has CD-ROM. On one of the others (CD-ROM-less) something went wrong and I need to reinstal the software. Is there a...
  16. dianal

    Use Javascript to Clear previous two history entries

    You can't do that - it will break browser security. Try some different methods - like not writing into brwoser history (in javascript you can use location.replace(url) or location.href=url ) or disabling back button.
  17. dianal

    Why no votes???

    Hello, I have worked for a while with brinkster - nice service. Only db directory has the permissions to write. in you r code you use \stevehigham\db\steveData\Poll.mdb - move the database in db directory and set to db/Poll.mdb - it should work.
  18. dianal

    Need to add text to textbox named '.Send' - Can this be done?

    Check this snippet <html> <body onLoad=&quot;document.forms[0].elements['.Send'].value='New text'&quot;> <form> <input type=&quot;text&quot; name=&quot;.Send&quot; value=&quot;Initial text&quot;> </form> </body> </html>
  19. dianal

    passing a variable

    Event handler onSubmit works only with real submit. You have to change the type: <input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;submit&quot;> They look the same, but their functions differ. Hope that helps.
  20. dianal

    Copying text from a Web Page to Word

    Your question is not very clear. If you want at the end of your page to have a button that copies all the text and then paste in a new Word document, solution is one. If you want to have an input box where user can type an address and then press a button to copy the text from that addres and...

Part and Inventory Search

Back
Top