Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~966 People Reached
Favorite Tags
Member Avatar for rannamaa

Im making a program in wich I need to monitore (import) a variable (number from an other program window every time the variable changes. There are very much other information in this window but I only want this number that is occuring at a sertain position in the window. How …

Member Avatar for triumphost
0
160
Member Avatar for rannamaa

In Java and c# you can get the total lenght of an array with array.length or simular. Not only the length of the filled elements, I want the length of the total array. Lets say the array is introduced as this. [CODE]string array[100];[/CODE] Maybe its half filled or not it …

Member Avatar for rannamaa
0
114
Member Avatar for rannamaa

I try to get this to work... [CODE] for(int i = 0; i < size; i++){ if(nameList[i] != NULL){ //save name } else cout << "Namelist is full" << endl; } [/CODE] but NULL is not exepted in a situation like this...or...? I want to put in the name in …

Member Avatar for rannamaa
0
115
Member Avatar for rannamaa

Hello, i have a problem. [CODE] int index2 = 1; foreach(Circle circle in arrays) { if(index2 > 1 && index2 < 6) { Circle c1 = (Circle) arrays[index2 - 1]; Circle c2 = (Circle) arrays[index2 - 2]; Console.WriteLine("Radien på cirkel {0} är {1} och arean är {2}", index2, circle.getRadius(), circle.getArea()); …

Member Avatar for rannamaa
0
202
Member Avatar for rannamaa

Hello. Experiencing validadion error when i validate at [url]http://validator.w3.org/#validate_by_input[/url]. The affected area is this. [CODE] <form id="menu" name="nav_old_notes" action="onClick"><span>Välj vilket protokoll du vill se.</span> <select name="old_notes"> <option selected="selected">Välj månad!</option> <option value="protjan.odt">Januari</option> <option value="protfeb.odt">Februari</option> </select> <input type="button" onClick="location=document.nav_old_notes.old_notes.options[document.nav_old_notes.old_notes.selectedIndex].value;" value="Visa"> </form> [/CODE] The validator says that onClick is not an atribute and …

Member Avatar for rannamaa
0
76
Member Avatar for rannamaa

Trying to learn c# and dont understand why i cant compare string. [CODE] if (answere == 'j' || answere == 'J') { again = true; } else again = false; [/CODE] How do I do to make this happen in c#?

Member Avatar for rannamaa
0
92
Member Avatar for rannamaa

Ive got some quetions and hope someone has the answere. When I create a project i vs and want to have one gui what do I chose, console application or what? When I in the same project want to add a class do I then chose "add class"? If I …

Member Avatar for rannamaa
0
120
Member Avatar for opawix

heres my code: [CODE]#include<iostream> using namespace std; int main() { int x; for(x=3; x<=47; x++) { cout<<x; } system("pause"); return 0; } [/CODE] i just want a little help with this problem: this code cout counts from 3 to 47 but i want to cout 3 then adding 2 to …

Member Avatar for opawix
0
87