Visual C# Button Link to website
-
Benjamin Dodd wrote:
i saved a webpage in my documents, so if i use the code: Process.Start(C:\Documents and Settings\stc12191\My Documents) will that open the web page
No. 1 - you didn't put the string in quotes 2 - if you have 20 web pages in this folder, how would you expect windows to just pick one, or even know you wanted to open a web page ? Process.Start starts a program, and if you give it a file, it tries to open it with the default program. So, if you put the name of the htm file at the end of that path, that will work.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Christian Graus wrote:
if you have 20 web pages in this folder, how would you expect windows to just pick one, or even know you wanted to open a web page ?
ooops i forgot that bit :( thanks for your help is this right then ("C:\Documents and Settings\stc12191\My Documents\google") ps. i cannot check the code now as i am not on my laptop which has c# installed
Benjamin Dodd
-
Christian Graus wrote:
if you have 20 web pages in this folder, how would you expect windows to just pick one, or even know you wanted to open a web page ?
ooops i forgot that bit :( thanks for your help is this right then ("C:\Documents and Settings\stc12191\My Documents\google") ps. i cannot check the code now as i am not on my laptop which has c# installed
Benjamin Dodd
So long as google is the name of a html file, and so long as IE can work that out without the file extension being present.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
So long as google is the name of a html file, and so long as IE can work that out without the file extension being present.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
yep, thanks alot mate for the help i will try this now as i have just loaded up my laptop thanks
Benjamin Dodd
-
Benjamin Dodd wrote:
how this same button can also open a website URL.
Create a new website url shortcut file. Open that file using
Process.Start()
method
N a v a n e e t h wrote:
Create a new website url shortcut file. Open that file using Process.Start() method
This code didn't work :( i am using Visual C# 2005 express edition it said that ''Process' does not exist in the current context' am i doing something wrong here? i put this code under the 'button1_Click' area
Benjamin Dodd
-
N a v a n e e t h wrote:
Create a new website url shortcut file. Open that file using Process.Start() method
This code didn't work :( i am using Visual C# 2005 express edition it said that ''Process' does not exist in the current context' am i doing something wrong here? i put this code under the 'button1_Click' area
Benjamin Dodd
-
It says Process 'does not exist in the current context. What am i doing wrong? :(
Benjamin Dodd
-
It says Process 'does not exist in the current context. What am i doing wrong? :(
Benjamin Dodd
C# reversed the code for me....now it says 'System.Diagnoatics.Process' and recognises this. After this i put....'.("C:");' now it says.....Identifier expected and higlights the '('
Benjamin Dodd
-
It says Process 'does not exist in the current context. What am i doing wrong? :(
Benjamin Dodd
-
C# reversed the code for me....now it says 'System.Diagnoatics.Process' and recognises this. After this i put....'.("C:");' now it says.....Identifier expected and higlights the '('
Benjamin Dodd
-
Hello, The compiler doesn't know which Process class you mean. You could set a using statement at the top of your class (under "using System;"), or use the full qualified name instead (System.Diagnostics.Process)
All the best, Martin
thanks
Benjamin Dodd