Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
75% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
~4K People Reached
About Me

Simple, honest, nice guy.

Member Avatar for MrCapuchino

Just a thought: Maybe you shoul'd try to paint only whatever needs to be updated from time to time and not the whole form! Maybe the whole content in a panel or such.. Or maybe just the snake, no?

Member Avatar for ddanbe
0
1K
Member Avatar for Momerath
Member Avatar for gunnerone

Just test if the value is empty or null with empty() function. [CODE] foreach( $_POST[ 'count' ] as $textBoxIndex => $textBoxValue ) { if( !empty($textBoxValue) ) echo '<br />Textbox ' . $textBoxIndex . ' has value [' . $textBoxValue . ']'; } [/CODE] Cheers!

Member Avatar for Rynkadink
0
86
Member Avatar for simagen

To check if a CheckBox isn't checked use: [CODE] if(ChckBxAND1.Checked == false) { ..... } [/CODE] or use: [CODE] if(!ChckBxAND1.Checked) { ..... } [/CODE]

Member Avatar for Momerath
0
224
Member Avatar for Rynkadink

Hi there, I'm quite new to ASP.NET development so i don't know what's the best way to do this... I want to list some data in several rows and have a column with a checkbox or radiobutton that allows the user to select a row; Then I should get a …

Member Avatar for Akash Saikia
0
455
Member Avatar for denonth

I recommend you to take a look at [URL="http://msdn.microsoft.com/en-us/library/ee681613%28v=vs.95%29.aspx"]RichTextBox[/URL]

Member Avatar for abelLazm
0
170
Member Avatar for Arjun_Sarankulu

Lookup for StreamReader and StreamWriter on msdn. You'll find that class very usefull for that matter. [URL="http://msdn.microsoft.com/en-us/library/system.io.streamreader.aspx"]StreamReader Doc.[/URL] [URL="http://msdn.microsoft.com/en-us/library/yhfzs7at.aspx"]StreamReader on Doc. w/example[/URL] [URL="http://msdn.microsoft.com/en-us/library/system.io.streamwriter.aspx"]StreamWriter Doc.[/URL] With the methods of those classes you can easily achive want you want to do. If you need some more help, just ask. ;) Hope it …

Member Avatar for wishesqq
0
237
Member Avatar for Weppies

I'm not quite sure what your asking. Why can't you use File.Copy()? You can select a file from a dialog using OpenFileDialog object, this will give you the file selected, having paths and file name then it's just a matter of copy... You could use a function to copy like …

Member Avatar for Rynkadink
0
153
Member Avatar for sirko

[URL="http://iridescence.no/post/CreatingaSingleInstanceApplicationinC.aspx"]http://iridescence.no/post/CreatingaSingleInstanceApplicationinC.aspx[/URL] Hope it helps.

Member Avatar for Rynkadink
0
279
Member Avatar for Nitin Daphale
Member Avatar for MrCapuchino

I belive you have the coords/position of one vertex of each rectangle; Having this and the lenght of the sides it's quite simple, I guess. Taking as reference the top left vertex of the outter rectangle and comparing with the position of the top left vertex of the inner rectangle …

Member Avatar for Rynkadink
0
138
Member Avatar for gungrayve

Hi there, Here's some code that I hope it will help you. [CODE]// Folder path; string sourcePath = Application.StartupPath; DirectoryInfo di = new DirectoryInfo(sourcePath); // File name; string oldName = "file.txt"; FileInfo[] files = di.GetFiles(oldName, SearchOption.TopDirectoryOnly); // Path to destination folder; string destinationPath = sourcePath + @"\Folder\"; // New name …

Member Avatar for Rynkadink
0
168
Member Avatar for ajinkya112

Your code is kind of messy. Once you do it for one table on one DB there's no dificulty in doing it on the other, same process, different connection. Setup different connections, different commands and execute.

Member Avatar for Rynkadink
0
140
Member Avatar for ayushi12
Member Avatar for Rynkadink

Hi! I'm form Portugal, recently graduated on Computer Science. After 'crashing' into your Forum over and over again when I was looking for some help about programming I decided to sign up and be part of this community. You already helped me a lot of times before so, I'm looking …

Member Avatar for Rynkadink
0
46