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

    Execute without user knowledge

    Sounds like itll do the job. Thanks. star for the link ~*Gwar3k1*~ "To the pressure, everything's just like: an illusion. I'll be losing you before long..."
  2. gwar2k1

    Execute without user knowledge

    Okay, that sounds a little dodgy maybe I should rephrase: Execute in the background with no indication of execution, although the user has installed and accepted the licence agreement... Im running a program that keeps a track of a persons hours worked. I need to be able to check the date...
  3. gwar2k1

    moving frames

    Im glad you found a good solution =) And thankyou for the star! ~*Gwar3k1*~ "To the pressure, everything's just like: an illusion. I'll be losing you before long..."
  4. gwar2k1

    Visual Basic is Kidding me?

    Maybe the apps load too quickly to make a difference. I run AdAware on startup but it loads too quickly and thus doesnt perform the scan properly, i have to run it manually. this could translate to you, maybe the apps load before a required dll or something is loaded? ~*Gwar3k1*~ "To the...
  5. gwar2k1

    moving frames

    sorry another solution would be to open a new window that isnt resizable using javascript: <a href="framespage.html" onclick="window.open(this.href, 'popupwindow', 'width=500,height=390,scrollbars=0,resizable=0'); return false;"> ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an...
  6. gwar2k1

    Run-time error '458'

    youre retrieving something you should be inserting... get file#, fileIndex, fileRecord if im right, you'll need to set a variable as the file structure in your datafile Type YourRecord as record ... InString as String ... end type dim MyRec as YourRecord get #1, (maths), MrRec.InString...
  7. gwar2k1

    Visual Basic is Kidding me?

    clear the contents of your startup folder. i assume youre using win 98 maybe older? C:\Windows\Start Menu\Applications\Startup or similar ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  8. gwar2k1

    moving frames

    okay i checked up on the javascript theory and you cannot resize a frameset in the way you want. if iframes cannot be used as an alternative, what about using a table and server side includes (SSI) or at least put a frame inside a table's cell <table> <tr> <td> <!--#include...
  9. gwar2k1

    moving frames

    Ive just been on w3's site looking at frame info, it doesnt look like you can do what you want with the old html. i think you should post in the javascript forum (forum216). Sorry I couldnt help =( hope you get it sorted ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion...
  10. gwar2k1

    Clearing the HTML page

    did you not see my post about meta refresh? you could write a javascript for <body onload="refresh"> but i dont see the point... why load a page only to instantly refresh it? thats a waste of bandwidth. what are you trying to achieve ~*Gwar3k1*~ &quot;To the pressure, everything's just like...
  11. gwar2k1

    moving frames

    redflag this if you think it appropriate but i dont work with traditional frames so genuinely wouldnt know: cant you use pixel units in the col attribute of the frame tag? ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  12. gwar2k1

    Clearing the HTML page

    for: usefulness and multiplatform code ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  13. gwar2k1

    Clearing the HTML page

    Still not fully understanding your question. Do you want the page to automatically refresh to get rid of the two tables and display the third instead? maybe this could be translated to your desires: thread215-751526 do a keyword search for "meta refresh" ~*Gwar3k1*~ &quot;To the pressure...
  14. gwar2k1

    moving frames

    sorry for some reason i thought a frame of a table. forgive me. if you use an iframe you can apply the style attributes. but if youre set on the normal frame, im willing to look it up for you ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before...
  15. gwar2k1

    Clearing the HTML page

    How do you mean? Like when a user clicks a button or automatically? If its automatic, why not just delete the tables from your code in the first place? ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  16. gwar2k1

    Validating form text boxes after a button is clicked

    sub command1_click if validateform = true then call your_next_sub end if end sub Function ValidateForm As boolean validateform = true If txtAddress1.Text = "" Then MsgBox "You must enter a value in Address 1" & vbCrLf & _ Err.Description, vbExclamation, "Data entry error"...
  17. gwar2k1

    moving frames

    okay so: style="height: 10px; width: 10px;" if you use pixels as your units it keeps the element that size no matter what the browser's size is ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  18. gwar2k1

    Problem with OnClick Event

    forum215 - ASP forum216 - Javascript ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  19. gwar2k1

    moving frames

    yep: <table style="position: absolute; left: 100px; top: 50px;"> ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;
  20. gwar2k1

    How to tell if a list box has been clicked

    Cool thats great =) ~*Gwar3k1*~ &quot;To the pressure, everything's just like: an illusion. I'll be losing you before long...&quot;

Part and Inventory Search

Back
Top