Click here to Skip to main content
15,899,313 members
Home / Discussions / C#
   

C#

 
GeneralText Validation Pin
MumbleB13-Apr-08 23:44
MumbleB13-Apr-08 23:44 
GeneralRe: Text Validation Pin
phannon8613-Apr-08 23:52
professionalphannon8613-Apr-08 23:52 
GeneralRe: Text Validation Pin
Christian Graus13-Apr-08 23:53
protectorChristian Graus13-Apr-08 23:53 
GeneralRe: Text Validation Pin
MumbleB14-Apr-08 2:39
MumbleB14-Apr-08 2:39 
GeneralRe: Text Validation Pin
Christian Graus14-Apr-08 3:02
protectorChristian Graus14-Apr-08 3:02 
GeneralRe: Text Validation Pin
N a v a n e e t h13-Apr-08 23:56
N a v a n e e t h13-Apr-08 23:56 
GeneralRe: Text Validation Pin
Herman<T>.Instance14-Apr-08 2:38
Herman<T>.Instance14-Apr-08 2:38 
QuestionHow to manipulated arraylist or remove() of arraylist? Pin
vishalcodeproj13-Apr-08 23:36
vishalcodeproj13-Apr-08 23:36 
Hello,
I am coping contents of DataReader in to ArrayList and bind this ArrayList to dropdownlist1.Now i want to remove the item from my arraylist which has been selected by dropdownlist1,after deleting d item i want to bind the updated arraylist to the another dropdownlist and so on. My code looks like following....

item = new ArrayList();
conn.Open();
string qitem = " SELECT DESCRIPION FROM ITEM_MASTER ORDER BY DESCRIPION";
OracleCommand ocmd = new OracleCommand(qitem, conn);
OracleDataReader odr = ocmd.ExecuteReader();
if (odr.HasRows)
{
while (odr.Read())
{
item.Add(odr.GetString(0));
}
}
odr.Close();
conn.Close();
bind_control(ddl_mainItem, item);

Now i want to delete item selected by ddl_mainItem.What can I do?
Plz help me.....
AnswerRe: How to manipulated arraylist or remove() of arraylist? Pin
Christian Graus13-Apr-08 23:38
protectorChristian Graus13-Apr-08 23:38 
GeneralDataTable.Merge() Method Pin
half-life13-Apr-08 23:32
half-life13-Apr-08 23:32 
Questionhow i apply encript and decript operations in C# Pin
saiftanoli13-Apr-08 23:27
saiftanoli13-Apr-08 23:27 
AnswerRe: how i apply encript and decript operations in C# Pin
Christian Graus13-Apr-08 23:37
protectorChristian Graus13-Apr-08 23:37 
GeneralRetrieving Records from Excel Pin
Dotnetkanna13-Apr-08 23:11
Dotnetkanna13-Apr-08 23:11 
GeneralRegex.Replace Enquiry [modified] Pin
livez13-Apr-08 23:09
livez13-Apr-08 23:09 
GeneralRe: Regex.Replace Enquiry Pin
Christian Graus13-Apr-08 23:36
protectorChristian Graus13-Apr-08 23:36 
GeneralRe: Regex.Replace Enquiry Pin
livez14-Apr-08 1:33
livez14-Apr-08 1:33 
GeneralLazy Loading Pin
satsumatable13-Apr-08 23:09
satsumatable13-Apr-08 23:09 
GeneralRe: Lazy Loading Pin
Christian Graus13-Apr-08 23:35
protectorChristian Graus13-Apr-08 23:35 
QuestionMultiLanguage Support for MessageBox YesNo button Pin
cooltoad12313-Apr-08 22:50
cooltoad12313-Apr-08 22:50 
GeneralRe: MultiLanguage Support for MessageBox YesNo button Pin
N a v a n e e t h13-Apr-08 22:58
N a v a n e e t h13-Apr-08 22:58 
GeneralRe: MultiLanguage Support for MessageBox YesNo button Pin
Christian Graus13-Apr-08 23:04
protectorChristian Graus13-Apr-08 23:04 
GeneralRe: MultiLanguage Support for MessageBox YesNo button Pin
cooltoad12313-Apr-08 23:09
cooltoad12313-Apr-08 23:09 
GeneralGenerate CREATE TABLE script from DataTable structure [modified] Pin
netDeveloper13-Apr-08 22:01
netDeveloper13-Apr-08 22:01 
Questionread and close image from file ?? Pin
Denver Thomas13-Apr-08 21:04
Denver Thomas13-Apr-08 21:04 
GeneralRe: read and close image from file ?? Pin
Christian Graus13-Apr-08 21:12
protectorChristian Graus13-Apr-08 21:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.