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 derfloh 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. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    It's strange, but everywhere I've looked, I get no answer... Seems to be impossible...
  2. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    I make the file with PHP from a MySQL database like this: $result = mysql_query($sql); $fp=fopen('dump.csv','w'); while($row=mysql_fetch_row($result)){ fputs($fp,implode(',',$row)."\n" ); } fclose($fp);
  3. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    Hi, Yes, .csv is the actual extension... The file is called for example dump.csv, but I can choose that myself in my script... csv is a comma seperated list... So it's a list of all the data that I retrieve from a database and all the records are seperated by commas... If I open it in excel...
  4. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    Note... It didn't just come up the first time... And it gave me choices of what was going to seperate the columns... So I had to choose commas, since it is a comma seperated list...
  5. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    I don't remember the excact choices I got, they only came the first time I think... And ctr+shift+right-click didn't give me an Open with... Option... It gave Open in new window, but that didn't help...
  6. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    1. Yes, Open is the default method... 2. the .csv opens in an excel sheet inside IE... If I open a .csv file on my local machine it launches Excel, and I get some choices as to how I want to view the data... When I open from the web data shows up like this... lastname1,firstname1...
  7. XQmano

    Open .csv file in Excel, NOT in IE (6.0) (using win98)

    Hi, I want, when a link to a .csv file is clicked, to launch Excel automatically... As of now, an Excel sheet is opened inside IE, and that doesn't work for me... I've tried (in explorer) to change the open with... property of csv files. (It was already set to Excel) and I tried experimentally...

Part and Inventory Search

Back
Top