4,439 Posted Topics
Re: You would have to use a [WebClient class](http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx) I guess. Not sure if many websites still allow you to "play" around with them. To know some Regex might help also. | |
Re: Just drop one from the window called Toolbox, onto your form. | |
Re: Don't no much about game programming, but if I would try to make one I would have a look at [xna](http://msdn.microsoft.com/en-us/library/bb203894.aspx) Hope it helps a bit. | |
Re: In most languages, math functions are build in. [Look here](http://www.informit.com/library/content.aspx?b=STY_VB6_24hours&seqNum=149) for an overview in VB6 | |
Re: If you define a box filled with say a pot for marmelade, a can for milk etc. Well, that is what you have. If you later "intantiate" a 100 of those boxes, I hope your garage or whatever is big enough. The pots and the cans will at first be … | |
Re: You are assigning a variable (RoomID) to a string property (textRoomID) of the obj_f1 form. Guess you must assign it to the Text property of a TextBox in the Form. | |
Re: Check out [this snippet](http://www.daniweb.com/software-development/csharp/code/371819/code-template-for-a-menu-in-a-console-application) In a class you can use as many nested while loops as you like. | |
Re: @charishma: What you do is swapping by printing two variables on the screen. You do not swap their values in memory. | |
Re: Seems to me, you are affraid to dive in. | |
Re: I used a StreamReader to show every line of a file called "test.txt": private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) { String^ fileName = "test.txt"; try { StreamReader^ DataIn = File::OpenText(fileName); String^ DataStr; int count = 0; while ((DataStr = DataIn->ReadLine()) != nullptr) { count++; MessageBox::Show("Line " + count + " … | |
Re: [This](http://msdn.microsoft.com/en-us/library/1yef90x0.aspx) could help you out. | |
Re: Yes, and why not ask for the type of dog if there is any on this ip adress? Why not read [this](http://en.wikipedia.org/wiki/Nineteen_Eighty-Four)? | |
Re: Did you mean something like this? if (year not ok) { cout wrong year message return -1; } else { do easter calculation return 0; } | |
Tadaa! This is my first attempt at writing in Python, trying to solve a good question posed [here](http://www.daniweb.com/software-development/python/threads/32007/projects-for-the-beginner/17#post2016892) #----------------------------------------------------------------------------------------------- # # Python 2.7 # # Calculating area and radius of polygons with known number of sides and the length of this side # Adapted formulas used from this site: http://www.mathwords.com/a/area_regular_polygon.htm … | |
Re: Use a List **List<stock> Mystocks = new List<stock>();** | |
Re: Yes, try this private void MyBtn_Click(object sender, EventArgs e) { // make a Button point to the sender object, you know it must be a button! Button MyBtn = sender as Button; // now use MyBtn.Name, it will be the directory for the button you clicked on. | |
Re: By posing your question in a new thread and not resurecting and old solved one. | |
Re: I wonder what happens when y=4(=square) and x happens to become 2? Your function would return false I guess. Look at line 14. | |
Re: If you can't even come up with a simple idea now, what are you going to do when later, you have a job and you sometimes have to come up with really difficult to solve ideas? Show us some work you already have done and we all are glad to … | |
Re: [This](http://www.dotnetperls.com/timer) is a little tutorial on how to use a Timer. | |
Re: What do you mean by overlap to another form? | |
Re: Your for loops should be for (int i = 0; i **<** size; i++) instead of for (int i = 0; i **<=** size - 1; i++) | |
Re: What do you mean by > extract varbinary(max) to Write a maximum binary value to an excel file? | |
Re: On line 14 you are setting the constant arrayLength to 0 ? This must give an error. Also in your fillAccounts method you are setting only element with index 5( the constant arrayLength ) Your arrays have 5 elements: counting from 0 to 4! | |
| |
Re: @stultuske: yeah, I want to relive the years 15 to 25! Preferably without knowing what I know now. Wonderful years... | |
Re: CodeProject has several calendar articles. Look them up. Example: [Click Here](http://www.codeproject.com/Articles/16425/MonthView-Calendar) | |
Re: Perhaps this will help: [url]http://www.daniweb.com/software-development/csharp/threads/348696[/url] | |
Re: [Click Here](http://www.cs.auckland.ac.nz/software/AlgAnim/ds_ToC.html) Have fun! | |
Re: 1. x has to be declared and initialized somewhere else, otherwise normal for-loop 2. loop forever | |
Re: In debugmode your program works with a copy of the database, as to not affect your original DB during testing. | |
Re: FYI, there is also an Environment class. Exmaple : [Click Here](http://msdn.microsoft.com/en-us/library/system.environment.getlogicaldrives.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1) | |
Re: Or do all the drawing yourself, look in MSDN. [One Example](http://msdn.microsoft.com/en-us/library/f956fzw1.aspx?cs-save-lang=1&cs-lang=cpp#code-snippet-2). | |
Re: I guess in your country it is even not done to hold ones hand before marriage. Correct me if I'm wrong. I should talk about how you do see the future (work, house, children ...) See how she reacts and act accordingly. And don't be scared if you would prefer … | |
Re: We cannot do much without seeing a bit of code. | |
Re: What do you want to learn? Visual Basic? Python? | |
Re: If the number of employees is under say 100 people, I should stick to an excel sheet. | |
Re: [Click Here for thesis](http://en.wikipedia.org/wiki/Thesis) What is relevant to me in computer science, might not be relevant to you. So I cannot give an answer. | |
Re: Use the Length property of the FileInfo class. [Click Here](http://msdn.microsoft.com/en-us/library/system.io.fileinfo.aspx) Convert this long number to your liking. | |
Re: Google "VB.NET tutorial" and after some reading, start coding. | |
Re: Hi vamsi.siddhani, welcome at DaniWeb I have this [video tutorial](http://msdn.microsoft.com/en-us/vstudio/bb798028) it is C# code, but I guess it is exacly what you want and it should be easy to follow. | |
Re: Perhaps [this one](http://en.wikipedia.org/wiki/Brainfuck) | |
Re: You can eat it! [Click Here](http://en.wikipedia.org/wiki/Fatback) | |
Re: Hi dws.ash1, welcome at DaniWeb. Perhaps you could use the CopyFromScreen method from the Graphics class. | |
Re: [Click Here](http://msdn.microsoft.com/en-us/library/system.media.soundplayer.aspx) for MSDN article [Click Here](http://www.youtube.com/watch?v=rcm_VKO41ww) for video tutorial | |
The End.