Click here to Skip to main content
15,913,722 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataBind problem Pin
webhay12-Nov-04 4:58
webhay12-Nov-04 4:58 
GeneralRe: DataBind problem Pin
Skynyrd12-Nov-04 10:16
Skynyrd12-Nov-04 10:16 
GeneralRe: DataBind problem Pin
webhay18-Nov-04 4:04
webhay18-Nov-04 4:04 
QuestionOnline Database? Pin
The underdog12-Nov-04 3:13
The underdog12-Nov-04 3:13 
AnswerRe: Online Database? Pin
Colin Angus Mackay12-Nov-04 7:15
Colin Angus Mackay12-Nov-04 7:15 
GeneralC# form_load event Pin
Phil Finlay12-Nov-04 3:05
Phil Finlay12-Nov-04 3:05 
GeneralRe: C# form_load event Pin
Skynyrd12-Nov-04 4:09
Skynyrd12-Nov-04 4:09 
GeneralRe: C# form_load event Pin
Phil Finlay12-Nov-04 5:47
Phil Finlay12-Nov-04 5:47 
Thanks for your reply. I think I am doing things right. Here are the relevant lines of code:
// From the Settings_Scr.cs
:
:
private void GoToMapScreen_Click(object sender, System.EventArgs e)
{
MapScr MAPobj = new MapScr();
if (ESRImap.Checked) // a radio button
{
MAPobj.ESRIMap = true;
}
else
{
MAPobj.ESRIMap = false;
}
MAPobj.ShowDialog();
}
:

// From the MapScr.cs
:
:
this.Load += new System.EventHandler(this.MapScr_Load);
:
:
private void MapScr_Load(object sender, System.EventArgs e)
{
if (ESRIMap) // a breakpoint on this line never gets called
{
InitializeESRIMap();
}
else
{
InitializeMapPoint();
}
}


Phil F.
GeneralRe: C# form_load event Pin
Skynyrd12-Nov-04 10:26
Skynyrd12-Nov-04 10:26 
GeneralRe: C# form_load event Pin
Phil Finlay15-Nov-04 9:15
Phil Finlay15-Nov-04 9:15 
GeneralRichTextBox and DetectUrls Pin
benjymous12-Nov-04 1:51
benjymous12-Nov-04 1:51 
GeneralRe: Recursion (Can someone walk through cheese?) Pin
benjymous12-Nov-04 0:44
benjymous12-Nov-04 0:44 
GeneralRe: Recursion (Can someone walk through cheese?) Pin
Sebastian Schneider12-Nov-04 1:58
Sebastian Schneider12-Nov-04 1:58 
GeneralI'd like to use IPicture class using C# Pin
Anonymous12-Nov-04 0:37
Anonymous12-Nov-04 0:37 
GeneralCreating a table from code Pin
vog_ro12-Nov-04 0:31
vog_ro12-Nov-04 0:31 
GeneralRe: Creating a table from code Pin
David Salter12-Nov-04 2:33
David Salter12-Nov-04 2:33 
GeneralRetrieving a website name by its IP address Pin
Majid Shahabfar11-Nov-04 23:11
Majid Shahabfar11-Nov-04 23:11 
GeneralRe: Retrieving a website name by its IP address Pin
Sebastian Schneider11-Nov-04 23:29
Sebastian Schneider11-Nov-04 23:29 
GeneralRe: Retrieving a website name by its IP address Pin
David Salter11-Nov-04 23:39
David Salter11-Nov-04 23:39 
GeneralRecursion (Can someone walk through cheese?) Pin
Sebastian Schneider11-Nov-04 22:28
Sebastian Schneider11-Nov-04 22:28 
GeneralRe: Recursion (Can someone walk through cheese?) Pin
yoaz11-Nov-04 22:46
yoaz11-Nov-04 22:46 
GeneralRe: Recursion (Can someone walk through cheese?) Pin
Sebastian Schneider11-Nov-04 23:01
Sebastian Schneider11-Nov-04 23:01 
GeneralRe: Recursion (Can someone walk through cheese?) Pin
yoaz12-Nov-04 0:42
yoaz12-Nov-04 0:42 
GeneralDrawing Forms Pin
pjholliday11-Nov-04 21:56
pjholliday11-Nov-04 21:56 
GeneralRe: Drawing Forms Pin
benjymous12-Nov-04 1:07
benjymous12-Nov-04 1:07 

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.