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 jimberger

  1. jimberger

    using FLOAT and DIVS instead of tables

    here is my code... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <style type="text/css"> @import url(...
  2. jimberger

    using FLOAT and DIVS instead of tables

    thanks traingamer. I will work on doing something like this solution this afternoon and let you know how i get on. Cheers
  3. jimberger

    using FLOAT and DIVS instead of tables

    Hi, I am trying to make my layout with divs and not use tables. I am using the float property on my divs to align my columns into 3 etc..however, when i resize the IE window, the controls on the page move around and the layout messes up. what is going on here? how can i make the layout...
  4. jimberger

    fieldset

    Hello, I am trying to avoid using tables and use fieldset instead. I have a form which displays a user registration form. I want the fieldset to be into two columns - with name, birth date, gender etc.. on one column and adddress, postcode , telephone number on the other column. how do i do...
  5. jimberger

    DOCTYPE and CSS

    Hi, I have a html page containing a style sheet. When I have the doctype set to <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> everything is fine but when i change to <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  6. jimberger

    class library

    sorry, i forgot to add reference the dll!
  7. jimberger

    class library

    Hello, I have a solution with 2 projects. 1 project is my class library where I have a class called SQLWrapper. In my 2nd project I want to be able to reference this class to use the functions within sqlwrapper. When I write imports it brings up a list of namespaces, but my project that...
  8. jimberger

    IN query

    ah yes!! thanks!
  9. jimberger

    IN query

    Hello, I have a query SELECT * FROM table where name IN (SELECT name from nametable where year=2007) however i want to be able to do something like this SELECT * FROM table where name AND description IN (SELECT name, description from nametable where year=2007) but i get a syntax error any...
  10. jimberger

    validating list boxes

    Hi, I'm using VB.NET 2.0 thanks
  11. jimberger

    validating list boxes

    Hi, I have a list box populated with values. i want to be able to say if value 6 or 10 is selected along with any other value in the list box then print error i have so far If lbxBuyingAgencies.Items.FindByValue("6").Selected = True Or lbxBuyingAgencies.Items.FindByValue("10").Selected = True...
  12. jimberger

    get all table names in database

    Hello, IS there a query or system stored procedure that will return all the user tables in the database? Thanks Jimmmy
  13. jimberger

    uploading files

    Hello, I have a upload facility to upload a file - however, I do a check to see if the file already exists, if it does then I want to say "Do you want to overwrite this file?" with yes or no buttons. fine so far. However, on pressing yes I want to overwrite the file, the problem is that when...
  14. jimberger

    rewrite url in global.asax

    Hello All, I want to write some code in the Application_AuthenticateRequest function in the global.asax that takes the url for example http://192.168.1.72 and rewrites this url to the domain http://www.whateverhere.com does anybody know how to do this? thanks for your help
  15. jimberger

    splitting a string into 255 chars

    hi, no there isnt a delimeter unfortunately because i could then use the split function. thanks

Part and Inventory Search

Back
Top