Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
QuestionThe instruction at "0x7c9105f8" referenced memory at "0x01650010". The memory could not be "read". Pin
Nitin19818-Feb-07 8:16
Nitin19818-Feb-07 8:16 
QuestionSwitching between .net 1 and 2 ? Pin
nemopeti8-Feb-07 8:02
nemopeti8-Feb-07 8:02 
AnswerRe: Switching between .net 1 and 2 ? Pin
Pete O'Hanlon8-Feb-07 9:17
mvePete O'Hanlon8-Feb-07 9:17 
GeneralRe: Switching between .net 1 and 2 ? Pin
Luc Pattyn8-Feb-07 10:25
sitebuilderLuc Pattyn8-Feb-07 10:25 
GeneralRe: Switching between .net 1 and 2 ? Pin
Pete O'Hanlon8-Feb-07 10:32
mvePete O'Hanlon8-Feb-07 10:32 
GeneralRe: Switching between .net 1 and 2 ? Pin
Wayne Phipps8-Feb-07 11:06
Wayne Phipps8-Feb-07 11:06 
GeneralRe: Switching between .net 1 and 2 ? Pin
ednrgc9-Feb-07 5:06
ednrgc9-Feb-07 5:06 
Questionnew instance of draw class always creates new window... why? Pin
Ranger498-Feb-07 7:43
Ranger498-Feb-07 7:43 
Why do get get a new form each time I create a new instance?

public class Form1
{
...
method to handle 'next' button to next graph
graphnumber++;
switch (graphnumber)
case 1: dg1 = new DrawGraph1();
dg1.Draw();
break;
case 2: dg2 = new DrawGraph2();
dg2.Draw();
break;
etcetera
...
}

public class DrawGraph : Form1
{
//abstract method Draw();

public class DrawGraph1 : DrawGraph
{
//override method Draw();

public class DrawGraph2 : DrawGraph
{
//override method Draw();

etcetera

This is probably so basic that books about C# won't even mention it, still I find this a significant problem!
Ranger...

Beginner
AnswerRe: new instance of draw class always creates new window... why? Pin
Ravi Bhavnani8-Feb-07 7:58
professionalRavi Bhavnani8-Feb-07 7:58 
GeneralRe: new instance of draw class always creates new window... why? Pin
Ranger498-Feb-07 8:02
Ranger498-Feb-07 8:02 
GeneralRe: new instance of draw class always creates new window... why? Pin
Ravi Bhavnani8-Feb-07 8:05
professionalRavi Bhavnani8-Feb-07 8:05 
Questionsame error message again.. Pin
Ranger498-Feb-07 7:00
Ranger498-Feb-07 7:00 
AnswerRe: same error message again.. Pin
Ravi Bhavnani8-Feb-07 7:41
professionalRavi Bhavnani8-Feb-07 7:41 
GeneralRe: same error message again.. Pin
Ranger498-Feb-07 7:46
Ranger498-Feb-07 7:46 
GeneralRe: same error message again.. Pin
Ravi Bhavnani8-Feb-07 7:54
professionalRavi Bhavnani8-Feb-07 7:54 
GeneralRe: same error message again.. Pin
Ranger498-Feb-07 7:58
Ranger498-Feb-07 7:58 
GeneralRe: same error message again.. Pin
Ranger498-Feb-07 8:25
Ranger498-Feb-07 8:25 
GeneralRe: same error message again.. Pin
Ranger498-Feb-07 9:18
Ranger498-Feb-07 9:18 
GeneralRe: same error message again.. Pin
Ravi Bhavnani8-Feb-07 11:49
professionalRavi Bhavnani8-Feb-07 11:49 
QuestionLinkButton Disappears when click on it. Pin
babutkchn8-Feb-07 5:09
babutkchn8-Feb-07 5:09 
QuestionGeting the process that uses a file Pin
jiorn8-Feb-07 4:57
jiorn8-Feb-07 4:57 
GeneralRe: Geting the process that uses a file Pin
Martin#8-Feb-07 6:01
Martin#8-Feb-07 6:01 
GeneralRe: Geting the process that uses a file Pin
Luc Pattyn8-Feb-07 10:36
sitebuilderLuc Pattyn8-Feb-07 10:36 
GeneralRe: Geting the process that uses a file Pin
jiorn11-Feb-07 7:24
jiorn11-Feb-07 7:24 
QuestionGeneral Web Service Question Pin
Planker8-Feb-07 4:31
Planker8-Feb-07 4:31 

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.