Posts
 
Reputation
Joined
Last Seen
Ranked #148
Strength to Increase Rep
+9
Strength to Decrease Rep
-2
98% Quality Score
Upvotes Received
64
Posts with Upvotes
57
Upvoting Members
36
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
41 Commented Posts
9 Endorsements
Ranked #207
Ranked #234
~99.3K People Reached
Interests
music (guitar,piano)
Favorite Tags
Member Avatar for ddanbe

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] :)

Member Avatar for ddanbe
0
1K
Member Avatar for phephe
Member Avatar for LuaMan

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 :)

Member Avatar for brady1239
0
547
Member Avatar for perrytje

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 - …

Member Avatar for Ketsuekiame
0
619
Member Avatar for Violet_82

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 …

Member Avatar for Violet_82
0
7K
Member Avatar for nova4005

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 …

Member Avatar for JamesCherrill
1
235
Member Avatar for hwoarang69

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 …

Member Avatar for hwoarang69
0
556
Member Avatar for bobit

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**. …

Member Avatar for JamesCherrill
0
2K
Member Avatar for prnjn

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 …

Member Avatar for Antenka
0
299
Member Avatar for glad024

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]

Member Avatar for ChrisHunter
0
380
Member Avatar for john_beginner

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]

Member Avatar for stultuske
0
13K
Member Avatar for pilsdumps

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 …

Member Avatar for BWPro
0
2K
Member Avatar for D19ERY

You're comparing your number with largest to obtain the largest one ... What are the positive numbers - the numbers, which are bigger than 0 ..

Member Avatar for skatamatic
0
139
Member Avatar for nickg21

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 …

Member Avatar for DcFreefall
0
353
Member Avatar for laghaterohan

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]

Member Avatar for vongkol
0
604
Member Avatar for ZER09

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?

Member Avatar for ZER09
0
700
Member Avatar for Srcee

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 …

Member Avatar for berniefitz
0
189
Member Avatar for zachattack05

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 :-/

Member Avatar for zachattack05
0
172
Member Avatar for tarekwarak
Member Avatar for rexdon

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]? ;)

Member Avatar for Munnazz
0
326
Member Avatar for kavi4u

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.

Member Avatar for Munnazz
0
96
Member Avatar for //Gonz

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, …

Member Avatar for Antenka
0
259
Member Avatar for jboy1803

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 …

Member Avatar for Antenka
0
100
Member Avatar for Enrique Nivasch

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].

Member Avatar for Antenka
0
228
Member Avatar for TrueCoding
Member Avatar for jsmall26

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 />"); }%> …

Member Avatar for Antenka
0
117
Member Avatar for haanjae
Member Avatar for haanjae
0
1K
Member Avatar for farshadak2004

Hello, farshadak2004. Take a look at this: [URL="http://www.codeproject.com/KB/cs/GetIdleTimeWithCS.aspx"]Getting the user idle time with C#[/URL]

Member Avatar for skatamatic
0
310
Member Avatar for Sumitbhai

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]

Member Avatar for Antenka
0
210
Member Avatar for Jazerix

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]

Member Avatar for Jazerix
0
125