VB.Net & Delphi
I would try opening the file with read-only access from the VB.NET app (see my example). It looks like the Delphi app may be trying to put a write lock on the file in order to update. Unfortunately...
View ArticleVB.Net & Delphi
This is the code I use in the VB.net, but it never give me problem. It runs concurrent with Java Applet, the problem is the Delphi application that give the error. I have no the Delphi code but I had a...
View ArticleVB.Net & Delphi
Just to add to my response, below is a simple example of how to open the file for read access using the StreamReader Class:Dim fs As New FileStream(fileName, FileMode.Open, FileAccess.Read,...
View ArticleVB.Net & Delphi
Can you post the code from the VB.NET app that opens the file? If the exception is a system error 32 then it's a file sharing issue and the code will need to be modified:ERROR_SHARING_VIOLATION32...
View ArticleVB.Net & Delphi
The platform is Windows XP with poor Hardware (gaming platform doesn't require high performance) and all is in 32 bit ...
View ArticleVB.Net & Delphi
I never call a Delphi from VB ... Delphi is running and looking for Coin, VB.net is running waiting for file with coind value and Player selection.They run without software connection
View ArticleVB.Net & Delphi
What is coinacceptor? Is it a Windows DLL? A COM DLL? Could it be that the DLL is 32-bit while you have the VB.NET app configured to run 64-bit?Paul ~~~~ Microsoft MVP (Visual Basic)
View ArticleVB.Net & Delphi
I design all my win 32 API with Delphi, and use them from VB and C# no problem. Just make sure that all is done thru StdCall function Distance(Count: integer; X: Double; Y: Double): Double; stdcall;...
View ArticleVB.Net & Delphi
Hi,someone of you known incompatibility between .Net and Delphi ?Let me describe:A web page activate an Applet to manage a billreader and it write to a text file the value of bill inserted. A Vb.Net...
View Article