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 SkipVought 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: *

  1. Bastien

    MSSQL DB Import issue

    Is this version dependant? Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  2. Bastien

    MSSQL DB Import issue

    George, (un)fortuantely, the current 0 seed value is blocking most attempts to add more than one row to the table. So I should be able to blanket run that sql to load each table with the correct seed Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  3. Bastien

    MSSQL DB Import issue

    Hi guys, I have a database that was imported from MySQL to MSSQL via a DTS package. There is an error in that any auto increment (Identity) field is having issues because while the IDENTITY field is yes, the seed value is 0. Is there an SQL I could run against the db that will allow me to...
  4. Bastien

    Split creates variant not array

    I wish it was that simple. The db call returned exactly what the code snippet showed as the value for sADMIN_ALLOWED_HTML_TAGS. I response.write it out and copied the text. Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  5. Bastien

    Split creates variant not array

    @strongm Yes, I know they are all variants, but when the typename comes back as Variant the calls to ubound and IsArray fail Ubound comes back with -1 and the isarray returns false @jges Yes its commented out, it was to show you the values, the real variable data is from a db call...
  6. Bastien

    Split creates variant not array

    The array comes back as a type VARIANT and the ubound returns -1 Then I can't access the array. Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  7. Bastien

    Split creates variant not array

    Hi Guys, I have a simple process whereby I split a comma separated string. The issue is that it comes back as a variant data type not an array and this blocks the rest of my process from working The code is: ' sADMIN_ALLOWED_HTML_TAGS = "P,BR,UL,OL,LI" if sADMIN_ALLOWED_HTML_TAGS <> "" then...
  8. Bastien

    Ajax js issue in FF

    https://developer.mozilla.org/en/xmlhttprequest Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  9. Bastien

    Ajax js issue in FF

    It stated in the FF docs that it doesn't like the sync value to be true. I found it strange myself, but it's now works. Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  10. Bastien

    Ajax js issue in FF

    Worked it out, FF doesn't like asynch set to true for the onreadystatechange status. I set it to false and now it works Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  11. Bastien

    Ajax js issue in FF

    I hav an intersting issue with the below JS code, works in IE and Chrome but not in FF. The ajax call brings back the results which I can see with Firebug. The idea is that the function gets passed the DIV parameter and checks to see what that is: object (usually a div); another function (to...
  12. Bastien

    Undefined Error Message

    Damn keyboard...damn fat fingers thanks guys. Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  13. Bastien

    Undefined Error Message

    yes, no other vars named xoffset Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  14. Bastien

    Undefined Error Message

    Yes, on line 71, which is the first line in the function. and yes its the same function Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  15. Bastien

    Undefined Error Message

    I have the below function which is called from another function. I keep getting the message that 'xOffset is undefined', yet its clearly being passed in when I alert it out. The call is from another function and looks like this: RemoveTab('tractor','0'); function RemoveTab(sDiv, x0ffset)...
  16. Bastien

    Display DIVs problem

    Damn, that was stupid...thanks for the second set of eyes Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  17. Bastien

    Display DIVs problem

    Hi All, I have a form with tabbed divs (could be 1 or n number of tabs) that are dynamically generated. Each tab div has a name and a number that I pass to the below function to hide/show those DIVs that the tabs belong to. The trouble I am having is that the first tab / div refuse to...
  18. Bastien

    Javascript array assignment issue

    Inherited some legacy code and am attempting to do a little caching with it. The query is doing some drop down filtering with an AJAX call to get some XML data. The plan is to intercept the AJAX calls if the element has been requested before by checking the xfilter array for the objCurrent item...
  19. Bastien

    toggle radio button via getElementById

    worked like a charm.... damn inheirited code Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...
  20. Bastien

    toggle radio button via getElementById

    Link is empty due to bad copy'n'paste. Sorry. I will try the label approach Bastien I wish my computer would do what I want it to do, instead of what I tell it to do...

Part and Inventory Search

Back
Top