Click here to Skip to main content
15,894,825 members

Comments by Jo_vb.net (Top 137 by date)

Jo_vb.net yesterday View    
The AI area is here:
https://www.codeproject.com/Feature/CodeProjectAI-Discussions.aspx
Jo_vb.net 3 days ago View    
Thank you.

Now I created a new project with same name.
Copied all needed code files to it, installed NugGet packages and compiled.

Then changed project properties for version to 1.1.0.0
Then started Debug - and it works now!
Jo_vb.net 25-Apr-24 16:32pm View    
In combination with an arrow it is a control character.
Jo_vb.net 21-Apr-24 19:47pm View    
Great + thanks.

Adjusted it and that works:

private void DG_Hyperlink_Click(object sender, RoutedEventArgs e)
{

Hyperlink link = (Hyperlink)e.OriginalSource;
Process? process = Process.Start(new ProcessStartInfo(link.NavigateUri.AbsoluteUri)
{
UseShellExecute = true
});

process!.WaitForExit();
}
Jo_vb.net 21-Apr-24 14:00pm View    
Unfortunately with
compiler.StartInfo.UseShellExecute = true;
the same error happens as before.