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

    Problem with <SELECT> not appearing the same in IE & Firefox with CSS

    Hi, I'm trying to do a simple drop down, styled by CSS which looks uniform in IE and Firefox. Here is a sample page www.puresoft.co.uk/select.htm. For some reason the Firefox browser seems to want to make the drop down have a 3D border. How can I remove this look, so its flat, like the IE...
  2. PureSoft

    Using MSComm to import text strings

    Hi, I have written some code which seems to trip up, can anyone tell me why this deosn't work? input_string = MSComm1.Input input_string_holder_array = Split(input_string, ",") Label1.Caption = input_string_holder_array(2) It seems that when the array value is passed over to...
  3. PureSoft

    type mismatching - how to format strings as numbers for assigning

    Hi, I am pulling text from a file (csv export from a shopping cart) in string format, some of this text naturally represents numbers. I'm having problems assigning these strings as numbers to a new variable, originally defined as a variant. Here is the line along with my variable declarations...
  4. PureSoft

    filling an array with lines of text

    Hi, I have a simple loop that seems to cause problems with 'subscript out of range' - I want to read in a text file, line by line and fill it into an array for subsequent reference. Here is the code: m = 0 While Not EOF(1) Line Input #1, Line_holder_array(m) m = m + 1 Wend What's my...
  5. PureSoft

    Hidden white space characters?

    Hi, I have a csv export file (from a shopping cart system) that when processed raw, gives problems because the end of line character does not appear to be right. It will view fine in Excel, starting new lines as supposed to, its just that when I use the 'Line Input' command on the raw file it...
  6. PureSoft

    Detecting a string value as a number or text

    Hi guys, I'm sure this should be an easy one for you, although I couldn't find an example in some searches on the forum. I have a csv file (from a shopping cart export) I've split up and read into an array holding these values as strings. What I want to do now is test some of them to see if...
  7. PureSoft

    Working with CSV files - importing > manipulating > exporting

    Hello Guys, I have a website order export as a raw csv file with the various fields one after the other, with a separate line for each order. I want to read in that file, assigning each field to a variable so I can analyse those variables and then do some manipulations, before finally exporting...

Part and Inventory Search

Back
Top