Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: Working with "Date/Time" field of "Access Database" in C# Pin
Sourie24-Sep-08 18:25
Sourie24-Sep-08 18:25 
GeneralRe: Working with "Date/Time" field of "Access Database" in C# Pin
Wendelius24-Sep-08 18:36
mentorWendelius24-Sep-08 18:36 
GeneralRe: Working with "Date/Time" field of "Access Database" in C# Pin
Sourie24-Sep-08 20:13
Sourie24-Sep-08 20:13 
GeneralRe: Working with "Date/Time" field of "Access Database" in C# Pin
meenana24-Oct-10 2:22
meenana24-Oct-10 2:22 
GeneralRe: Working with "Date/Time" field of "Access Database" in C# Pin
RaviRanjanKr24-Oct-10 9:24
professionalRaviRanjanKr24-Oct-10 9:24 
QuestionDesign a Page and Print it ... Pin
I Believe In GOD23-Sep-08 6:24
I Believe In GOD23-Sep-08 6:24 
AnswerRe: Design a Page and Print it ... Pin
Wendelius23-Sep-08 8:21
mentorWendelius23-Sep-08 8:21 
QuestionTaborder for Dynamically-Created Controls Pin
danielhasdibs23-Sep-08 5:29
danielhasdibs23-Sep-08 5:29 
My code creates textboxes based on data from a file. I need to be able to retreive the text from each dynamically-created textbox. By the way, each textbox is contained in a splitcontainer control (spc_Questions).

Here is the code that creates each textbox:

for (cntr = 0; cntr <; NumQ; cntr++)<br />
            {<br />
                input = sr.ReadLine();                <br />
                newTextBox = new System.Windows.Forms.TextBox();<br />
      <br />
                newTextBox.Size = new Size(25, newTextBox.Size.Height);<br />
                newTextBox.MaxLength = 1;<br />
                newTextBox.CharacterCasing = CharacterCasing.Upper;<br />
                newTextBox.TabStop = true;<br />
                newTextBox.TabIndex = cntr;<br />
<br />
                newTextBox.Location = new Point(spc_Questions.Panel1.Right - newTextBox.Size.Width - 10,<br />
                    vHeight);<br />
<br />
                newTextBox.Tag = cntr.ToString();<br />
<br />
                newTextBox.Show();<br />
<br />
                spc_Questions.Panel1.Controls.Add(newTextBox);<br />
<br />
                <br />
<br />
            }  


Any help would be appreciated. Smile | :)
AnswerRe: Taborder for Dynamically-Created Controls Pin
J4amieC23-Sep-08 6:03
J4amieC23-Sep-08 6:03 
GeneralRe: Taborder for Dynamically-Created Controls Pin
danielhasdibs23-Sep-08 6:05
danielhasdibs23-Sep-08 6:05 
AnswerRe: Taborder for Dynamically-Created Controls Pin
teejayem23-Sep-08 6:20
teejayem23-Sep-08 6:20 
GeneralRe: Taborder for Dynamically-Created Controls Pin
danielhasdibs23-Sep-08 6:25
danielhasdibs23-Sep-08 6:25 
GeneralRe: Taborder for Dynamically-Created Controls Pin
teejayem23-Sep-08 6:30
teejayem23-Sep-08 6:30 
GeneralRe: Taborder for Dynamically-Created Controls Pin
danielhasdibs23-Sep-08 6:35
danielhasdibs23-Sep-08 6:35 
AnswerRe: Taborder for Dynamically-Created Controls Pin
I Believe In GOD23-Sep-08 6:33
I Believe In GOD23-Sep-08 6:33 
AnswerRe: Taborder for Dynamically-Created Controls Pin
danielhasdibs23-Sep-08 6:52
danielhasdibs23-Sep-08 6:52 
QuestionChanging Word save directory in C# Pin
Dave Aitch23-Sep-08 4:30
professionalDave Aitch23-Sep-08 4:30 
AnswerRe: Changing Word save directory in C# Pin
selcuks23-Sep-08 4:34
selcuks23-Sep-08 4:34 
GeneralRe: Changing Word save directory in C# Pin
Dave Aitch23-Sep-08 5:03
professionalDave Aitch23-Sep-08 5:03 
QuestionControls parent is null in call back procedure when control is reloaded Pin
Chazzysb23-Sep-08 4:01
Chazzysb23-Sep-08 4:01 
AnswerRe: Controls parent is null in call back procedure when control is reloaded Pin
Wendelius23-Sep-08 8:44
mentorWendelius23-Sep-08 8:44 
QuestionSorting on Datagridview removes values from Image column en removes row.height [modified] Pin
ddecoy23-Sep-08 3:37
ddecoy23-Sep-08 3:37 
AnswerRe: Sorting on Datagridview removes values from Image column en removes row.height Pin
ddecoy23-Sep-08 5:02
ddecoy23-Sep-08 5:02 
QuestionConverting C++ COM to C# Pin
LeonardLay23-Sep-08 3:32
LeonardLay23-Sep-08 3:32 
AnswerRe: Converting C++ COM to C# Pin
cpkilekofp25-Sep-08 3:00
cpkilekofp25-Sep-08 3:00 

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.