Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: akaballa
  • Content: Threads
  • Order by date
  1. akaballa

    Multidimensional Array

    Hi, While creating this program i keep gettin this error that says: "Invalid Rank Specifier: expected ',' or ']'" using System; class New { public static void Main() { int[,,] myArray = new int[,,] { {200, 100, 100},//problem here {100, 200...
  2. akaballa

    unassigned variable

    Hi, Im new at C# programming....just practicing some programming concepts. I was working on a array program...when I encountered this error message: "Use of unassgined local variable 'avg'". I had already declared this variable previously. So Im not sure how to fix this error. using...
  3. akaballa

    invoking method

    Hi, I keep getting an error message when I try to call the below methods and show output them in the console.WriteLine method. Please have a look: using System; namespace ConsoleApplication1 { class Building { int floor; int occupants; int area...
  4. akaballa

    Form being submitted despite having one empty field

    Hello, I am creating a form. In this form I have this section with several options (radio buttons). Now I made it mandatory to select an option using the if statement. However, when I click 'ok' on the alert box, the message is still being sent. Here is the code: if...

Part and Inventory Search

Back
Top