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!

Recent content by SlykFX

  1. SlykFX

    Moving Linked List Items

    ahhhhh, it all makes sense now thanks loads for that :) I can't be bothered to have a sig!
  2. SlykFX

    Moving Linked List Items

    Can someone point out where im going wrong here please. ive got my linked list populated with several objects, and im trying to move the selected object to the front of the list (or the back depending on which direction its supposed to go) what i have so far is: public void toFront() {...
  3. SlykFX

    Input to String

    thanks so much cin.ignore(); right before the getline() statement has fixed the problem its amazing how helpful a fresh view on something can be thanks loads I can't be bothered to have a sig!
  4. SlykFX

    Input to String

    Can anyone offer any explanation on this please im trying to accept user input from keyb and ultimatly store it in a string ive tried both string sNewName; getline(cin, sNewName); and char cNewName[25]; string sNewName; cin.getline(cNewName, 25); // also tried "sizeof...
  5. SlykFX

    IE, Floating Divs and hiding content

    hmmm odd, for some reason one of the form validators was messing up, ill check that over tomorrow thanks for that chessbot, hadnt noticed that error (had script debugging disabled for some reason) I can't be bothered to have a sig!
  6. SlykFX

    IE, Floating Divs and hiding content

    for some reason, ive just noticed, this only happens on this page this is also the only page witha form, could this be the problem? I can't be bothered to have a sig!
  7. SlykFX

    IE, Floating Divs and hiding content

    hi guys a site im currently has a left hand nav column, a right hand ads column and all the content between the two im positioning it all in css with divs (floating divs to get things where i want them) the problem (at its worse) is on this page http://www.3foottall.com/contact.aspx see the...
  8. SlykFX

    record count

    ive fixed it, i just realised that i had missed the table name of the dataadapter.fill line I can't be bothered to have a sig!
  9. SlykFX

    record count

    im not sure if this is the right place for this but .. is there any reason as to why this isnt working? Error: Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it...
  10. SlykFX

    div dynamic width

    thats how i do have it it setup, dont think i explaned it very well ive got a left hand navigation div expanding down for most of the page and in some areas a right hand div that may only be a few lines in height because i want text to flow round these, im not using a center div but i do...
  11. SlykFX

    div dynamic width

    ive got divs strewn thoughout my page with stuff like navigation, positioning, etc. in them that are resulting in different lines of the page being different widths is it possible to form some method of giving a div tag a variable width based on where the div lies i need this done in css as it...
  12. SlykFX

    3 column <div> problem

    oops #centercontent { background:#fff; height:100%; <-- supposed to be pixel width not percentage voice-family: "\"}\""; voice-family: inherit; } also missed the outer div :( but that vragabonds way above works if u want only a minimum width I can't be bothered to have a sig!
  13. SlykFX

    3 column &lt;div&gt; problem

    easiest way to do this that ive found is #leftcontent { float: left; clear: left; width:185px; } #centercontent { background:#fff; height:100%; voice-family: "\"}\""; voice-family: inherit; } #rightcontent { float: right; clear: right; width:185px...
  14. SlykFX

    Page layout getting messed up

    but is there an actual fix for it or not? I can't be bothered to have a sig!
  15. SlykFX

    Page layout getting messed up

    im uysing a table to layout my page as i want things to originate from the center of the screen, im using an external css to setup the tables and everything the page is displaying perfect until i put the doctype declaration in then the whole layout gets messed up its as though it is affecting...

Part and Inventory Search

Back
Top