Click here to Skip to main content
16,011,868 members
Home / Discussions / C#
   

C#

 
GeneralRe: Thread communication Pin
albean25-Jul-03 10:59
albean25-Jul-03 10:59 
GeneralRe: Thread communication Pin
Arun Bhalla25-Jul-03 11:17
Arun Bhalla25-Jul-03 11:17 
GeneralRe: Thread communication Pin
albean25-Jul-03 11:32
albean25-Jul-03 11:32 
GeneralRe: Thread communication Pin
Alex Korchemniy25-Jul-03 15:10
Alex Korchemniy25-Jul-03 15:10 
GeneralRe: Thread communication Pin
Arun Bhalla28-Jul-03 8:55
Arun Bhalla28-Jul-03 8:55 
GeneralRe: Thread communication Pin
albean25-Jul-03 11:20
albean25-Jul-03 11:20 
GeneralOne Tuff Cookie Pin
RB@Emphasys25-Jul-03 7:54
RB@Emphasys25-Jul-03 7:54 
GeneralRe: One Tuff Cookie Pin
Jim Stewart25-Jul-03 8:44
Jim Stewart25-Jul-03 8:44 
There are a lot of "dots" in that line of code. The first rule I follow in troubleshooting is to isolate the problem. So...
TypeConverter tc = TypeDescriptor.GetConverter(this.text);
object converted = tc.ConvertFrom("Cp437");
sbyte[] mybytes = (sbyte[])converted;
... //etc

Without knowing anything about what your code does, we can at least isolate the source of the problem and often that leads to a solution.

Looking at the help info on TypeConverter.ConvertFrom() I found this:
Exceptions
NotSupportedException The conversion could not be performed.

That tells me that your conversion is not supported. Start there, I think.

α.γεεκ

Fortune passes everywhere.
Duke Leto Atreides


GeneralRe: One Tuff Cookie Pin
RB@Emphasys25-Jul-03 8:50
RB@Emphasys25-Jul-03 8:50 
GeneralProblems registering a .NET class library in COM+ Pin
IsaacB25-Jul-03 7:38
IsaacB25-Jul-03 7:38 
Generalhelp Me pplease Pin
jphuphilly25-Jul-03 7:36
jphuphilly25-Jul-03 7:36 
GeneralRe: help Me pplease Pin
albean25-Jul-03 8:23
albean25-Jul-03 8:23 
GeneralRe: help Me pplease Pin
jphuphilly25-Jul-03 11:50
jphuphilly25-Jul-03 11:50 
GeneralRe: help Me pplease Pin
albean25-Jul-03 12:18
albean25-Jul-03 12:18 
GeneralRe: help Me pplease Pin
leppie25-Jul-03 12:59
leppie25-Jul-03 12:59 
GeneralRe: help Me pplease Pin
jphuphilly28-Jul-03 8:41
jphuphilly28-Jul-03 8:41 
GeneralRe: help Me pplease Pin
leppie28-Jul-03 10:24
leppie28-Jul-03 10:24 
GeneralDataRowCollection.InsertAt method is driving me nuts Pin
Radoslav Bielik25-Jul-03 7:04
Radoslav Bielik25-Jul-03 7:04 
GeneralRe: Interop Pin
Daniel Turini25-Jul-03 7:50
Daniel Turini25-Jul-03 7:50 
GeneralRe: Interop Pin
leppie25-Jul-03 8:05
leppie25-Jul-03 8:05 
GeneralRe: Interop Pin
leppie25-Jul-03 10:43
leppie25-Jul-03 10:43 
GeneralRe: Interop Pin
J. Dunlap25-Jul-03 11:06
J. Dunlap25-Jul-03 11:06 
GeneralRe: Interop Pin
Daniel Turini25-Jul-03 11:21
Daniel Turini25-Jul-03 11:21 
QuestionHow do i check if the Left Shift key was pressed? Pin
CyberKewl25-Jul-03 2:09
CyberKewl25-Jul-03 2:09 
AnswerRe: How do i check if the Left Shift key was pressed? Pin
dynamic25-Jul-03 3:19
dynamic25-Jul-03 3:19 

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.