4,439 Posted Topics

Member Avatar for Dani
Member Avatar for Ancient Dragon
Member Avatar for 45ish
0
1K
Member Avatar for Nebil

I don't know with the info you provided. The only thing I can tell for sure is that you acsessed an object before initializing it.

Member Avatar for tarunap
0
243
Member Avatar for christina>you
Member Avatar for mike_2000_17
Member Avatar for Papa_Don
Member Avatar for Tcll

I suppose you want to do rotations in 3D etc.? The math involved can get quite complicated. (Try "*quaternion*") So the only advise I can give is -you can hardly get around it- study some math about 3D matrix transformations. Alas, I believe there is no way around it.

Member Avatar for Tcll
0
498
Member Avatar for joshl_1995

It be having to do something with screencoordinates. Start with having a look at the [PointToScreen](https://msdn.microsoft.com/en-us/library/system.windows.forms.control.pointtoscreen%28v=vs.110%29.aspx) method.

Member Avatar for joshl_1995
0
1K
Member Avatar for tobyITguy

`Pneumono` = concerning the lungs, like in *pneumonia* `ultramicroscopic` = smaller than microscopic `silico` = from silicon the element found in sand and rocks(and in computerchips!) `volcano` = from a volcanic eruption `coniosis` = lungdisease caused by inhalation of dust

Member Avatar for ddanbe
1
320
Member Avatar for theredhosting

You have an idea. You program it on a computer. (That alone is amazing, you tell a thing to do something for you) It does not work.It never does. Then starts the most interesting phase: debugging. Figuring out why it's not working. The thrills and hapiness you feel when your …

Member Avatar for bordogamesdev
1
420
Member Avatar for hadisur_rahman
Re: Book

[This](http://www.amazon.co.uk/dp/0262533057/ref=wl_it_dp_o_pd_S_img?_encoding=UTF8&colid=1E27JBT4MO550&coliid=IYJXGK58GO7O6) could be a good book to start with.

Member Avatar for hadisur_rahman
0
129
Member Avatar for tobyITguy

I don't use it. Mostly develop small things for my own in VS2010 C#,C++,Python,F#. @rubberman: Could you elaborate on what you mean by the rules of MS?

Member Avatar for tobyITguy
0
346
Member Avatar for shahadithyab

Could you give me the email address of your teacher/professor? So I can email him/her the solution and you can continue with whatever you are busy doing and don't have to bother any further.

Member Avatar for shahadithyab
-1
366
Member Avatar for tshukela.george
Member Avatar for tshukela.george
0
290
Member Avatar for tobyITguy

AFAIK it has not much influence, so I should not worry too much. Have a look at the downvotes Dani already recieved, perhaps it will cheer you up! :)

Member Avatar for tobyITguy
0
287
Member Avatar for nitin1

Would it be simular to [pruning](http://en.wikipedia.org/wiki/Pruning_%28decision_trees%29)?

Member Avatar for ddanbe
0
228
Member Avatar for Slavi

Plans exist to put [cows on the Moon](http://apod.nasa.gov/apod/ap150401.html)!

Member Avatar for Slavi
0
493
Member Avatar for Abu_4

Are you serious? Joking? Suppose I would have an idea of that sort, what makes you think I would share that with you? Think for yourself and come up with your own idea.

Member Avatar for ddanbe
0
100
Member Avatar for game4tress

If it would be possible to change into a List, you would have an IndexOf method. This is a simple example, that might give you a hint: List<int> vertices = new List<int> { 1, 3, 5, 4, 9, 6 }; var V3 = (from cur in vertices where (cur == …

Member Avatar for ddanbe
0
285
Member Avatar for Transcendent
Member Avatar for theredhosting

Or a label like *"WITH FRESH EGGS!"*. Why mention it? With what else would the product have been made? Rotten eggs?

Member Avatar for Reverend Jim
0
250
Member Avatar for gangsta gama

Could you sendin some code or some drawing of your classes structure. It would make it much clearer. O, and inheriting from multiple classes is not possible in C#.

Member Avatar for JamesCherrill
0
255
Member Avatar for Kamal_8

It is more complexer than that HiHe. A mixsture of fuel and air explodes to drive the engine. The oxygen not only oxidates the fuel, but also the nitrogen from the air to form different nitrogenoxides which contribute to smog forming. But the OP surely has a solution for that …

Member Avatar for ddanbe
0
183
Member Avatar for theredhosting
Member Avatar for printf

A list is one of the possible implementations, you could use, to implement a stack or a queue. Anotherone would be an array.

Member Avatar for JamesCherrill
0
156
Member Avatar for eskalemberg00
Member Avatar for iamahar
Member Avatar for Mike_25
Member Avatar for lamlomeh

Besides your horrible indentation(you definitly work on that) the code at first sight, looks quite OK. I think you just need to use an endline now and then. `cout << "a line" << endl`

Member Avatar for David W
0
233
Member Avatar for Riya_2

Could it be that the third parameter in you new function is the number of times in your for loop?

Member Avatar for vegaseat
0
315
Member Avatar for Alveena_1

Could you give me the email of your teacher/proffessor, so I can email him/her the solution? In that way, you can continue with whatever you where doing and don't have to bother any further.

Member Avatar for ddanbe
-2
257
Member Avatar for Saboor880

It is not common to use a messagbox in a console application, that's why the reference to Forms is not included by default. If you would startup a Forms application, it will be there.

Member Avatar for DaveAmour
0
2K
Member Avatar for weekendrockstar

AFIAK The Form constructor has no overloads. [See here](https://msdn.microsoft.com/en-us/library/system.windows.forms.form.form%28v=vs.85%29.aspx). If you have a second form you can refer to another form by adding a field not by passing parameters.

Member Avatar for weekendrockstar
0
1K
Member Avatar for xmarker

Could you give me the email of your teacher/proffessor, so I can email him/her the solution? In that way you can continue with whatever you where doing and don't have to bother any further.

Member Avatar for ddanbe
0
156
Member Avatar for somyms

You could time them. C# has a [Stopwatch class](https://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch%28v=vs.110%29.aspx).

Member Avatar for somyms
0
116
Member Avatar for joshl_1995

OK, I believe you: *it doesn't work* now tell me, how can I find out what does not work if you just give me some code and tell me it does not work? I'd like to know WHAT is not working, that it probably is not working is obvious for …

Member Avatar for joshl_1995
0
355
Member Avatar for jeha0

We all need something. First: Read the rules before posting. Second: Post in a new thread, where you can refer to this old thread. Show some evidence what you have done and we will be most happy to try to help you out with all your problems and questions about …

Member Avatar for ddanbe
0
2K
Member Avatar for basit_3

You are only filling up the diagonal of a 100x100 matrix with two one dimensional arrays. Is that your intention? What is the value of n?

Member Avatar for ddanbe
0
198
Member Avatar for nike_jj4
Member Avatar for Phillip_3

WHY DO YOU HAVE TO SHOUT SO LOUD!?!?! Besides that, read the rules. No one is going to help you here. First show some effort yourself.

Member Avatar for ddanbe
-2
234
Member Avatar for Jive_1

'I am doing something wrong and I can't figure it out.' Unless you don't tell us WHAT you are doing wrong(wrong behaviour, errors etC.) we can't figure it out either, by oly looking at your code. Line 9 in your timer2_Tick event handler seems far from OK.

Member Avatar for ddanbe
0
197
Member Avatar for Suzie999

Suspect, you are using Visual Studio. Why do you use the old fashioned method Debug.WriteLine? Why not use the marvelous debugger who sits right under your fingertips? Set some breakpoints and stroll through your code and watch variables change on the way! This is a [nice articl](http://www.codeproject.com/Articles/79508/Mastering-Debugging-in-Visual-Studio-A-Beginn)e about it.

Member Avatar for ddanbe
0
373
Member Avatar for aymenchouikh

In the properties window, you can change many properties of a button to fit your needs. Have a look at the generated code in the form.h file. See how it works and if you wish, you can write this code for yourself also.

Member Avatar for ddanbe
0
412
Member Avatar for Ku Nj
Member Avatar for Zahid_5

What do you consider "*general properties*", could you give an example?

Member Avatar for deceptikon
0
99
Member Avatar for Oyeniran
Member Avatar for kalpesh_1
Member Avatar for Reverend Jim
0
155
Member Avatar for Nuno_1

`entrada` is a private string, returned by the public property `entradas` `if (entradas == "Marketing")` instead of `if (entrada == "Marketing")` ?

Member Avatar for Nuno_1
0
210
Member Avatar for hadisur_rahman
Member Avatar for jwenting
-2
144
Member Avatar for vegaseat

Some 10-15 years ago I had a Mac. I used something called **BootCamp** to switch between Mac and Windows. Worked very good. There is also something like it called **Parallels**. But if it is only GetTickCount, I'm sure there must be some sort of Timer lib on the Mac with …

Member Avatar for vegaseat
0
274

The End.