Click here to Skip to main content
15,914,924 members
Home / Discussions / C#
   

C#

 
GeneralRe: Import + Export Excel file to MS SQL Server Pin
Giorgi Dalakishvili17-Jan-08 3:58
mentorGiorgi Dalakishvili17-Jan-08 3:58 
Question[Message Deleted] Pin
EmersioN17-Jan-08 0:36
EmersioN17-Jan-08 0:36 
GeneralRe: How protect a .EXE againt Process Termination ? Pin
Paul Conrad17-Jan-08 13:31
professionalPaul Conrad17-Jan-08 13:31 
GeneralRe: How protect a .EXE againt Process Termination ? Pin
Scott Dorman18-Jan-08 9:27
professionalScott Dorman18-Jan-08 9:27 
Generaldatepicker control in asp .net Pin
chithra.r17-Jan-08 0:28
chithra.r17-Jan-08 0:28 
GeneralRe: datepicker control in asp .net Pin
J$17-Jan-08 6:18
J$17-Jan-08 6:18 
GeneralProblem with Windows application in C# Pin
Member 305788717-Jan-08 0:01
Member 305788717-Jan-08 0:01 
GeneralRe: Problem with Windows application in C# Pin
DaveyM6917-Jan-08 2:04
professionalDaveyM6917-Jan-08 2:04 
You need to create another form (frmpopup or something). Add a variable (_target) to hold the target text box. Ammend the constructor to take a TextBox argument and assign to this in the constructor i.e.
public partial class frmpopup : Form
    {
        private TextBox _target;
        public frmpopup(TextBox target)
        {
            InitializeComponent();
            _target = target;
        }
    }

Add your controls to this form and in the button's click event set _target.Text to whatever is correct.

In the cmdselect's click event on frmadditem, simply declare a new instance of frmpopup passing the textbox to the target argument.
Generalsending free sms Pin
razanabanu16-Jan-08 23:49
razanabanu16-Jan-08 23:49 
GeneralRe: sending free sms Pin
Colin Angus Mackay17-Jan-08 0:00
Colin Angus Mackay17-Jan-08 0:00 
GeneralRe: sending free sms Pin
Abhijit Jana17-Jan-08 0:27
professionalAbhijit Jana17-Jan-08 0:27 
Questionhow to install windows service programmatically in c#. Pin
Narendra Mohan16-Jan-08 23:32
Narendra Mohan16-Jan-08 23:32 
AnswerRe: how to install windows service programmatically in c#. Pin
Giorgi Dalakishvili16-Jan-08 23:38
mentorGiorgi Dalakishvili16-Jan-08 23:38 
QuestionList DSN Pin
Programm3r16-Jan-08 22:37
Programm3r16-Jan-08 22:37 
GeneralRe: List DSN Pin
Jimmanuel17-Jan-08 2:43
Jimmanuel17-Jan-08 2:43 
GeneralAccess Device Driver Pin
Sun Rays16-Jan-08 22:23
Sun Rays16-Jan-08 22:23 
GeneralGet Current Working Direcotry/Folder Pin
M Riaz Bashir16-Jan-08 22:20
M Riaz Bashir16-Jan-08 22:20 
GeneralRe: Get Current Working Direcotry/Folder Pin
C-Scharbe16-Jan-08 22:48
C-Scharbe16-Jan-08 22:48 
GeneralRe: Get Current Working Direcotry/Folder Pin
Giorgi Dalakishvili16-Jan-08 23:43
mentorGiorgi Dalakishvili16-Jan-08 23:43 
GeneralRichTextBox ForeColor Problem [modified] Pin
half-life16-Jan-08 20:25
half-life16-Jan-08 20:25 
GeneralRe: RichTextBox ForeColor Problem Pin
Luc Pattyn16-Jan-08 22:25
sitebuilderLuc Pattyn16-Jan-08 22:25 
GeneralRe: RichTextBox ForeColor Problem Pin
half-life17-Jan-08 1:16
half-life17-Jan-08 1:16 
GeneralRe: RichTextBox ForeColor Problem Pin
Luc Pattyn17-Jan-08 2:26
sitebuilderLuc Pattyn17-Jan-08 2:26 
GeneralRe: RichTextBox ForeColor Problem Pin
half-life17-Jan-08 5:36
half-life17-Jan-08 5:36 
GeneralRe: RichTextBox ForeColor Problem Pin
Luc Pattyn17-Jan-08 6:06
sitebuilderLuc Pattyn17-Jan-08 6:06 

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.