4,439 Posted Topics
Re: I normally (just as decepticon) don't give solutions to homework. I'll make an exception this time: ref class Resource { private: bool disposed; public: Resource() { disposed = false; } ~Resource() // IDisposable { Dispose(true); } protected: !Resource() // Finalize { Dispose(false); } void Dispose(bool disposing) { if (disposing) { … | |
Re: Although elaborate, your question is not very clear. | |
Re: Is it, that you have to have 5 marks and only a table with 4 marks that confuses you? | |
Re: First, you got to have some sort of "masochistic" attitude, because in the beginning your fingertops are going to hurt like hell. :D The second most important thing: look down from the **nut** over the **neck** in the direction of the **bridge**. The **strings** should be as close as possible … | |
Re: Yes, I have a marvelous idea. If you want us to help you, why don't you send us some code and point to the line where the error occurs. For you it is very obvious what **formtaut2** is, not so for us, so please be more specific in your questioning. | |
Re: Did you try to use more terms? My first guess is that the series of ln(0.5i) converges much slower than the series of ln(0.5). | |
Re: Don't really know too much about it. But I can say I would choose PhoneGap if I know HTML and CSS and Javascript very well. If I were a C# developer familiar with .NET I would go for Xamarin. Well, for what it's worth, my penny of advise... | |
Re: Perhaps have a look at [this DaniWeb thread](http://www.daniweb.com/software-development/cpp/threads/470006/c-graphics-problem). | |
Re: See [Click Here](http://www.daniweb.com/software-development/vbnet/threads/470035/splitting-the-string) | |
Re: Parse the string char by char. As long as it is a letter put it in myText(n), if no letter or digit found like ';' increase n and place that char in the next myText. | |
Re: It may also help if you see & as an **address of** operator. o in this statement: `INT32* pVoltage = &Voltage_High;` you define a pointer to an int32 and you give it an address of a float. I guess the compiler is not happy with that. int32 is 4 bytes … | |
Re: It all depends how good, tasty and original, the beverage is you come up with. | |
Re: If you have VS you can also connect to a database via the Data menu. | |
Re: Why not create your own window without titlebar? [Click Here](http://msdn.microsoft.com/en-us/library/czada357.aspx) | |
Re: Quite OK! It'll even get worse over the years! Mark my words! :D Don't believe that, let's say a great mathematician knows ALL the math formulas. But if he needs them, he will be able to find them. | |
Re: Just google [example](http://www.math.utah.edu/~treiberg/Perspect/Perspect.htm) Success! | |
Re: Hi beyn, welcome at DaniWeb. Well, you could start with this [DaniWeb thread](http://www.daniweb.com/software-development/csharp/threads/437362/getting-started-with-c-the-list). | |
Re: You should be more specific in your questioning, as Ketsuekiame already pointed out. I'm inferring it could have something to do with [method overloading](http://www.dotnetperls.com/overload) | |
Re: ? De Bell[B]a[/B] Galic[B]a[/B]: [url]http://en.wikipedia.org/wiki/Commentarii_de_Bello_Gallico#Book_I[/url] My name is Danny. In the nineties I tried to make an account on Yahoo to play chess. I tried to use Danny which was obviously too common and already in use. So I changed it to danbe(be abreviation of my country Belgium) Then Yahoo … | |
Re: Perhaps we all should stop driving? Driving a car pollutes the air with cancerogenic substances and fine dust, which in the end will kill us all. ![]() | |
Re: This should do the trick: private void Window_MouseMove(object sender, MouseEventArgs e) { Point P = e.GetPosition(this); } | |
Re: Hi, sam wage, welcome here at DaniWeb. I'm in with grarhakim here. If you can avoid it, don't annoy users with error messages and exceptions, just because the poor user typed something wrong in a date. | |
Re: Hi belladiluna, welcome here at DaniWeb! Because for the most part, you just have formulas, this should be relatively easily translated to c#. Also remember that c# can make use of charting, via a .NET [Chart class](http://msdn.microsoft.com/en-us/library/system.windows.forms.datavisualization.charting.chart(v=vs.110).aspx) | |
Re: Could you specify what you mean by your question? What you mean by accessing an integer, from a database,from a file from an array... | |
Re: Hi Firozeh, welcome here at DaniWeb. I guess you need to know more about regular expressions, called [Regex](http://msdn.microsoft.com/en-us/library/az24scfc(v=vs.110).aspx) | |
Re: [Click Here](http://www.youtube.com/watch?v=lyZQPjUT5B4) For an example of bubble sort. | |
Re: To be honest, I never noticed it before. But it looks very interesting and I will certainly have a look at times. Thanks Dani, keep up the good work! :o) | |
Re: Hi, guys, thanks for the info. :) Would a cheap upgrade also work if I have VS 2010 Pro and Windows 7? | |
![]() | Re: Here is a [you tube tutorial](http://www.youtube.com/watch?v=bRf33gZ5K9E) for a very simple calculator, using Visual C++. ![]() |
Re: Here is an old snip I found in my basement that happens to do more or less what you are trying to accomplish. Needs some reworking I guess. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Drawing2D; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading; namespace DumpHeap … | |
Re: What are you in search for? Could you please rephrase your question, it's hardly understandable. | |
Re: ASk an administrator what security measures where taken for the intranet.Example: recieving zip files is restricted etc. | |
Re: Try using `Sfinal = Var/(salaries.length - 1);` for an explanation [see here](http://en.wikipedia.org/wiki/Bessel%27s_correction) Yes, stats is not often everones favorite. ;-) | |
Squaring a number is a rather common task in programming, but if you want to square an integer. Easy you think! Int MySquare = AnInt *.AnInt; This will happily overflow without giving any exception if AnInt is bigger than 46340, unless you put your code in a checked block. Now … | |
Re: Your rectangle is always drawn on the background, the "canvas" of your Panel. Then the other controls are drawn. Just make sure you place them in a position they don't interfere with your rectangle. | |
Re: Perhaps follow [this lesson](http://www.youtube.com/watch?v=8h8UNbsBQt4) | |
Re: I myself did not know it untill recently, but you can do charting, plotting and graphing in C# and .NET. Here is an [example](http://www.youtube.com/watch?v=82jnryBxsnI). A DateTime has a Tics property, which converts "13/9/2 14:24:30" to one number. | |
Re: Perhaps you can combine a MouseDown with [dragging](http://msdn.microsoft.com/en-us/library/za0zx9y0(v=vs.110).aspx)? | |
Re: What you are trying to do is indeed not possible. There is something like [operator overloading](http://msdn.microsoft.com/en-us/library/ms379613(v=vs.80).aspx), but it is rarely needed in every day use of VB, so I would not spoil my learning energy on it right now. | |
Re: Sometimes people find your post offensive, because first, you have to write it down in words(a mail is different from a phone call), second, not all people(me included) understand all the subtleties of the English language. Example: You can **ask** or **demand** an answer. Demand will be rather rude to … ![]() | |
Re: Perhaps you could manipulate the [Tag property](http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.tag(v=vs.110).aspx) of the ListViewItem. Don't no if this will work, never tried it myself, but if I would, I would try this as my first option. | |
Re: You could startby running the macro recorder and doing the actions you need manually. Look at the macro Excel came up with and generalize the macro to your needs. | |
Re: We don't have a clue either. Is it Excel? A DataGridView? From a database? Do you already have some code? (This may be wrong code, doesn't matter) Please let us know. | |
Re: Hi PratyushTheGreat, welcome at DaniWeb! What you need is [linear regression for quadratic curve fitting](http://www.codeproject.com/Articles/63170/Least-Squares-Regression-for-Quadratic-Curve-Fitti) (The trajecory of a projectile is parabolic.) The link has an explanation and code in C#, but it should be fairly easy to google something in C++ I guess. ![]() | |
Re: You have to be aware of the computer archtecture you are working with. | |
Re: Just multiply the probabilities. 0,12 x 0,59 = 0,07 --> 7% | |
Re: Why not read [this](http://www.artofproblemsolving.com/Wiki/index.php/Base_numbers/Conversion)? | |
Re: Hi GrantB, welcome at DaniWeb! Read [this](http://www.daniweb.com/software-development/csharp/code/468063/how-to-read-lines-from-a-csv-file-) but the post in it, with "documentation" by decepticon is very important! | |
Re: Line 39 and 56 are not printing any results of your calculations. |
The End.