Search found 42 matches

by messaoudlazhar
Fri May 27, 2016 9:38 am
Forum: eXpress++ Support
Topic: Error in Array Index
Replies: 3
Views: 7419

Re: Error in Array Index

Hi, -> VALTYPE: A VALUE: {{588.000, "F", 30000, 155, 1, 588.000, " ", 0}} -> VALTYPE: N VALUE: 2 Your multi-dimension table contains only one element and 8 sub-elements to select an item you need two arguments (x, y) in this case give an argument Nametable[1,1..8] Example : Nametable[1,4] => 155 Mes...
by messaoudlazhar
Tue May 24, 2016 9:34 am
Forum: eXpress++ Support
Topic: Full screen with objects resize
Replies: 3
Views: 8454

Re: Full screen with objects resize

Hi,
you can do the following:

nWidth := AppDeskTop():currentSize()[1]
nHeight := AppDeskTop():currentSize()[2]

aSize := {nWidth,nHeight}
oDlg := XbpDialog():new( , , , aSize)
.....
oDlg:create()
SetAppWindow(oDlg)
oDlg:show()
...
by messaoudlazhar
Sat Jan 02, 2016 1:46 pm
Forum: eXpress++ Support
Topic: dc_isapprunning()
Replies: 5
Views: 9555

Re: dc_isapprunning()

Hi, I use this function and it works very well: IsApprunning (Namexe, Title, lRestore) you have the choice between a single parameter (exe Name or Title) or both. Attached is a text file containing the source, you can adapt it to therefore replace DC_Isaprunning Function Best regards, Messaoud Moham...
by messaoudlazhar
Fri Jan 01, 2016 1:09 pm
Forum: eXpress++ Support
Topic: Directive in .XPJ file
Replies: 0
Views: 6310

Directive in .XPJ file

Hi,
Happy new year for everyone

in a .rpg program can be ignored or insert part by directive #IFDEF/#IFNDEF is important
in a .xpj we can not.

is it possible to insert a prg file or ignore it from a XPJ file :think:

Thanks

Messaoud Mohamed Lazhar
by messaoudlazhar
Wed Dec 09, 2015 12:58 am
Forum: eXpress++ Support
Topic: Error in Array Index
Replies: 2
Views: 5238

Re: Error in Array Index

hi, 1/ you can change the following lines: ADel(aRecords[1],nFound) ASize(aRecords[1],Len(aRecords[1])-1) by Aremove(aRecords[1],nFound) 2/ Probably talk about size exceeded and not size problem (ex: the selected element 326 on a size of 325) may be must be tested to check the size and locate the pr...
by messaoudlazhar
Wed Oct 07, 2015 2:06 am
Forum: Xbase++ Support
Topic: What is a TLV type in Visual Basic?
Replies: 3
Views: 9328

Re: What is a TLV type in Visual Basic?

TLV is Tag-length-value encoding. Often it is better referred to by it's original name, type-length-value. The first field is the "type" of data being processed, the second field specifies the "length" of the value, the third field contains a "value". See : https://en.wikipedia.org/wiki/Type-length-...
by messaoudlazhar
Wed Jul 22, 2015 2:54 pm
Forum: eXpress++ Support
Topic: Bring application to front
Replies: 16
Views: 20700

Re: Bring application to front

Hi,
test the syntax :
runshell( "/C autologon test.txt" , "count.exe" , .T. , .F. )

If the result remains the same test :
DC_Isapprunning(,,<title application>,.T.)

Best regards
by messaoudlazhar
Wed Jul 22, 2015 3:43 am
Forum: eXpress++ Support
Topic: Bring application to front
Replies: 16
Views: 20700

Re: Bring application to front

What is the syntax that you used in runshell ?
by messaoudlazhar
Sun May 31, 2015 1:58 pm
Forum: eXpress++ Support
Topic: Changing to FOXDBE / ADSDBE
Replies: 2
Views: 5961

Re: Changing to FOXDBE / ADSDBE

Hi, Follow these steps : 1- You must select FOXCDX FUNCTION APPSYS IF ! Dbeload( "FOXDBE", .T. ) MsgBox( "FOXDBE can not be loaded !" ) ENDIF IF ! Dbeload( "CDXDBE", .T. ) MsgBox( "CDXDBE can not be loaded !" ) ENDIF IF ! DbeBuild( "FOXCDX","FOXDBE","CDXDBE") MsgBox( "The engine FOXCDX can not be cr...
by messaoudlazhar
Fri May 29, 2015 7:10 am
Forum: Xbase++ 2.0
Topic: FOXCDX and integer
Replies: 20
Views: 38469

Re: FOXCDX and integer

Hi,

if you only make re-indexing the file, the problem persists. You must recreate it again (erase the file and indexing)

_________________
Best regards,

Messaoud Mohamed Lazhar