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

.NET (Core and Framework)

 
GeneralRe: How i draw my "user control UI" faster and more efficient [modified] Pin
Rejnev19-Jul-10 3:00
Rejnev19-Jul-10 3:00 
GeneralRe: How i draw my "user control UI" faster and more efficient Pin
Eddy Vluggen19-Jul-10 5:16
professionalEddy Vluggen19-Jul-10 5:16 
Generalit's done Pin
Rejnev19-Jul-10 5:30
Rejnev19-Jul-10 5:30 
GeneralRe: it's done Pin
Eddy Vluggen19-Jul-10 5:58
professionalEddy Vluggen19-Jul-10 5:58 
Questionconvert to shortname Pin
vijiajai18-Jul-10 18:45
vijiajai18-Jul-10 18:45 
AnswerRe: convert to shortname Pin
Peace ON18-Jul-10 21:01
Peace ON18-Jul-10 21:01 
GeneralRe: convert to shortname Pin
vijiajai18-Jul-10 21:15
vijiajai18-Jul-10 21:15 
Answer[Repost] Re: convert to shortname Pin
Peace ON18-Jul-10 22:30
Peace ON18-Jul-10 22:30 
Please do not repost the same question.
You have already posted your question here[^] and got attention.

Please go through the forum posting guidelines[^].

And the code I have posted is in CSharp. So now you need to take
effort in just converting syntax buddy. So, from next time please
put some effort before posting anything on this forum.

    Private Declare Auto Function GetShortPathName Lib "kernel32" ( _
    ByVal lpszLongPath As String, _
    ByVal lpszShortPath As StringBuilder, _
    ByVal cchBuffer As Integer) As Integer


    Public Function GetShortPath(ByVal longPath As String) As String
    Dim requiredSize As Integer = GetShortPathName(longPath, Nothing, 0)
    Dim buffer As New StringBuilder(requiredSize)
    GetShortPathName(longPath, buffer, buffer.Capacity)
    Return buffer.ToString()
End Function





HTH
Jinal Desai - LIVE
Experience is mother of sage....

GeneralRe: ... posting anything ... Pin
The Man from U.N.C.L.E.18-Jul-10 23:15
The Man from U.N.C.L.E.18-Jul-10 23:15 
GeneralRe: ... posting anything ... Pin
Peace ON18-Jul-10 23:19
Peace ON18-Jul-10 23:19 
Questionabout datagrid Pin
rajpar17-Jul-10 20:07
rajpar17-Jul-10 20:07 
AnswerRe: about datagrid Pin
Abhinav S17-Jul-10 20:45
Abhinav S17-Jul-10 20:45 
AnswerRe: about datagrid Pin
Alicia Ouellet5-Oct-10 7:07
Alicia Ouellet5-Oct-10 7:07 
QuestionProblem binding data to a gridview on key press. Pin
Clint Westwood16-Jul-10 23:08
Clint Westwood16-Jul-10 23:08 
AnswerRe: Problem binding data to a gridview on key press. Pin
Peace ON16-Jul-10 23:25
Peace ON16-Jul-10 23:25 
QuestionMessage Removed Pin
16-Jul-10 1:19
sr15916-Jul-10 1:19 
Answer[Repost] Re: how to restore mysql dump file to database using C#, ASP.net PinPopular
Peace ON16-Jul-10 1:32
Peace ON16-Jul-10 1:32 
GeneralRe: [Repost] Re: how to restore mysql dump file to database using C#, ASP.net Pin
Peace ON16-Jul-10 2:09
Peace ON16-Jul-10 2:09 
Questionhow to restore mysql dump file to database using C# , ASP.NET Pin
sr15915-Jul-10 20:56
sr15915-Jul-10 20:56 
AnswerRe: how to restore mysql dump file to database using C# Pin
Peace ON15-Jul-10 21:19
Peace ON15-Jul-10 21:19 
GeneralRe: how to restore mysql dump file to database using C# Pin
sr15915-Jul-10 21:33
sr15915-Jul-10 21:33 
AnswerRe: how to restore mysql dump file to database using C# Pin
Peace ON15-Jul-10 22:08
Peace ON15-Jul-10 22:08 
QuestionRe: how to restore mysql dump file to database using C# Pin
sr15915-Jul-10 23:08
sr15915-Jul-10 23:08 
AnswerRe: how to restore mysql dump file to database using C# Pin
sr15916-Jul-10 0:47
sr15916-Jul-10 0:47 
QuestionRe: how to restore mysql dump file to database using C# Pin
sr15916-Jul-10 0:49
sr15916-Jul-10 0:49 

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.