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

C#

 
GeneralRe: Default Application Icon Pin
Verdant12314-Feb-04 21:38
Verdant12314-Feb-04 21:38 
GeneralRe: Default Application Icon Pin
Nick Parker15-Feb-04 3:55
protectorNick Parker15-Feb-04 3:55 
GeneralRe: Default Application Icon Pin
Verdant12315-Feb-04 14:01
Verdant12315-Feb-04 14:01 
GeneralString Array in C# Pin
Eric Houser14-Feb-04 15:48
Eric Houser14-Feb-04 15:48 
GeneralRe: String Array in C# Pin
Web.Liu14-Feb-04 16:17
Web.Liu14-Feb-04 16:17 
GeneralRe: String Array in C# Pin
Eric Houser14-Feb-04 17:03
Eric Houser14-Feb-04 17:03 
GeneralRe: String Array in C# Pin
leppie14-Feb-04 19:49
leppie14-Feb-04 19:49 
GeneralRe: String Array in C# Pin
Michael P Butler14-Feb-04 21:34
Michael P Butler14-Feb-04 21:34 
Eric Houser wrote:
public string[] strGeoq = new string[30];
strAnimalsq[1] = "Blah Blah Blah";


Assuming this is your code as it is now

class Test
{
  public Test()
  {
  }

  public string[] strGeoq = new string[30];
  strGeoq[1] = "Blah Blah Blah";
}


It can't be done that way, it would have to be something like this

class Test
{
  public Test()
  {
  }

  public string[] strGeoq = new string[30];

  public void Init()
  {
    strGeoq[1] = "Blah Blah Blah";
  }
}


or

class Test
{
  public Test()
  {
  }

  public string[] strGeoq = {"Blah, Blah, Blah", "Another Blah", etc"};
}






Michael

But you know when the truth is told,
That you can get what you want or you can just get old,
Your're going to kick off before you even get halfway through.
When will you realise... Vienna waits for you?
- "The Stranger," Billy Joel
QuestionUnmanaged Dlls ? Pin
veselin_iordanov14-Feb-04 15:40
veselin_iordanov14-Feb-04 15:40 
AnswerRe: Unmanaged Dlls ? Pin
leppie14-Feb-04 19:51
leppie14-Feb-04 19:51 
GeneralRe: Unmanaged Dlls ? Pin
veselin_iordanov15-Feb-04 6:57
veselin_iordanov15-Feb-04 6:57 
AnswerRe: Unmanaged Dlls ? Pin
Heath Stewart16-Feb-04 5:13
protectorHeath Stewart16-Feb-04 5:13 
GeneralRe: Unmanaged Dlls ? Pin
veselin_iordanov16-Feb-04 9:21
veselin_iordanov16-Feb-04 9:21 
GeneralRe: Unmanaged Dlls ? Pin
Heath Stewart16-Feb-04 9:26
protectorHeath Stewart16-Feb-04 9:26 
GeneralRe: Unmanaged Dlls ? Pin
veselin_iordanov16-Feb-04 9:32
veselin_iordanov16-Feb-04 9:32 
GeneralRe: Unmanaged Dlls ? Pin
Heath Stewart16-Feb-04 9:51
protectorHeath Stewart16-Feb-04 9:51 
GeneralRe: Unmanaged Dlls ? Pin
veselin_iordanov16-Feb-04 9:56
veselin_iordanov16-Feb-04 9:56 
GeneralRe: Unmanaged Dlls ? Pin
Heath Stewart16-Feb-04 10:30
protectorHeath Stewart16-Feb-04 10:30 
GeneralRe: Unmanaged Dlls ? Pin
veselin_iordanov16-Feb-04 12:27
veselin_iordanov16-Feb-04 12:27 
GeneralRe: Unmanaged Dlls ? Pin
Heath Stewart17-Feb-04 2:41
protectorHeath Stewart17-Feb-04 2:41 
GeneralChanging Control Locations In C# Pin
Eric Houser14-Feb-04 12:16
Eric Houser14-Feb-04 12:16 
GeneralRe: Changing Control Locations In C# Pin
Colin Angus Mackay14-Feb-04 13:27
Colin Angus Mackay14-Feb-04 13:27 
GeneralRe: Changing Control Locations In C# Pin
Bo Hunter15-Feb-04 7:38
Bo Hunter15-Feb-04 7:38 
GeneralRichTextBox, Scroll Bars and VScroll Event Pin
je_gonzalez14-Feb-04 11:03
je_gonzalez14-Feb-04 11:03 
GeneralCommunication between webservice and win application Pin
Anonymous14-Feb-04 10:59
Anonymous14-Feb-04 10:59 

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.