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 TouchToneTommy 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: Light777
  • Content: Threads
  • Order by date
  1. Light777

    DataAdapter.Update() trouble

    I have a DataTable with a DataAdapter in a Dataset that I created using the the dataset tools within Visual Studio. I had it create the INSERT/UPDATE/DELETE commands automatically for me and looking at them they look correct. I have written a bunch of code to then populate/change the data...
  2. Light777

    Getting Layer Properties

    I am trying to get the height or width or left or top of a layer that has not been explicitly set or has been set to a percentage. i.e. #DIV {position: absolute; width: 100%} <div id="DIV"> </div> I am changing the innerHTML of this layer and then trying to get the height so I can lay out...
  3. Light777

    Getting quantities for each store

    I need to get a quantity value for each store based on the ItemID, however, the client wants it within a column rather than grouping the ItemID and listing the stores with a quantity behind each, which is a lot simpler. Of course people want things the hard way... i.e. if {Item.StoreID} =...
  4. Light777

    getting all attributes

    For testing purposes, I need to create a list of all of the elements on a page that I am working on with all of their attributes and values. Does anyone have a snipet of code that will cycle through every object and get their attributes? i.e. document.Form.TextArea.Value = "whatever"...
  5. Light777

    Expected semi-colon error and Object expected error

    I am doing a site for a computer store and I have come across a couple of errors that I can't figure out, if someone could help me that would be greatly appreciated. Here is the code: (At the end of this post, I'll describe the errors that I am getting) <%@Language = VBScript%> <html>...
  6. Light777

    Shrinking a box from the corners

    I want to be able to shrink a box from the corners inward dynamically when a button is pressed. Here is my code so far: function div_collapse_from_corners(shrinkingbox) { var test = open('test.htm', 'test', 'width=200, height=200') styleObj = document.getElementById(shrinkingbox).style...
  7. Light777

    Invalid procedure call or argument: 'Left'

    Someone help, I've been pulling my hair out over this one. I keep getting an &quot;Invalid procedure call or argument: 'Left'&quot; error whenever I run this piece of code... strSql=&quot;SELECT NAME FROM Places WHERE NAME = '&quot; & Request.Form(&quot;StartPlace&quot;) & &quot;'&quot; Set rs...
  8. Light777

    Resize frames to center the document

    I have a Frameset with a top frame, a left frame, and another left frame and a right frame. The purpose of the second left frame and the right frame is to center the document in the center of the screen. A representation of this: |--|-------------|--| | | | | | |--|----------|...
  9. Light777

    Redirecting to _top

    I am running my ASP code from an Iframe and need the redirect URL to take up the full screen instead of just the Iframe. Any ideas?
  10. Light777

    Database does not support updating, but I know it does

    I am getting this error when I run code: Error Type: ADODB.Recordset (0x800A0CB3) Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype. The line that the error is in is the connection string which is: rs.Open strSql, db...
  11. Light777

    How do I recieve emails from a web server in Visual Basic?

    I need to be able to check my email account every so many seconds for new emails and retrieve them. Is there a fairly simple way to do this in Visual Basic?

Part and Inventory Search

Back
Top