Delphi Conversion
They were bad to find on MSDN in past, but since version 10 it is correct again.These functions work in all net versions and are a full part of in for instance framework Net 4.0 (but also for framework...
View ArticleDelphi Conversion
For RightStr and LeftStr or middle. In .net, you use Substring method of string class. Below is the vb.net equivalent to the delphi code you post above which will give you the same outputDim s As...
View ArticleDelphi Conversion
The String.Substring method can do what you want.http://msdn.microsoft.com/en-us/library/system.string.substring.aspxLeft n characters of a string is - S.Substring(0,n)Right n characters would be -...
View ArticleDelphi Conversion
Kaymaf,the tsearchrec: Record used to hold data for FindFirst and FindNext.a delphi example:var searchResult : TSearchRec;begin // Try to find regular files matching Unit1.d* in the current dir if...
View ArticleDelphi Conversion
Do you know what the code does? If not, then is not possible for someone to get you the .NET equivalentkaymafIf that what you want, take it. If not, ignored it and no complain
View ArticleDelphi Conversion
Lucky me, now I get to convert a Delphi application to VB.Net. My last project i had to convert a Java app to VB.Net. Anyway I have most of the application converted however there are a few items...
View Article