Click here to Skip to main content
15,911,039 members
Home / Discussions / Database
   

Database

 
GeneralSQL to FOX Pin
Majid Shahabfar31-Dec-03 6:09
Majid Shahabfar31-Dec-03 6:09 
GeneralRe: SQL to FOX Pin
Mazdak31-Dec-03 19:06
Mazdak31-Dec-03 19:06 
GeneralRunning SQL in Developer Studio Pin
Steve Schaneville31-Dec-03 4:23
professionalSteve Schaneville31-Dec-03 4:23 
Generalopen UDL Dialog at runtime Pin
Itanium30-Dec-03 1:59
Itanium30-Dec-03 1:59 
GeneralRe: open UDL Dialog at runtime Pin
Mazdak31-Dec-03 19:26
Mazdak31-Dec-03 19:26 
GeneralRe: open UDL Dialog at runtime Pin
Itanium31-Dec-03 21:45
Itanium31-Dec-03 21:45 
GeneralRe: open UDL Dialog at runtime Pin
Mazdak31-Dec-03 22:01
Mazdak31-Dec-03 22:01 
GeneralRe: open UDL Dialog at runtime Pin
Heath Stewart3-Jan-04 18:49
protectorHeath Stewart3-Jan-04 18:49 
Actually, he just wants to open the file with its associated program / shell handler, so the following should be used:
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = "path/to/file.udl";
psi.UseShellExecute = true;
Process.Start(psi);
ShellExecute(Ex) is what is executed when you double-click a file (or do whatever is the default action based on shell settings). You can also pass different verbs, like "open", "edit", "print", etc., so long as they are supported by the file type association in the registry.

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralRe: open UDL Dialog at runtime Pin
Richard Deeming9-Jan-04 6:29
mveRichard Deeming9-Jan-04 6:29 
Generalstored procedures - avoiding recompilations [modified] Pin
Marek Grzenkowicz26-Dec-03 21:44
Marek Grzenkowicz26-Dec-03 21:44 
GeneralRe: stored procedures - avoiding recompilations Pin
Chris Meech5-Jan-04 4:57
Chris Meech5-Jan-04 4:57 
GeneralRe: stored procedures - avoiding recompilations [modified] Pin
Marek Grzenkowicz5-Jan-04 5:49
Marek Grzenkowicz5-Jan-04 5:49 
GeneralRe: stored procedures - avoiding recompilations Pin
Mike Dimmick5-Jan-04 5:36
Mike Dimmick5-Jan-04 5:36 
GeneralRe: stored procedures - avoiding recompilations [modified] Pin
Marek Grzenkowicz5-Jan-04 6:21
Marek Grzenkowicz5-Jan-04 6:21 
GeneralData structure to describe HTML table Pin
Anonymous26-Dec-03 20:26
Anonymous26-Dec-03 20:26 
GeneralRe: Data structure to describe HTML table Pin
Colin Angus Mackay27-Dec-03 6:48
Colin Angus Mackay27-Dec-03 6:48 
Generalmysql and mysqldump commandline tools Pin
lady_fly26-Dec-03 10:22
lady_fly26-Dec-03 10:22 
GeneralLIKE operator in Access Pin
Mazdak25-Dec-03 21:02
Mazdak25-Dec-03 21:02 
GeneralRe: LIKE operator in Access Pin
Hesham Amin31-Dec-03 11:16
Hesham Amin31-Dec-03 11:16 
GeneralRe: LIKE operator in Access Pin
Mazdak31-Dec-03 19:03
Mazdak31-Dec-03 19:03 
GeneralRe: LIKE operator in Access Pin
Hesham Amin31-Dec-03 22:56
Hesham Amin31-Dec-03 22:56 
GeneralRe: LIKE operator in Access Pin
Mazdak1-Jan-04 0:22
Mazdak1-Jan-04 0:22 
GeneralSQL server - Permission and ownership Pin
CillyMe25-Dec-03 20:41
CillyMe25-Dec-03 20:41 
GeneralA string to compare with the rest of the records Pin
codeajay24-Dec-03 18:59
codeajay24-Dec-03 18:59 
Generalconnecting to Exces database(file) Pin
Bharat Gadhia23-Dec-03 10:14
Bharat Gadhia23-Dec-03 10:14 

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.