Click here to Skip to main content
15,887,875 members
Home / Discussions / C#
   

C#

 
GeneralRe: Decimal to Binary to Hex convert Pin
eggie513-Sep-03 18:05
eggie513-Sep-03 18:05 
GeneralNamespace 'ADO' not accessible.... Pin
Pranoti13-Sep-03 5:30
Pranoti13-Sep-03 5:30 
GeneralRe: Namespace 'ADO' not accessible.... Pin
dbetting13-Sep-03 15:17
dbetting13-Sep-03 15:17 
GeneralRe: Namespace 'ADO' not accessible.... Pin
Pranoti14-Sep-03 23:18
Pranoti14-Sep-03 23:18 
GeneralRe: Namespace 'ADO' not accessible.... Pin
dbetting15-Sep-03 14:27
dbetting15-Sep-03 14:27 
GeneralUsing a custom icon from resource file Pin
Paul Silvernail13-Sep-03 4:24
Paul Silvernail13-Sep-03 4:24 
GeneralRe: Using a custom icon from resource file Pin
Paul Silvernail13-Sep-03 7:30
Paul Silvernail13-Sep-03 7:30 
GeneralRe: Using a custom icon from resource file Pin
James T. Johnson14-Sep-03 11:10
James T. Johnson14-Sep-03 11:10 
Be careful with code like this:

Paul Silvernail wrote:
private void Form1_Load(object sender, System.EventArgs e)
{
image1 = new Bitmap(GetType(),"icon1.png");
image2 = new Bitmap(GetType(),"icon2.png");
SelectionCursor = new Cursor(GetType(),"Cursor1.cur");

this.pictureBox1.BackgroundImage = image1;
}


If you create a new form which inherits from Form1, but doesn't exist in the same namespace or assembly; the constructors will throw an exception because the resource can't be found. GetType() will return a Type object for the new form, not for Form1 resulting in the exception.

A better way to do it is to use typeof(Form1) so that you will always be referencing the correct Type object.

James

"then when you go to bed...wait, you dont do that do you....ok....when you plug into the 'hive mind' to charge yourself, ill hack into your head"
Nnamdi Onyeyiri over MSN

GeneralFast image adding for ImageList Pin
Jucovschi Petru13-Sep-03 3:55
Jucovschi Petru13-Sep-03 3:55 
GeneralRe: Fast image adding for ImageList Pin
leppie13-Sep-03 4:57
leppie13-Sep-03 4:57 
Generaldebugging in VS stopped working... Pin
Jan R Hansen13-Sep-03 1:19
Jan R Hansen13-Sep-03 1:19 
GeneralRe: debugging in VS stopped working... Pin
Uwe Keim13-Sep-03 2:26
sitebuilderUwe Keim13-Sep-03 2:26 
QuestionWould someone please put me on the right track? Pin
profoundwhispers12-Sep-03 22:53
profoundwhispers12-Sep-03 22:53 
AnswerRe: Would someone please put me on the right track? Pin
J. Dunlap13-Sep-03 9:26
J. Dunlap13-Sep-03 9:26 
Generaldll references Pin
pseudonym6712-Sep-03 22:19
pseudonym6712-Sep-03 22:19 
GeneralRe: dll references Pin
Arjan Einbu12-Sep-03 23:07
Arjan Einbu12-Sep-03 23:07 
GeneralRe: dll references Pin
dbetting13-Sep-03 15:36
dbetting13-Sep-03 15:36 
GeneralDLL wrapper and structs Pin
pithhelmet12-Sep-03 14:10
pithhelmet12-Sep-03 14:10 
GeneralRe: DLL wrapper and structs Pin
Tym!15-Sep-03 6:48
Tym!15-Sep-03 6:48 
GeneralException from HRESULT: 0x800A01C9 Pin
ajkumar12-Sep-03 14:09
ajkumar12-Sep-03 14:09 
GeneralRe: Exception from HRESULT: 0x800A01C9 Pin
leppie12-Sep-03 14:44
leppie12-Sep-03 14:44 
GeneralRe: Exception from HRESULT: 0x800A01C9 Pin
ajkumar12-Sep-03 15:52
ajkumar12-Sep-03 15:52 
GeneralRe: Exception from HRESULT: 0x800A01C9 Pin
leppie12-Sep-03 16:10
leppie12-Sep-03 16:10 
GeneralRe: Exception from HRESULT: 0x800A01C9 Pin
J. Dunlap12-Sep-03 15:05
J. Dunlap12-Sep-03 15:05 
GeneralRe: Exception from HRESULT: 0x800A01C9 Pin
ajkumar14-Sep-03 6:17
ajkumar14-Sep-03 6:17 

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.