Search found 140 matches: owner

Return to advanced search

Re: Problem with alignment in SAY command

... If you want to show your personal samples you are very welcome. But please, leave samples of others unchanged. Calm down Enrico. When you are the OWNER of the forum, you can tell me what I can or cannot do. I made a model honoring you, I don't know why you were so sensitive, and I didn't even ...
by karinha
Fri Mar 01, 2024 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 842

Re: ID of the new process

... approaches you could consider: 1. **Using `GetOwner` Property:** You can use the `GetOwner` property of the `Win32_Process` class to get the owner of the process. This information might help you identify the user who created the process. ```vbscript Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") ...
by Antonio Linares
Tue Nov 14, 2023 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the new process
Replies: 2
Views: 321

Re: The Future of Developer Forums

... we faced the issue that we couldn't help each other much here, and we couldn't further the spread of mod harbour. Back then, I contacted the forum owner of codeforum.com, which seemed to me like a good forum for HTML and JavaScript, hoping we could get a section there to support one another. HTML/JavaScript ...
by Otto
Thu Nov 02, 2023 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: The Future of Developer Forums
Replies: 5
Views: 311

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi, i wonder why not :aModiData is used for aSave *        AADD( aSave, { ::aStructPG[ nFld, 8 ], uVal } ) // wrong for UTF8 Table ???        AADD( aSave, { ::aModiData[n][1], ::aModiData[n][2] } ) --- i have "dump"...
by Jimmy
Thu Aug 03, 2023 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 749

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi,, forgot to say ; it happens when PostgreSQL Table is UTF8 it work when Table use WIN1252 wrong using UTF8 Table TDATAROW:SAVEPQQ( 1787 ) var2char(::aStructPG[1]) = "{artnr, C, 5, 0, 16820, 1, artikel, __lock_owner, NIL, NIL}" TDATAROW:SAVEPQQ( 1848 ) cSql = "UPDATE public.artikel ...
by Jimmy
Wed Aug 02, 2023 11:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 749

METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi, when try to use "existing" PostgreSQL Table i have Problem with METHOD SavePQQ() it seems to work when use FWPG_ImportFromDBF() to create a "new" SQL Table --- in METHOD SavePQQ() it is "WHERE"   FOR n := 1 TO LEN( aKey )      IF n == 1         cSql += "...
by Jimmy
Wed Aug 02, 2023 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 749

Multiple Sql Indexes - Rao

... on Owners ( name ) and pets by name . I want to be able to have a single recordset where I can use a radio option to search on either an owner name or a pet name without having to re-create the same recordset ordered by OwnerName and or by Pet name .. Like in dbfcdx .. you create a .dbf ...
by Rick Lipkin
Tue May 30, 2023 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Sql Indexes - Rao
Replies: 2
Views: 209

Re: Change of control owner

Dear Yuri,

When you create the TButton you use .. OF <TPanelObject>

Another way is to use Windows API function SetParent()
https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setparent
by Antonio Linares
Fri Apr 14, 2023 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change of control owner
Replies: 1
Views: 139

Change of control owner

Hi,

There are 2 controls on the window - a Tbutton and a TPanel. I need to tell the TButton that it belongs to the TPanel. How can this problem be solved ?
by Natter
Fri Apr 14, 2023 8:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change of control owner
Replies: 1
Views: 139

Re: how to get "Userdef" EVENT for ACTION

... function does not perform a search operation. Instead, the dialog box sends FINDMSGSTRING registered messages to the window procedure of the owner window of the dialog box. When you create the dialog box, the hwndOwner member of the FINDREPLACE structure is a handle to the owner window. --- ...
by Jimmy
Tue Mar 28, 2023 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get "Userdef" EVENT for ACTION
Replies: 5
Views: 395

Re: Owner of the object

Thank you all ! I've already done TGet():New(2, 2, GenLocalBlock( nGet ), oDlg, ;       100,, "9.999",,,,,,, .T.,,,,,,,,,,, .T., ;       {||self:=HB_QSelf():oWnd,iif(::value+0.05>1,.T.,::cText(::value+0.05&...
by Natter
Thu Mar 02, 2023 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Owner of the object
Replies: 7
Views: 350

Re: Owner of the object

hi Natter, Here I need the owner of the oVScroll object. perhaps this Method can help METHOD GetScrollbarObj( oSelf, lVScroll ) CLASS TGridLOCAL oObj, cTitle := ""LOCAL hWnd := 0   DEFAULT oSelf := SELF   DEFAULT lVScroll ...
by Jimmy
Thu Mar 02, 2023 10:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Owner of the object
Replies: 7
Views: 350

Re: Owner of the object

Try Self:oWnd.
by Enrico Maria Giordano
Thu Mar 02, 2023 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Owner of the object
Replies: 7
Views: 350

Re: Owner of the object

... However, this will not work because self is an oVScrolls object (see method :Spinner). Here I need the owner of the oVScroll object. Of course, this problem can be solved by writing your own version of the TGet class or creating your own function instead ...
by Natter
Wed Mar 01, 2023 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Owner of the object
Replies: 7
Views: 350

Re: Owner of the object

... button"   LOCAL oFont1, oRad, nValue := 1, i := 1     DEFINE FONT oFont1 NAME "Verdana" SIZE 0,-16   DEFINE WINDOW oWnd TITLE "Owner of the object"      @  20, 40 BTNBMP oBtn1 PROMPT "Show Owner" OF oWnd PIXEL ACTION ShowResp2() SIZE 150,30 FLAT        ...
by Cgallegoa
Wed Mar 01, 2023 8:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Owner of the object
Replies: 7
Views: 350
Next

Return to advanced search