Hi Rodrigo Duarte Bruscain,
FoxcodePlus 3.04 workaround for " = " in Functions
I have made a little change in "Foxcodeplusintellisense.Hide"
* -------------------------------------------------------------------------------------------------------------
local lc_onkey_uparrow, lc_onkey_dnarrow, lc_onkey_pgup, lc_onkey_pgdn, lc_onkey_esc,;
lc_onkey_tab, lc_onkey_enter, lc_onkey_spacebar, lc_onkey_openpar, lc_onkey_closepar, lc_onkey_f1, ;
lc_onkey_equal, lc_onkey_dot
lc_onkey_uparrow = this.onkey_uparrow
lc_onkey_dnarrow = this.onkey_dnarrow
lc_onkey_pgup = this.onkey_pgup
lc_onkey_pgdn = this.onkey_pgdn
lc_onkey_esc = this.onkey_esc
lc_onkey_tab = this.onkey_tab
lc_onkey_enter = this.onkey_enter
lc_onkey_spacebar = this.onkey_spacebar
lc_onkey_openpar = this.onkey_openpar
lc_onkey_closepar = this.onkey_closepar
lc_onkey_f1 = this.onkey_f1
* mk -------------------------------------------------
lc_onkey_equal = this.onkey_equal
*lc_onkey_dot = this.onkey_dot
on key label UPARROW &lc_onkey_uparrow
on key label DNARROW &lc_onkey_dnarrow
on key label PGUP &lc_onkey_pgup
on key label PGDN &lc_onkey_pgdn
on key label ESC &lc_onkey_esc
on key label TAB &lc_onkey_tab
on key label ENTER &lc_onkey_enter
on key label SPACEBAR &lc_onkey_spacebar
on key label ( &lc_onkey_openpar
on key label ) &lc_onkey_closepar
on key label F1 &lc_onkey_f1
on key label CTRL+W
* mk -------------------------------------------------------
on key label = &lc_onkey_equal
*on key label . &lc_onkey_dot
* -------------------------------------------------------------------------------------------------------------
After making this change, Functions working perfect with " = "
If we type like :
Alltrim(test && speedy " )= " working perfect :)
* -------------------------------------------------------------------------------------------------------------
I have tried with " . " also but FoxcodePlus Intellisense Stopped, so i have removed the line that i have written for " . "
Maybe helpful.
Warm regards,
mk.
Comments: ** Comment from web user: mk_common **
FoxcodePlus 3.04 workaround for " = " in Functions
I have made a little change in "Foxcodeplusintellisense.Hide"
* -------------------------------------------------------------------------------------------------------------
local lc_onkey_uparrow, lc_onkey_dnarrow, lc_onkey_pgup, lc_onkey_pgdn, lc_onkey_esc,;
lc_onkey_tab, lc_onkey_enter, lc_onkey_spacebar, lc_onkey_openpar, lc_onkey_closepar, lc_onkey_f1, ;
lc_onkey_equal, lc_onkey_dot
lc_onkey_uparrow = this.onkey_uparrow
lc_onkey_dnarrow = this.onkey_dnarrow
lc_onkey_pgup = this.onkey_pgup
lc_onkey_pgdn = this.onkey_pgdn
lc_onkey_esc = this.onkey_esc
lc_onkey_tab = this.onkey_tab
lc_onkey_enter = this.onkey_enter
lc_onkey_spacebar = this.onkey_spacebar
lc_onkey_openpar = this.onkey_openpar
lc_onkey_closepar = this.onkey_closepar
lc_onkey_f1 = this.onkey_f1
* mk -------------------------------------------------
lc_onkey_equal = this.onkey_equal
*lc_onkey_dot = this.onkey_dot
on key label UPARROW &lc_onkey_uparrow
on key label DNARROW &lc_onkey_dnarrow
on key label PGUP &lc_onkey_pgup
on key label PGDN &lc_onkey_pgdn
on key label ESC &lc_onkey_esc
on key label TAB &lc_onkey_tab
on key label ENTER &lc_onkey_enter
on key label SPACEBAR &lc_onkey_spacebar
on key label ( &lc_onkey_openpar
on key label ) &lc_onkey_closepar
on key label F1 &lc_onkey_f1
on key label CTRL+W
* mk -------------------------------------------------------
on key label = &lc_onkey_equal
*on key label . &lc_onkey_dot
* -------------------------------------------------------------------------------------------------------------
After making this change, Functions working perfect with " = "
If we type like :
Alltrim(test && speedy " )= " working perfect :)
* -------------------------------------------------------------------------------------------------------------
I have tried with " . " also but FoxcodePlus Intellisense Stopped, so i have removed the line that i have written for " . "
Maybe helpful.
Warm regards,
mk.
Comments: ** Comment from web user: mk_common **
Hi Rodrigo Duarte Bruscain,
Thank you.
Is " = " and " . " both are fixed ?
Warm regards,
mk.