Click here to Skip to main content
15,914,323 members
Home / Discussions / C#
   

C#

 
GeneralRe: pictureBox.image default (no picture) Pin
Rapier5034-Jan-08 2:39
Rapier5034-Jan-08 2:39 
GeneralRe: pictureBox.image default (no picture) Pin
Giorgi Dalakishvili4-Jan-08 2:44
mentorGiorgi Dalakishvili4-Jan-08 2:44 
GeneralDll Output Pin
Xmen Real 4-Jan-08 1:05
professional Xmen Real 4-Jan-08 1:05 
GeneralRe: Dll Output Pin
Giorgi Dalakishvili4-Jan-08 1:09
mentorGiorgi Dalakishvili4-Jan-08 1:09 
GeneralRe: Dll Output Pin
Xmen Real 4-Jan-08 1:52
professional Xmen Real 4-Jan-08 1:52 
Questioncsv import truncates to 255 characters Pin
Krikke474-Jan-08 0:57
Krikke474-Jan-08 0:57 
GeneralRe: csv import truncates to 255 characters Pin
Skippums4-Jan-08 4:16
Skippums4-Jan-08 4:16 
GeneralRe: csv import truncates to 255 characters Pin
Dave Kreskowiak4-Jan-08 5:14
mveDave Kreskowiak4-Jan-08 5:14 
The problem is that Char fields (Char if using the ODBC Text Driver, or Text type if other) are limited to 255 characters, period, end of story. You have to char this to Memo if your field is wider than 255 characters.

On top of that, the format for each of those Coln lines is Coln=columnName type [Width n]. Width is optional. So, you're file would should look something like this:
[test.csv]
ColNameHeader=True
Format=Delimited(;)
MaxScanRows=0
CharacterSet=ANSI
Col1=someColumnName Memo Width 700
Col2=someOtherColumnName Memo Width 700
Col3="some columnName with spaces" Memo Width 700
Col4="some other Colum with spaces" Memo Width 700




A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007




QuestionAdd WebReference at Runtime? Pin
Pankaj - Joshi4-Jan-08 0:15
Pankaj - Joshi4-Jan-08 0:15 
AnswerRe: Add WebReference at Runtime? Pin
originSH4-Jan-08 1:15
originSH4-Jan-08 1:15 
GeneralNgen on setup, VB to C# translation Pin
Bekjong3-Jan-08 23:00
Bekjong3-Jan-08 23:00 
GeneralRe: Ngen on setup, VB to C# translation Pin
Declan Bright3-Jan-08 23:22
Declan Bright3-Jan-08 23:22 
GeneralRe: Ngen on setup, VB to C# translation Pin
Bekjong3-Jan-08 23:29
Bekjong3-Jan-08 23:29 
GeneralRe: Ngen on setup, VB to C# translation Pin
Giorgi Dalakishvili3-Jan-08 23:35
mentorGiorgi Dalakishvili3-Jan-08 23:35 
General[Message Deleted] Pin
Bekjong4-Jan-08 0:03
Bekjong4-Jan-08 0:03 
GeneralRe: Ngen on setup, VB to C# translation Pin
Giorgi Dalakishvili4-Jan-08 0:16
mentorGiorgi Dalakishvili4-Jan-08 0:16 
GeneralRe: Ngen on setup, VB to C# translation Pin
Bekjong4-Jan-08 0:18
Bekjong4-Jan-08 0:18 
GeneralRe: Ngen on setup, VB to C# translation Pin
Bekjong4-Jan-08 0:14
Bekjong4-Jan-08 0:14 
GeneralRe: Ngen on setup, VB to C# translation Pin
Giorgi Dalakishvili4-Jan-08 0:28
mentorGiorgi Dalakishvili4-Jan-08 0:28 
GeneralRe: Ngen on setup, VB to C# translation Pin
Bekjong4-Jan-08 1:36
Bekjong4-Jan-08 1:36 
GeneralRe: Ngen on setup, VB to C# translation Pin
Giorgi Dalakishvili4-Jan-08 1:49
mentorGiorgi Dalakishvili4-Jan-08 1:49 
GeneralRe: Ngen on setup, VB to C# translation Pin
Bekjong4-Jan-08 2:03
Bekjong4-Jan-08 2:03 
GeneralRe: Ngen on setup, VB to C# translation Pin
Giorgi Dalakishvili4-Jan-08 2:14
mentorGiorgi Dalakishvili4-Jan-08 2:14 
AnswerRe: Ngen on setup, VB to C# translation Pin
Bekjong4-Jan-08 2:20
Bekjong4-Jan-08 2:20 
GeneralRe: Ngen on setup, VB to C# translation Pin
Giorgi Dalakishvili4-Jan-08 2:21
mentorGiorgi Dalakishvili4-Jan-08 2:21 

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.