Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
4 Commented Posts
0 Endorsements
Ranked #2K
~3K People Reached
Favorite Tags
Member Avatar for edepperson

I'm trying to encrypt a tif file using RijndaelManaged. Initially I was getting "Padding is invalid and cannot be removed" error. Got that fixed by adding FlushFinalBlock() to my Encryption method. Now, however, when I try to decrypt a file that has been encrypted in a different application (they both …

Member Avatar for mrhoso
0
226
Member Avatar for AngelicOne

I want to find out whether the password is incorrect for the username. I'm using sqldatareader.

Member Avatar for AngelicOne
0
120
Member Avatar for Antikythera

To start I enter some information into 4 textboxes which then the data is stored into a class. I just add the class object into the list box to keep things simple and when i click on the object in the listbox I want it to show the original text …

Member Avatar for edepperson
0
145
Member Avatar for rutul

Hello, I am new with c#. I need help in splitting the operators and operand in two different arrays. For example 4+5-3-6+7 is an input string, so in this i want 4,5,3,6,7 in one array and +,- in another array . can anyone please help me out ?

Member Avatar for mono_jit23
1
1K
Member Avatar for scothy

Hi All, I am developing an windows application in .Net 2005 with C# coding. One part of my work, the functionality is 1. Use USB barcode scanner. 2. When something is scanned, it records the item number and automatically pulls the item price from the database. 3. After an item …

Member Avatar for edepperson
0
86
Member Avatar for zachattack05

Maybe this is more of a "how do you report progress" topic. I have a progress bar on a form. The same form launches 2 separate threads. I would like each thread to report to the same progress bar. Instead of cluttering my code up with a bunch of stuff …

Member Avatar for edepperson
0
576
Member Avatar for jackparsana
Member Avatar for ddanbe
0
190
Member Avatar for Rhuntsman21

I am using this code to clear a form but it is throwing an error. Any help is appreciated. [CODE=c sharp]public static void ClearForm(Control parent) { foreach (Control ctrControl in parent.Controls) { if (object.ReferenceEquals(ctrControl.GetType(), typeof(TextBox))) { ((TextBox)ctrControl).Text = string.Empty; } else if (object.ReferenceEquals(ctrControl.GetType(), typeof(RichTextBox))) { ((RichTextBox)ctrControl).Text = string.Empty; } else …

Member Avatar for Rhuntsman21
0
140
Member Avatar for jammiedude

Hi i am trying to send an email via C# and having a little trouble with error code: Mailbox unavailable. The server response was: 5.7.1 Unable to relay for =@p0 I have had a good look round and it seems it is a problem with authentication... So i set up …

Member Avatar for jammiedude
0
131
Member Avatar for ja0

Hi, I want to know how to get the total of rows (of myRead) after I executed: myRead = myCommnd.ExecuteReader(); The only way I get it is using a loop, but exist a command for that? Thanks!

Member Avatar for ja0
0
126
Member Avatar for judithSampathwa

Hi there, I have a question in datagrid view , hwat I want is when a user edits a datagridview cell in a row in the datagridview I want to check a check box in the same row, how can I do this and what is the event that I …

Member Avatar for Geekitygeek
0
152
Member Avatar for sommer_queen

Hello everyone , Have a small problem which i dont know how to deal with . at the same time not sure if i need delegate or event handlers . here it goes . I have two classes with two forms : Form A and Progress Form . Form A …

Member Avatar for edepperson
0
109
Member Avatar for ajijacobm

hi, I have been doing my ASP.net project in C#.I am a beginner to a programming world.i have Performed executed some sql queries by writing some Connection strings..But i am looking for finding another method,which i could get simpler by calling some function like "studadapter.fill(dataset,"src table")" which is to fill …

Member Avatar for ajijacobm
0
155