Click here to Skip to main content
15,881,715 members
Home / Discussions / C#
   

C#

 
Questiondatagridvew Pin
Sonia Gupta5-Aug-07 18:18
Sonia Gupta5-Aug-07 18:18 
QuestionRe: datagridvew Pin
T.EDY5-Aug-07 18:31
T.EDY5-Aug-07 18:31 
AnswerRe: datagridvew Pin
Sonia Gupta5-Aug-07 18:47
Sonia Gupta5-Aug-07 18:47 
AnswerRe: datagridvew Pin
Brady Kelly5-Aug-07 23:25
Brady Kelly5-Aug-07 23:25 
Questionregistering COM component as Out proc sever Pin
KrunalC5-Aug-07 17:44
KrunalC5-Aug-07 17:44 
AnswerRe: registering COM component as Out proc sever Pin
KrunalC5-Aug-07 19:50
KrunalC5-Aug-07 19:50 
GeneralRe: registering COM component as Out proc sever Pin
Dave Kreskowiak6-Aug-07 4:12
mveDave Kreskowiak6-Aug-07 4:12 
QuestionChecking last index of the array giving me a problem. VS2005 C# Pin
foolios5-Aug-07 16:47
foolios5-Aug-07 16:47 
[CODE]
private void CreateMaze(int h, int w)
{
int r = h * w;
Room[] rooms = new Room[r];
Random rm = new Random();
int newrm = rm.Next(0, r);
int nrmcntr = newrm;
do
{
rooms[newrm].rWall = "|";
if (newrm == rooms.Length() -1)
{
newrm = 0;
}
newrm += 1;
}
while (newrm != nrmcntr);
[/CODE]

At the line:
if (newrm == rooms.Length() -1)
I am trying to compare an integer to the last index of an array of room objects.

I get the error:
Method name expected
at that line but have no clue.

Thank you in advance for any explanations.
AnswerRe: Checking last index of the array giving me a problem. VS2005 C# Pin
Hessam Jalali5-Aug-07 19:25
Hessam Jalali5-Aug-07 19:25 
Questionpassing parameter from one windows form to another one Pin
dinakatina5-Aug-07 14:47
dinakatina5-Aug-07 14:47 
AnswerRe: passing parameter from one windows form to another one Pin
Christian Graus5-Aug-07 14:55
protectorChristian Graus5-Aug-07 14:55 
QuestionThreading passing parameters to thread Pin
Muhammad Nauman Yousuf5-Aug-07 12:29
Muhammad Nauman Yousuf5-Aug-07 12:29 
AnswerRe: Threading passing parameters to thread Pin
Luc Pattyn5-Aug-07 13:15
sitebuilderLuc Pattyn5-Aug-07 13:15 
GeneralRe: Threading passing parameters to thread Pin
Muhammad Nauman Yousuf6-Aug-07 8:10
Muhammad Nauman Yousuf6-Aug-07 8:10 
AnswerRe: Threading passing parameters to thread Pin
justintimberlake5-Aug-07 17:52
justintimberlake5-Aug-07 17:52 
QuestionHow to load data from database using threading and progressbar Pin
vkuttyp5-Aug-07 8:48
professionalvkuttyp5-Aug-07 8:48 
AnswerRe: How to load data from database using threading and progressbar Pin
Luc Pattyn5-Aug-07 8:56
sitebuilderLuc Pattyn5-Aug-07 8:56 
GeneralRe: How to load data from database using threading and progressbar Pin
vkuttyp6-Aug-07 1:28
professionalvkuttyp6-Aug-07 1:28 
QuestionPleas give me Your help Pin
Thaer Hamael5-Aug-07 8:30
Thaer Hamael5-Aug-07 8:30 
AnswerRe: Pleas give me Your help Pin
Malcolm Smart5-Aug-07 11:26
Malcolm Smart5-Aug-07 11:26 
Questionwindows service set up issue Pin
sujithapril5-Aug-07 8:13
sujithapril5-Aug-07 8:13 
AnswerRe: windows service set up issue Pin
PaulPrice5-Aug-07 21:26
PaulPrice5-Aug-07 21:26 
GeneralRe: windows service set up issue Pin
sujithapril6-Aug-07 7:15
sujithapril6-Aug-07 7:15 
GeneralRe: windows service set up issue Pin
PaulPrice6-Aug-07 21:43
PaulPrice6-Aug-07 21:43 
QuestionPlace form 10px from right side of screen. Pin
jafingi5-Aug-07 7:46
jafingi5-Aug-07 7:46 

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.