- Strength to Increase Rep
- +9
- Strength to Decrease Rep
- -2
- Upvotes Received
- 64
- Posts with Upvotes
- 57
- Upvoting Members
- 36
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
- Interests
- music (guitar,piano)
Re: Hello, ddanbe. I hope this will help to solve your problem: [url=http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.framework.windowsforms.controls/2007-04/msg00018.html]Remove current record triangle from DataGridView RowHeader??[/url] :) | |
Re: This thread never gonna die! :D | |
Re: Hi, seems like it's the right time for recursion. There plenty of examples with it everywhere, so find it, take a shot to make something in your direction .. I'm here to help if you'll meet any dificulties :) | |
Re: Hello, I can't see the problem yet, but I got one thing to say - you don't close neither the connection to your client, nor the [icode]NetworkStream[/icode], that you're working with. This thingy can bring some troubles :) Let me know if it solves the problem .. if not - … | |
Re: Hi there! I'm still under inspiration of reading one more book about good coding practices, so ... I just can't passy by quietly :) I'd like to give a few notes about this thread: # First. # Programming is all about complexity management. So, if you have a task to … | |
Re: I just would like to add something about using methods. You can easily break up your code into methods by simple describing what it does. E.g. "Method takes user input and makes a roll and builds a histogram ...". The activities, separated by "and" word may be easily moved into … | |
Re: Hi, hwoarang69. I'm not able to test your code right now, but I'll take a shot to guess, where's the problem sits. It can be in this method: public void actionPerformed(ActionEvent e) { //all collsion stuff go in here repaint(); } just check, how many times it been called every … | |
Re: Let's start from the beggining ... The main points in your assignment are: 1. "inherits from Game". From those, we have that the base class would be Game. 2. "game is a team or individual game". Look closer at the wording. Game **is Team Game**. And game **is Individual game**. … | |
Re: Well, I'm not too good in knowing JMF, but in pieces, maybe we could gather all the info from different solutions provided in both threads into 1 working prog. As a starting point, I'd like to provide one more link: [Code Samples and Apps](http://www.oracle.com/technetwork/java/javase/index-141145.html). The interesting sample is **SimplePlayerApplet.java**. It's … | |
Re: Ahem .. [url=http://www.daniweb.com/forums/announcement61-2.html][COLOR="Red"][B][U]We only give homework help to those who show effort[/U][/B][/COLOR][/url] | |
Re: Hello, I haven't faced such problem before .. maybe this might help you: [url=http://forums.sun.com/thread.jspa?threadID=228168&messageID=1028281]Java Programming [Archive] - Clear screen?[/url] | |
| Re: Hello, unfortunatelly I have no tools to test your code right now .. but I want share some thoughts about that. I suppose that, that might be a problem with boxing of a ref-type variable when passing it in parameters list (by the way, have you tried passing it as … |
Re: You're comparing your number with largest to obtain the largest one ... What are the positive numbers - the numbers, which are bigger than 0 .. | |
Re: Hello, your code seems to be ok. But, one thing that I suspect .. what is the value of "ctrl.Controls.Count" when you get the [QUOTE=nickg21]error that @chkText either has already been set[/QUOTE]? Try to debug .. what conditions are, when your prog is trying to add this parameter more than … | |
Re: Hello, you can iterate through selected items in your ListBox using [url=http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.selecteditems.aspx]ListBox.SelectedItems Property[/url] | |
Re: Hello, ZER09. Public property is enough to get this working. I've tried, and it displayed all I wanted. Can't say why yours is acting wrong. Can you provide a code, where you add a child form to a parent MDI container? | |
Re: You can take a look at the progs, that you usually use: different viewers, chat clients, Music/Video players, file managers, hardware utilities etc. etc. .. and make your own. With the functionality, that it's missing (well, actually about any prog you can say "It's a good one, but if it … | |
Re: Hello, zachattack05. Can you provide a code, which is used to save your data? So I can analyze what's happening wrong there. I don't see the advantages from breaking all this into 2 steps (you still need to update both tables). Maybe I misunderstood something :-/ | |
Re: I guess, one of the easiest things is Bubble Sort. It shall do this trick ;) | |
Re: Hello, rexdon. Are you looking for something like this: [URL="http://stackoverflow.com/questions/3337981/c-sharp-hex-mask-for-maskedtextbox-input"]C# Hex Mask for maskedtextbox input[/URL]? ;) | |
Re: If your function can be shared between few forms, why don't take it off the specific form and put it in a separate class? It even can be a static method, accessible from outside. So you just call it in your forms. | |
Re: Hi, GonzR. Here's a few points that may be helpful: 1. [URL="http://msdn.microsoft.com/en-us/library/yyxz6h5w.aspx"]Char.IsLetter Method (Char)[/URL]. 2. [URL="http://msdn.microsoft.com/en-us/library/7f0ddtxh.aspx"]Char.IsDigit Method (Char)[/URL] 3. In C#, strings are char arrays, so there's no need to convert them. You can just iterate through string using any loop. 4. Also, there's an option to check your string, … | |
Re: Hello, jboy1803. Here we go .. [CODE=c#]this.laptop_InformationTableAdapter.Fill(this.laptopsDataSet.Laptop_Information);[/CODE] Here, you make your adapter to obtain the data from your DataBase and put it in the specified table. You can treat adapter as a communication channel between your DataBase and the DataSet/DataTable in your App. [CODE=c#] List<string> manufactures = new List<string>(); for … | |
Re: Hello, Enrique. I'm just wondering, why are you trying to access the method through [ICODE]form1Instance[/ICODE] instance? Why then you're creating a [ICODE]writerDelegateInstance[/ICODE] delegate to store the reference to this method? Also, to escape circular references, you can specify the full qualified name of a class (including it's namespace): [ICODE]SameSpace.Form1[/ICODE]. | |
Re: Is it a requirement to use an array (rather than a collection)? | |
Re: Hello, Justin. I don't know the ColdFusion, so I'll try to guess what you want :) The closest solution I came up with is: [CODE=ASP.NET] <% string[] list = { "red", "blue", "yellow", "green" }; for (int i = 0; i < list.Length; i++) { Response.Write(list[i] + "<br />"); }%> … | |
Re: Hello, [URL="http://www.csharp-examples.net/local-ip/"]Check Local IP Address [C#][/URL]. | |
Re: Hello, farshadak2004. Take a look at this: [URL="http://www.codeproject.com/KB/cs/GetIdleTimeWithCS.aspx"]Getting the user idle time with C#[/URL] | |
Re: I suppose, you already got your answers on CodeProject ;) [URL="http://www.codeproject.com/Questions/290736/Can-i-track-WM_ENTERMENULOOP-WM_INITMENU-WM_EXITME"]Can i track WM_ENTERMENULOOP / WM_INITMENU & WM_EXITMENULOOP messages of any application?[/URL] | |
Re: Hello, Jazerix. Take a look at: [URL="http://www.c-sharpcorner.com/UploadFile/mahesh/printerslisting06072007092859AM/printerslisting.aspx"]How to get printers listing in C#[/URL] and [URL="http://www.dotnetcurry.com/ShowArticle.aspx?ID=148"]Retrieve a List of Installed Printers on the Network Using WMI, C# and VB.NET[/URL] |