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!

Search results for query: *

  • Users: thysonj
  • Content: Threads
  • Order by date
  1. thysonj

    ApplicationException

    When I throw an ApplicationException and then handle it client side it works perfect locally. If I publish the website to the production server I never get the ApplicationException I just get a generic exception with a statrus code of 500. Anyone have any idea why this is happening?
  2. thysonj

    .NET and Crystal Reports

    Why does a local host version of a website export srraight to pdf when given a url parameter but requires a posted parameter in the production version? Example /site/Crystal/default.aspx?id=12 will bring up the pdf version report for id 12 on a local development deployment but once published...
  3. thysonj

    div height 100%

    I am new with CSS layout and can't for the life of me figure this out. I think it is pretty basic though. All I want is a page that will expand to the height of the browser. I have a 100 px banner at the top and everything underneathe should fill the page to the bottom. <div...
  4. thysonj

    Form submission IP

    I need to be able to identify the IP of the form submitting page. This is the situation. We have an online payments system which redirects to a processing company. The processing company does its thing and then for some asanine reason redirects(actually submits a form) back to our system to...
  5. thysonj

    return recordset in string form

    this is killing me..i have a feeling i am over thinking it. I am trying to return a recordset in a string value. I will explain further... This is a representation of my DB ElementPK,ElementParent 1,0 2,1 3,2 4,2 5,2 6,3 7,4 8,5 Now, using a udf with recursion I have no problem returning a...
  6. thysonj

    Weird copyfile rror

    Set cssFile = objFSO.CopyFile(theFile,albumPath) actually works and copies the file but I get an error... Error Type: Microsoft VBScript runtime (0x800A01A8) Object required: '[undefined]' /album/filebuilder.asp, line 42 on the line of the CopyFile. The FileSystemObject works fine...
  7. thysonj

    div and span layout and whitespace

    is it possible to eliminate whitespace when formatting a table as such <style> span { FONT-FAMILY:verdana, arial, helvetica, sans-serif; COLOR:#000033; FONT-SIZE:11px; letter-spacing:; position: relative; text-decoration:none; display:inline; } </style> <table bgcolor="#d4d2cc"...
  8. thysonj

    redim arrays on the fly

    is it possible to redim an array on the fly and not lose the data in the array? it seems weird that redim would erase the array.
  9. thysonj

    Pull data together into records

    I am wondering how to go about meshing data together into records. Not sure if I can explain this well so I'll provide an example with the desired outcome and see what you all think. Let's say I have a query such as this: SELECT Employee_IDPK, training_name + ' - ' + training_date AS...
  10. thysonj

    Group recordset output

    does anyone know of an elegant way to group recordset output? For example in ColdFusion you can use the group attribute of the output tag to group the output after retrieving it from the db. I have a query here that is returning a massive amount of records sicne I am using joins on several...
  11. thysonj

    get available row

    I am colating the data from almost 700 workbooks into one. I'd like to grab data in file A/worksheet 1 and copy it to file z/worksheet 1 and then loop to file b/worksheet 1 and copy it to file z/worksheet 1. I need a way of keeping track of which row is the next row to paste too. My data...
  12. thysonj

    Test to see if character is number

    I need to test to see if the last character ina string is a number. How would I do this?
  13. thysonj

    Import multiple Excel data files into one database

    This is a tricky one! I am currently looking for the most efficient and quickest way to import multiple Excel files into a db. I will explain as much as possible and hopefully some of you have some ideas. -We are talking about 700 Excel files -The files are all formatted the same. -Each file...
  14. thysonj

    Access a form element from a .JS file

    Is there any way to access a form element from an included .js file? What I want to do is to get the client width from a particular element that is located on the opener page. I can do this using some JS on the opener page but I need to have it in the included js file and I can't seem to get it...
  15. thysonj

    Object error

    Why do I get an "object doesn't sopport this property or method" error witht he code below? function setfocus(field) { str = 'document.grid.' + field str.focus(); } The field is dynamic but the form will stay the same.
  16. thysonj

    Using a dot in a virtual directory alias

    Anyone no why there would be an issue in IIS5 with using a dot in a virtual directory alias? The site has a name like www.sitename.net and we often just mount new apps to it as virtual dirs. The issue we are having causes something like www.sitename.net/test0.2 to not work. If we rename it to...
  17. thysonj

    Date functions

    Why don't any of the date functions work in my excel? I even copy the examples in the help files and get a #name? error. here is an example of the formulas I am using. =NETWORKDAYS(&quot;10/01/1998&quot;,&quot;12/01/1998&quot;)
  18. thysonj

    INSERT statement not working

    INSERT INTO editlog (user, ipnum, tablename, recordnum, referlink, logtime, logdate, loghost) VALUES ('pmhs', '10.0.0.102', 'CaseStudy', '1', '/hal/ute_form.asp', '3:29:22 PM', '2/6/2004', '10.0.0.102') I get a syntax error in the insert into statement error. Any ideas?
  19. thysonj

    __doPostBack weirdness

    I am really new to .NET here so forgive me if this ends up being something silly. I have a page here that does a postback and displays a subform. It works perfectly fine within our domain. We have deployed the dev site to a staging site and now the post does not work. It does the post back...
  20. thysonj

    changing div position

    is it possible to change the position of a div? For example <tr> <td>Field1 <input type=&quot;checkbox&quot; name=&quot;test&quot; value=&quot;1&quot; onclick=&quot;toggleDiv('a', this.checked);&quot;></td> <td rowspan=&quot;7&quot;>...

Part and Inventory Search

Back
Top