Click here to Skip to main content
15,916,941 members
Home / Discussions / C#
   

C#

 
QuestionExport data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Member 1113495413-Nov-14 23:28
Member 1113495413-Nov-14 23:28 
AnswerRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Eddy Vluggen14-Nov-14 0:25
professionalEddy Vluggen14-Nov-14 0:25 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Member 1113495417-Nov-14 23:11
Member 1113495417-Nov-14 23:11 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Pete O'Hanlon17-Nov-14 23:52
mvePete O'Hanlon17-Nov-14 23:52 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Eddy Vluggen18-Nov-14 0:32
professionalEddy Vluggen18-Nov-14 0:32 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Member 1113495418-Nov-14 21:54
Member 1113495418-Nov-14 21:54 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Eddy Vluggen19-Nov-14 2:58
professionalEddy Vluggen19-Nov-14 2:58 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Member 1113495419-Nov-14 23:30
Member 1113495419-Nov-14 23:30 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Eddy Vluggen20-Nov-14 5:11
professionalEddy Vluggen20-Nov-14 5:11 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Member 1113495421-Nov-14 22:28
Member 1113495421-Nov-14 22:28 
QuestionRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
Eddy Vluggen22-Nov-14 3:57
professionalEddy Vluggen22-Nov-14 3:57 
GeneralRe: Export data from Excel (xls file) to Sql data table by clicking on export button (c#) Pin
PIEBALDconsult22-Nov-14 4:55
mvePIEBALDconsult22-Nov-14 4:55 
QuestionHow To Increase Width Excel Cell Size When I Export Excel File Pin
Nishant.Chauhan8013-Nov-14 22:11
Nishant.Chauhan8013-Nov-14 22:11 
AnswerRe: How To Increase Width Excel Cell Size When I Export Excel File Pin
Dave Kreskowiak14-Nov-14 2:15
mveDave Kreskowiak14-Nov-14 2:15 
QuestionHow to create Data recovery application using c#.net windows form Pin
Srikanth5913-Nov-14 18:27
Srikanth5913-Nov-14 18:27 
AnswerRe: How to create Data recovery application using c#.net windows form Pin
Dave Kreskowiak13-Nov-14 18:32
mveDave Kreskowiak13-Nov-14 18:32 
RantRe: How to create Data recovery application using c#.net windows form Pin
Richard Deeming14-Nov-14 2:15
mveRichard Deeming14-Nov-14 2:15 
QuestionPlug in for Gecko Browser Window to view a PDF? Pin
PDTUM13-Nov-14 7:54
PDTUM13-Nov-14 7:54 
QuestionHow to handle recording method in main form? Pin
Member 1110634813-Nov-14 4:37
Member 1110634813-Nov-14 4:37 
I'd like to apply voice recording function to specific application which uses threads. There are START and STOP buttons on application besides other forms.
I can start the recording method but the main application is not responding and I cannot stop the recording process.
I would appreciate any solution to resolve this issue.


private void barButtonItemStartRec_ItemClick(object sender, ItemClickEventArgs e)
        {
            barButtonItemStartRec.Enabled = !(barButtonItemStopRec.Enabled = true);            

            var dlg = new MainForm();
            BackgroundWorker recWorker = new BackgroundWorker();
            recWorker.DoWork += dlg.StartRec;
            recWorker.RunWorkerAsync();          
        }
        
private void barButtonItemStopRec_ItemClick(object sender, ItemClickEventArgs e)
        {            
            barButtonItemStartRec.Enabled = !(barButtonItemStopRec.Enabled = false);
            var dlg = new MainForm();
            dlg.StopRec();            
        }

AnswerRe: How to handle recording method in main form? Pin
Eddy Vluggen13-Nov-14 5:39
professionalEddy Vluggen13-Nov-14 5:39 
GeneralRe: How to handle recording method in main form? Pin
BillWoodruff13-Nov-14 6:22
professionalBillWoodruff13-Nov-14 6:22 
GeneralRe: How to handle recording method in main form? Pin
Eddy Vluggen13-Nov-14 7:14
professionalEddy Vluggen13-Nov-14 7:14 
AnswerRe: How to handle recording method in main form? Pin
BillWoodruff13-Nov-14 6:21
professionalBillWoodruff13-Nov-14 6:21 
GeneralRe: How to handle recording method in main form? Pin
Member 1110634813-Nov-14 21:16
Member 1110634813-Nov-14 21:16 
AnswerRe: How to handle recording method in main form? Pin
Bernhard Hiller13-Nov-14 20:48
Bernhard Hiller13-Nov-14 20:48 

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.