Click here to Skip to main content
15,890,897 members
Home / Discussions / C#
   

C#

 
GeneralRe: creating a GUID for a file Pin
leppie6-Mar-04 0:24
leppie6-Mar-04 0:24 
GeneralRe: creating a GUID for a file Pin
Nick Parker6-Mar-04 4:29
protectorNick Parker6-Mar-04 4:29 
GeneralRe: creating a GUID for a file Pin
Dave Kreskowiak6-Mar-04 5:54
mveDave Kreskowiak6-Mar-04 5:54 
GeneralRe: creating a GUID for a file Pin
Heath Stewart6-Mar-04 17:44
protectorHeath Stewart6-Mar-04 17:44 
GeneralRe: creating a GUID for a file Pin
Dave Kreskowiak7-Mar-04 5:21
mveDave Kreskowiak7-Mar-04 5:21 
GeneralHelp ! DOS 8.3 File Name to Full Path Pin
Andy Hampshire5-Mar-04 22:18
Andy Hampshire5-Mar-04 22:18 
GeneralRe: Help ! DOS 8.3 File Name to Full Path Pin
Nick Parker6-Mar-04 8:48
protectorNick Parker6-Mar-04 8:48 
GeneralRe: Help ! DOS 8.3 File Name to Full Path Pin
Andy Hampshire8-Mar-04 4:19
Andy Hampshire8-Mar-04 4:19 
Thanks Nick...

Just for anyones interest the code looks something like ....

Declare the routine like this ...

[DllImport("kernel32.dll", CharSet=CharSet.Auto)]
public static extern long GetLongPathName(StringBuilder ShortFileName, StringBuilder LongFileName, int Length);


StringBuilder shortName = new StringBuilder(filename);
StringBuilder longName = new StringBuilder(512);
long bufLength = longName.Capacity;

long retCode = GetLongPathName(shortName, longName, bufLength);
GeneralPassword Checking Pin
ASGill5-Mar-04 17:21
ASGill5-Mar-04 17:21 
GeneralRe: Password Checking Pin
mav.northwind5-Mar-04 20:02
mav.northwind5-Mar-04 20:02 
GeneralPramodKumarSingh mail sample Pin
jimaya5-Mar-04 10:13
jimaya5-Mar-04 10:13 
GeneralRe: PramodKumarSingh mail sample Pin
Heath Stewart5-Mar-04 12:06
protectorHeath Stewart5-Mar-04 12:06 
GeneralSystem.io.FileStream Pin
cmarmr5-Mar-04 8:35
cmarmr5-Mar-04 8:35 
GeneralRe: System.io.FileStream Pin
Henrik Stuart5-Mar-04 8:39
Henrik Stuart5-Mar-04 8:39 
GeneralRe: System.io.FileStream Pin
Werdna5-Mar-04 10:06
Werdna5-Mar-04 10:06 
GeneralRe: System.io.FileStream Pin
leppie6-Mar-04 1:11
leppie6-Mar-04 1:11 
GeneralRe: System.io.FileStream Pin
James T. Johnson6-Mar-04 12:59
James T. Johnson6-Mar-04 12:59 
GeneralRe: System.io.FileStream Pin
Tom Larsen5-Mar-04 11:30
Tom Larsen5-Mar-04 11:30 
GeneralRemoting error Pin
Kant5-Mar-04 8:15
Kant5-Mar-04 8:15 
GeneralRe: Remoting error Pin
Heath Stewart5-Mar-04 8:28
protectorHeath Stewart5-Mar-04 8:28 
GeneralRe: Remoting error Pin
Kant5-Mar-04 9:12
Kant5-Mar-04 9:12 
GeneralRe: Remoting error Pin
Heath Stewart5-Mar-04 9:27
protectorHeath Stewart5-Mar-04 9:27 
GeneralRe: Remoting error Pin
Kant5-Mar-04 9:51
Kant5-Mar-04 9:51 
GeneralRe: Remoting error Pin
Judah Gabriel Himango5-Mar-04 8:32
sponsorJudah Gabriel Himango5-Mar-04 8:32 
GeneralDrawing column headers Pin
Amberite005-Mar-04 8:10
Amberite005-Mar-04 8:10 

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.