Search found 10 matches
- Wed Sep 11, 2024 9:59 am
- Forum: VO & Vulcan
- Topic: DBF with keyword "REF"
- Replies: 7
- Views: 626
Re: DBF with keyword "REF"
No, I am not a FOX subscriber
- Tue Sep 10, 2024 12:11 pm
- Forum: VO & Vulcan
- Topic: DBF with keyword "REF"
- Replies: 7
- Views: 626
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.
However, the new index "@@REF" is no longer readable by VO. Too bad.
thanks for your feedback.
- Tue Sep 10, 2024 8:05 am
- Forum: VO & Vulcan
- Topic: DBF with keyword "REF"
- Replies: 7
- Views: 626
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 ...
- Mon Sep 09, 2024 9:18 am
- Forum: VO & Vulcan
- Topic: DBF with keyword "REF"
- Replies: 7
- Views: 626
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 ...
- Tue Sep 03, 2024 8:15 am
- Forum: VO & Vulcan
- Topic: Send mail via smtp
- Replies: 3
- Views: 478
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 ...
- Tue Sep 03, 2024 7:05 am
- Forum: VO & Vulcan
- Topic: Send mail via smtp
- Replies: 3
- Views: 478
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 ...
- Mon Jul 15, 2024 9:29 am
- Forum: VO & Vulcan
- Topic: SetOrder(0) method problem
- Replies: 6
- Views: 823
Re: SetOrder(0) method problem
Hi Chris,
I use ntx.
the problem occurs on others dbf files.
I use ntx.
the problem occurs on others dbf files.
- Mon Jul 15, 2024 6:39 am
- Forum: VO & Vulcan
- Topic: SetOrder(0) method problem
- Replies: 6
- Views: 823
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 ...
- Fri Jul 12, 2024 7:35 am
- Forum: VO & Vulcan
- Topic: SetStandardStyle(GBSEDIT)
- Replies: 3
- Views: 592
Re: SetStandardStyle(GBSEDIT)
by adding the cato dlls, it works.
thanks.
thanks.
- Wed Jul 10, 2024 12:14 pm
- Forum: VO & Vulcan
- Topic: SetStandardStyle(GBSEDIT)
- Replies: 3
- Views: 592
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 ...