Search found 1345 matches: execute

Return to advanced search

Re: WMI / FOR EACH / does "Property" Exist ?

... einer Membervariablen (IVar) eines Xbase++-Objektes. thats why i try __ObjHasData but fail -   TRY      a := 1      b := 1/0      c := "not execute"   CATCH      FWLOG a,b,c   END as "b" gave a Error Line with "c" will not be execute i have to use it for every "Property" ...
by Jimmy
Tue Jun 13, 2023 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WMI / FOR EACH / does "Property" Exist ?
Replies: 4
Views: 246

Re: WMI / FOR EACH / does "Property" Exist ?

__ObjHasData and __ObjHasMethod work only with Harbour classes. if i use TRY / CATCH / END than line after Error will not execute Suggested: TRY  speed := o:SpeedCATCH  speed := 0END? speed  so how to "ask" in FOR EACH if a "Property" Exist FOR EACH works with Harbour ...
by nageswaragunupudi
Tue Jun 13, 2023 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WMI / FOR EACH / does "Property" Exist ?
Replies: 4
Views: 246

WMI / FOR EACH / does "Property" Exist ?

... := oMemory:GETPROPERTY("SPEED") Problem : it does not work on every PC if i use TRY / CATCH / END than line after Error will not execute so how to "ask" in FOR EACH if a "Property" Exist :?:
by Jimmy
Tue Jun 13, 2023 4:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WMI / FOR EACH / does "Property" Exist ?
Replies: 4
Views: 246

Re: MariaDb delete

... then deleting records or executing a While command to traverse a table for any reason would be loosing a lot of benefits that SQL offers. When you execute a while loop to check each record for a condition, that information travels from the server to the workstation where the condition is evaluated. ...
by reinaldocrespo
Fri Jun 02, 2023 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 393

MariaDb delete

Hi all when you execute the delete command is also done skip ? oRs:gotop()do while .not. oRs:eof()    oRs:delete()  <----- the pointer on next record ?enddoor old way with DBFoRs:gotop()do ...
by mauri.menabue
Thu Jun 01, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 393

register callback func to be exec from inside c VM harbour

... } )   Local aOCRClaimKeys := {}   Local aClaimKeys   Then have the c Wrapper TOCRFromScanner receive and execute ShowProgress inside the for loop. Any ideas? Thank you.
by reinaldocrespo
Sun May 28, 2023 9:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: register callback func to be exec from inside c VM harbour
Replies: 2
Views: 205

Re: Problem with xBrowse

... yes. Pardon my forgetfulness. It selects TEST as current database. Don't worry! I am now copying your program with minor changes and trying to execute at my end. Thanks a lot BTW, it is now about 10:30 pm in Toluca. Are you still awake? Yeah I'm up for a couple more hours, got a lot of work ...
by Armando
Sun May 28, 2023 4:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2191

Re: Problem with xBrowse

... Oh Sorry, yes. Pardon my forgetfulness. It selects TEST as current database. I am now copying your program with minor changes and trying to execute at my end. BTW, it is now about 10:30 pm in Toluca. Are you still awake?
by nageswaragunupudi
Sun May 28, 2023 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2191

Re: Problem with xBrowse

oApp:oCon:Execute("USE Test")

What does this do?
Forgive my ignorance.
Is there a MySql command like "USE test"?
by nageswaragunupudi
Sun May 28, 2023 3:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2191

Re: SSE example

... With the prg version I get following error: Error: Unterminated string '' called from: __PP_PROCESS, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 64 Source: 0062: a: 1 0063: ,b: 2 0064 => }; 0065: let param=url+'?func=9&data='+JSON.stringify(data); 0066: alert('Go...'); This ...
by ssbbs
Fri May 26, 2023 6:58 am
 
Forum: mod_harbour
Topic: SSE example
Replies: 19
Views: 4950

Re: SSE example

... you. With the prg version I get following error: Error: Unterminated string '' called from: __PP_PROCESS, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 64 Source: 0062: a: 1 0063: ,b: 2 0064 => }; 0065: let param=url+'?func=9&data='+JSON.stringify(data); 0066: alert('Go...'); php ...
by Otto
Fri May 26, 2023 6:22 am
 
Forum: mod_harbour
Topic: SSE example
Replies: 19
Views: 4950

Protecting certain functions to be used

If you allow your users to define and execute a macro or use the runtime Harbour compiler (hbcplr.lib), sometimes you may want to avoid the use of certain Harbour functions. This code allows you to protect the symbols that you don't want to ...
by Antonio Linares
Tue May 02, 2023 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: MySql MariaDatase INDEX

Hi all
Thank Vilian
is also possible : oCN:Execute("ALTER TABLE your_table ADD INDEX your_index(`field1`, `My_function()`)")
by mauri.menabue
Wed Apr 19, 2023 9:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql MariaDatase INDEX
Replies: 3
Views: 306

Re: MySql MariaDatase INDEX

TO REMOVE
oCN:Execute("ALTER TABLE your_table DROP INDEX your_index")

TO CREATE
oCN:Execute("ALTER TABLE your_table ADD INDEX your_index(`field1`, `field2`)")
by vilian
Wed Apr 19, 2023 8:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql MariaDatase INDEX
Replies: 3
Views: 306

Re: Can I get object from handle?

... is triggered. Then have your apps listen for that message on another thread. If the message is received, then update the object being displayed or execute whatever code to handle the message. I know this is not exactly what you are asking but it might be a possible solution. I do this a lot using ...
by reinaldocrespo
Sun Apr 16, 2023 5:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can I get object from handle?
Replies: 15
Views: 1348
PreviousNext

Return to advanced search