Click here to Skip to main content
15,887,746 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Apply formatting on multiple Text boxes within a Group box. Pin
Interplain11-Jan-21 3:00
Interplain11-Jan-21 3:00 
GeneralRe: Apply formatting on multiple Text boxes within a Group box. Pin
Gerry Schmitz11-Jan-21 5:05
mveGerry Schmitz11-Jan-21 5:05 
AnswerRe: Apply formatting on multiple Text boxes within a Group box. Pin
Richard Deeming11-Jan-21 22:14
mveRichard Deeming11-Jan-21 22:14 
GeneralRe: Apply formatting on multiple Text boxes within a Group box. Pin
Interplain12-Jan-21 0:56
Interplain12-Jan-21 0:56 
AnswerRe: Apply formatting on multiple Text boxes within a Group box. Pin
Ralf Meier12-Jan-21 2:40
mveRalf Meier12-Jan-21 2:40 
QuestionProblem with Calling builded exe from another form Pin
Member 149553323-Jan-21 0:38
Member 149553323-Jan-21 0:38 
AnswerRe: Problem with Calling builded exe from another form Pin
Victor Nijegorodov3-Jan-21 3:36
Victor Nijegorodov3-Jan-21 3:36 
GeneralRe: Problem with Calling builded exe from another form Pin
Member 149553326-Jan-21 9:38
Member 149553326-Jan-21 9:38 
Hi, sorry for my late reply.

i wanted to use relative paths. Now I tried with absolute patz directly on C://

it is the same problem.

The exe is started but then the problem appeared. So Pathname is OK

How I call the exe:

private void btStart_Click(object sender, EventArgs e)
   {
       string opentest = "C:\\TesterV4\\Data\\Tests\\" + lbHersteller.SelectedItem.ToString() + "\\" + lbTests.SelectedItem.ToString() + "\\netcoreapp3.1\\Basis.exe";

       try
       {

           Process p = new Process();
           p.StartInfo.FileName = opentest;
           p.Start();
           p.WaitForExit();
       }
       catch
       {
           MessageBox.Show("Datei konnte nicht gefunden werden", "Fehler", MessageBoxButtons.OK, MessageBoxIcon.Error);
       }
   }

GeneralRe: Problem with Calling builded exe from another form Pin
Victor Nijegorodov6-Jan-21 9:51
Victor Nijegorodov6-Jan-21 9:51 
GeneralRe: Problem with Calling builded exe from another form Pin
Richard MacCutchan6-Jan-21 22:52
mveRichard MacCutchan6-Jan-21 22:52 
QuestionHelp for a school Project Pin
Member 1502795822-Dec-20 4:48
Member 1502795822-Dec-20 4:48 
AnswerRe: Help for a school Project Pin
Ralf Meier26-Dec-20 23:13
mveRalf Meier26-Dec-20 23:13 
QuestionHow can I setup connectionstring to a webroot dir Pin
Nguyễn Tuấn Anh 9216-Dec-20 18:22
Nguyễn Tuấn Anh 9216-Dec-20 18:22 
QuestionSpecification Pattern for validations Pin
TimWallace25-Nov-20 20:23
TimWallace25-Nov-20 20:23 
AnswerRe: Specification Pattern for validations Pin
Gerry Schmitz26-Nov-20 5:56
mveGerry Schmitz26-Nov-20 5:56 
GeneralRe: Specification Pattern for validations Pin
TimWallace27-Nov-20 15:07
TimWallace27-Nov-20 15:07 
General.Net 5 Performance Improvements Pin
GerVenson24-Nov-20 3:56
professionalGerVenson24-Nov-20 3:56 
GeneralRe: .Net 5 Performance Improvements Pin
Gerry Schmitz27-Nov-20 5:56
mveGerry Schmitz27-Nov-20 5:56 
QuestionInterested in a VB.Net Winforms Master/Detail DataGridView with RichTextBox Cell/Column? Pin
Jo_vb.net15-Nov-20 11:36
mvaJo_vb.net15-Nov-20 11:36 
QuestionMaster/Detail GridView - issue with the some keys not working Pin
Jo_vb.net11-Nov-20 7:09
mvaJo_vb.net11-Nov-20 7:09 
AnswerRe: Master/Detail GridView - issue with the some keys not working Pin
Gerry Schmitz11-Nov-20 11:34
mveGerry Schmitz11-Nov-20 11:34 
GeneralRe: Master/Detail GridView - issue with the some keys not working Pin
Jo_vb.net11-Nov-20 23:59
mvaJo_vb.net11-Nov-20 23:59 
GeneralRe: Master/Detail GridView - issue with the some keys not working Pin
Gerry Schmitz12-Nov-20 2:16
mveGerry Schmitz12-Nov-20 2:16 
Questionaudit trail Pin
Member 1340825926-Oct-20 1:24
Member 1340825926-Oct-20 1:24 
AnswerRe: audit trail Pin
Richard MacCutchan26-Oct-20 2:34
mveRichard MacCutchan26-Oct-20 2:34 

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.