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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Craigieboy

  1. Craigieboy

    Maximise new page?

    You can do it by adding JavaScript within the <head> tags of your _blank page. Copy and paste the following... <script language=&quot;javascript&quot;> if (top.frames.length!=0) top.location=self.document.location; self.moveTo(0,0) self.resizeTo(screen.availWidth,screen.availHeight) </script>...
  2. Craigieboy

    Intelligent (?) Page Breaks

    Thanks for the speedy reply - I'll give it a go! Anyone with any other input would be most welcome. Cheers Craig
  3. Craigieboy

    Intelligent (?) Page Breaks

    Hi all I'm hoping someone could offer guidance on an IE page break issue I have. I am producing a report in the browser which is dynamically built from a number of database tables. There is a &quot;front&quot; sheet which is generally fixed in size and will not spill onto a second page. At the...
  4. Craigieboy

    Print Preview in IE6

    Hi all, Is it possible to call the Internet Explorer 6 Print Preview feature from a JavaScript function? I have a popup window without toolbars that's used for printing a document. I need a Preview button that has the same effect as clicking File > Print Preview... in IE. Thanks in advance...
  5. Craigieboy

    Removing spaces above and below forms

    This is annoying isn't it? This way works, but it's assuming that your form is within a table. What to do is move the closing </form> tag outside the </td> but within the </tr>... if you know what I mean. Here's an example: <form... blah blah blah ... ... <br>My text without the whitespace...
  6. Craigieboy

    css styles not showing in style dropdown list

    Guys - the best advice I can give is *not* to use FrontPage to create your style sheets - do them by hand! FP is kinda ok for styles, but I've found that it tends to do some pretty weird stuff. An excellent place to start learning about CSS is www.w3schools.com and click Learn CSS from the...
  7. Craigieboy

    Working with Database

    Mmmm... probably get away with just the section where you connect to the database down to when you call the confirmation page. I'm (perhaps wrongly) assuming that your writing your page with asp/vbscript? Anyhoo - will definately need the database query where you do your insert. Hope I can...
  8. Craigieboy

    Working with Database

    Sounds like you may not be handling your dbase insert correctly. If you post the code up I or someone else can take a closer look for you. Regards Craig
  9. Craigieboy

    JavaScript Valadation

    Hey My advice would be ditch FrontPage validation because it's rubbish. You can use client side validation (JavaScript) or server side validation (Active Server Pages). Probably use JavaScript client side as it cuts down on the number of times you need to make a call to the web server. Join...
  10. Craigieboy

    Submit button and text

    Hi there, You say you haven't touched the code at all. Could your problem be as simple as the Response.Write's are all commented out? Try removing the single quote marks. Alternatively you can use Response.Redirect &quot;thank_you.asp&quot; and go to an entirely new page to say thanks, which...
  11. Craigieboy

    &quot;Cool&quot; popup windows

    Yeah... layers! - - now that I know that's how it's done I went on the hunt and found exactly what I'm looking for at http://www.dyn-web.com/dhtml/write-drag.html. Thanks for the assistance Adam - much appreciated.
  12. Craigieboy

    Image Swap Issue???

    Don't panic my friend! Here's a simple rollover that's sure to work every time. Insert this code within the <head> tags of your page. <script language=&quot;JavaScript&quot;> var imagesLoaded = false; but1_over = new Image(); but1_over.src = &quot;images/button_on.gif&quot;; but1_out = new...
  13. Craigieboy

    &quot;Cool&quot; popup windows

    Hi all Has anyone implemented anything like the cool &quot;floating&quot; windows that appear on www.pixl8.co.uk ? Now, I know that this particular site has been written in Flash, however some time ago I saw a similar website which used popups like this and I am sure it was achieved using...
  14. Craigieboy

    Make my site your home page

    Hi there It sounds like you have pasted the code into FrontPage's NORMAL mode. In FP switch to View Page and click on the HTML tab down the bottom left of the screen. That will then take you into the actual HTML of the page. One thing to watch however is that when you do a copy/paste into FP...
  15. Craigieboy

    verification of email address (comparison)

    Try this - not sure if it'll work as I've not tested it... onSubmit=&quot;FrontPageValidation; return validate(form_name)&quot; ... after the FrontPage validation add a semi-colon then the return validate(form_name) code. Regards, Craig

Part and Inventory Search

Back
Top