59 Posted Topics

Member Avatar for Geodude0487

There are a number of ways you could approach this: 1/. It does not really matter which is you main form! You can still start from the login page and move on to the main form if the user validates correctly by changing the start-up form in 'program.cs' e.g. [CODE] …

Member Avatar for Geodude0487
0
209
Member Avatar for bords

I guess that this is some sort of school/college project, I can't tell from what you tell me what the learning aim of the project is. At a glance I would say you needed to look more closely at network programming using UDP or TCP rather than a database.

Member Avatar for RunTimeError
0
95
Member Avatar for bords

I find the easiest way to use a DataGridView is with databinding. If you store your data in a DataSet or DataTable you can bind it to the DataGridView using it's DataSource property.

Member Avatar for Geekitygeek
0
108
Member Avatar for rzhaley

If I understand the question correctly you need to remove the lowest value from the ten inputs and then average the remaining nine values. Currently you are not doing that as the min is never changed from Double.MinValue (-1.7976931348623157E+308 <see the exponent>). I think you need to add all the …

Member Avatar for Geekitygeek
0
233
Member Avatar for questionary

If you are talking about using an application to talk to a browser then you could probably use win32 interop and SendMessage to do that but it would be complicated and you would probably need to do it differently for every different browser. If you are using the WebBrowser control …

Member Avatar for questionary
0
88
Member Avatar for mahendra dubey

see here: [URL="http://msdn.microsoft.com/en-us/library/bb882520.aspx"]http://msdn.microsoft.com/en-us/library/bb882520.aspx[/URL]

Member Avatar for privatevoid
0
38
Member Avatar for SharpNovice

I might be missing somthing here, which _modules object, I can't see any reference to it. I can't realy see what your problem is? You could store a reference to a module in the user class if that helps but I am shooting in the dark.

Member Avatar for privatevoid
0
681
Member Avatar for DrLod

Are you thinking of somthing like this? [CODE] class ShowDog { public float Protocol1Score{} public float Protocol2Score{} public float CalculateScore(){} } public class DogShow { public List<ShowDog> Dogs{} } [/CODE]

Member Avatar for privatevoid
0
124
Member Avatar for Medic873

You could loop through each of the pixels and compare them as below but that would only work based on the same lighting etcetera. You will have to look at some more complex pattern matching algoritms for a more reliable method. It really depends on what you are using the …

Member Avatar for Ravenheart
0
299

The End.