Search found 10 matches

by dododo01
Wed Sep 11, 2024 9:59 am
Forum: VO & Vulcan
Topic: DBF with keyword "REF"
Replies: 7
Views: 246

Re: DBF with keyword "REF"

No, I am not a FOX subscriber
by dododo01
Tue Sep 10, 2024 12:11 pm
Forum: VO & Vulcan
Topic: DBF with keyword "REF"
Replies: 7
Views: 246

Re: DBF with keyword "REF"

it works in XSharp.
However, the new index "@@REF" is no longer readable by VO. Too bad.
thanks for your feedback.
by dododo01
Tue Sep 10, 2024 8:05 am
Forum: VO & Vulcan
Topic: DBF with keyword "REF"
Replies: 7
Views: 246

Re: DBF with keyword "REF"

Here is an example of code that does not work: [STAThread]; FUNCTION Start() AS INT LOCAL oXApp AS XApp TRY oXApp := XApp{} oXApp:Start() CATCH oException AS Exception ErrorDialog(oException) END TRY RETURN 0 CLASS XApp INHERIT App METHOD Start() TestDBFNTX() SELF:Exec() END CLASS FUNCTION ...
by dododo01
Mon Sep 09, 2024 9:18 am
Forum: VO & Vulcan
Topic: DBF with keyword "REF"
Replies: 7
Views: 246

DBF with keyword "REF"

Hi, We use a DBF file with an attribute named "REF" which is a primary key. This file is used with applications developed under VO 2.7b. This does not pose any problem. However, when migrating to XSharp, knowing that "REF" is a keyword, it no longer works. Is there a solution, without modifying the ...
by dododo01
Tue Sep 03, 2024 8:15 am
Forum: VO & Vulcan
Topic: Send mail via smtp
Replies: 2
Views: 184

Re: Send mail via smtp

here is the code of the authSmtp class: CLASS authSMTP INHERIT CMailAbstract PROTECT oEmail AS CEmail PROTECT cMailApplication AS STRING // PROTECT lAuthority AS LOGIC PROTECT cUserName2 AS STRING PROTECT cPassWord2 AS STRING // METHOD __StartData() AS LOGIC PASCAL LOCAL cBuffer AS STRING cBuffer ...
by dododo01
Tue Sep 03, 2024 7:05 am
Forum: VO & Vulcan
Topic: Send mail via smtp
Replies: 2
Views: 184

Send mail via smtp

Hi, following a migration from VO to Xsharp, I can no longer send mail via smtp. I use an object (Class authSMTP) that inherits from CMailAbstrat. After entering the DNS alias in the RemoteHost property, in VO I see the IP and in XSharp there is nothing. Could you help me ...
by dododo01
Mon Jul 15, 2024 9:29 am
Forum: VO & Vulcan
Topic: SetOrder(0) method problem
Replies: 6
Views: 561

Re: SetOrder(0) method problem

Hi Chris,

I use ntx.
the problem occurs on others dbf files.
by dododo01
Mon Jul 15, 2024 6:39 am
Forum: VO & Vulcan
Topic: SetOrder(0) method problem
Replies: 6
Views: 561

SetOrder(0) method problem

Hi, I migrated a VO application to X#. in a class I opened a DBserver with 8 indexes. The setOrder method works fine for all 8 indexes, but returns false when I perform a setOrder(0) sequential order. nOrder := oControl:Value IF !SELF:Server:setorder(nOrder) Message("E", "", "Unable to select ...
by dododo01
Fri Jul 12, 2024 7:35 am
Forum: VO & Vulcan
Topic: SetStandardStyle(GBSEDIT)
Replies: 3
Views: 414

Re: SetStandardStyle(GBSEDIT)

by adding the cato dlls, it works.
thanks.
by dododo01
Wed Jul 10, 2024 12:14 pm
Forum: VO & Vulcan
Topic: SetStandardStyle(GBSEDIT)
Replies: 3
Views: 414

SetStandardStyle(GBSEDIT)

Hi, after VO migration to X#, I cannot put my datawindow:browser in edit mode, via datawindow:browser:setstandardstyle(GSEDIT). oDW is a datawindow. oDW:Use(oServer) oDW:ViewTable() FOR ii:=1 TO oDW:Browser:ColumnCount IF oServer:dbstruct[ii, 3] < Len(AllTrim(oDW:Browser:Getcolumn(ii):Caption)) oDW ...