Click here to Skip to main content
15,896,154 members
Home / Discussions / C#
   

C#

 
QuestionRe: ArraySorting: Pin
T.RATHA KRISHNAN19-Jul-07 0:23
T.RATHA KRISHNAN19-Jul-07 0:23 
AnswerRe: ArraySorting: Pin
CPallini19-Jul-07 0:22
mveCPallini19-Jul-07 0:22 
AnswerRe: ArraySorting: Pin
Luc Pattyn19-Jul-07 0:27
sitebuilderLuc Pattyn19-Jul-07 0:27 
QuestionHow do I add a base interface using ModuleBuilder.DefineType() Pin
fpdeguzma7818-Jul-07 23:55
fpdeguzma7818-Jul-07 23:55 
AnswerRe: How do I add a base interface using ModuleBuilder.DefineType() Pin
Thaer Hamael19-Jul-07 0:02
Thaer Hamael19-Jul-07 0:02 
AnswerRe: How do I add a base interface using ModuleBuilder.DefineType() Pin
fpdeguzma7819-Jul-07 21:40
fpdeguzma7819-Jul-07 21:40 
QuestionHow To Add Grid To mobil Application By Spesify Propert Pin
Thaer Hamael18-Jul-07 23:28
Thaer Hamael18-Jul-07 23:28 
QuestionCan some bright person solve this ? I am lost with this....so strange Pin
pierrecenti18-Jul-07 23:27
pierrecenti18-Jul-07 23:27 
When running the code below on a win 2003 server i receive all the 4 columns in the csv file, when doing it on xp I only get one column !?!?! how weird is that on a scale !? ...somebody run into this ?



string strImportPath = "C:\\inetpub\\wwwroot\\TempUpload\\";
string strConn = "Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=" + strImportPath.Trim() + ";Extensions=csv,txt;Persist Security Info=False";
OdbcConnection myConnection = new OdbcConnection(strConn);

myConnection.Open();

OdbcDataAdapter myAdapter = new OdbcDataAdapter("select * FROM Manufacturers.txt", myConnection);
DataSet ds = new DataSet();
try
{
myAdapter.Fill(ds,"fungus");
}
catch(Exception ex)
{
string messages = ex.Message.ToString();
}

dataGrid1.DataSource = ds.DefaultViewManager;
dataGrid1.DataMember="fungus";

myConnection.Close();

peirre
AnswerRe: Can some bright person solve this ? I am lost with this....so strange Pin
gumi_r@msn.com19-Jul-07 1:37
gumi_r@msn.com19-Jul-07 1:37 
QuestionIndex error... Pin
Support12318-Jul-07 23:17
Support12318-Jul-07 23:17 
AnswerRe: Index error... Pin
Support12318-Jul-07 23:24
Support12318-Jul-07 23:24 
GeneralRe: Index error... Pin
Luc Pattyn18-Jul-07 23:30
sitebuilderLuc Pattyn18-Jul-07 23:30 
GeneralRe: Index error... Pin
Support12318-Jul-07 23:40
Support12318-Jul-07 23:40 
AnswerRe: Index error... Pin
Colin Angus Mackay18-Jul-07 23:30
Colin Angus Mackay18-Jul-07 23:30 
AnswerRe: Index error... Pin
Thaer Hamael19-Jul-07 0:04
Thaer Hamael19-Jul-07 0:04 
GeneralRe: Index error... Pin
Martin#19-Jul-07 0:11
Martin#19-Jul-07 0:11 
GeneralRe: Index error... Pin
Luc Pattyn19-Jul-07 0:37
sitebuilderLuc Pattyn19-Jul-07 0:37 
GeneralRe: Index error... Pin
Martin#19-Jul-07 0:55
Martin#19-Jul-07 0:55 
Questionhow to copy database ? Pin
help as an alias18-Jul-07 22:55
help as an alias18-Jul-07 22:55 
AnswerRe: how to copy database ? Pin
Colin Angus Mackay18-Jul-07 23:21
Colin Angus Mackay18-Jul-07 23:21 
GeneralRe: how to copy database ? Pin
help as an alias18-Jul-07 23:35
help as an alias18-Jul-07 23:35 
GeneralRe: how to copy database ? Pin
Colin Angus Mackay18-Jul-07 23:49
Colin Angus Mackay18-Jul-07 23:49 
QuestionThreading concept.. Pin
Ron.S18-Jul-07 22:40
Ron.S18-Jul-07 22:40 
AnswerRe: Threading concept.. Pin
Eduard Keilholz18-Jul-07 22:47
Eduard Keilholz18-Jul-07 22:47 
GeneralRe: Threading concept.. Pin
Ron.S18-Jul-07 22:58
Ron.S18-Jul-07 22:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.