Questions tagged [owner]

209 questions
2
votes
2 answers

Set Window owner inside of an UserControl in WPF

I have an UserControl that shows a window without an icon in the Taskbar, the problem is when the main window lost the focus and get it again the window without taskbar icon is behind the main window and is difficult show it in front again, this…
FukYouAll
  • 111
  • 1
  • 3
  • 15
2
votes
1 answer

Changing Parent Container causes Createwnd to be called again, Delphi 6

We have some legacy delphi custom components that override createwnd. These components sit on a panel within a form. When the form and panel get instantiated, so do the components, and createwnd is called once. This makes sense. I was…
sse
  • 987
  • 1
  • 11
  • 30
2
votes
1 answer

How do I lock an Object / become owner of a monitor (Android)

How can I wait a second in an addTextChangedListener? Following code gives following error: E/AndroidRuntime(1003): java.lang.IllegalMonitorStateException: object not locked by thread before wait() In the Android reference at method wait() of…
user1837293
  • 1,466
  • 3
  • 16
  • 30
2
votes
0 answers

Adding owner side object in JPA+Eclipselink ManyToMany bidirectional relation

I am using JPA and Eclipselink. My problem is that in a @ManyToMany bidirectional relationship how to add a new object on the owner side correctly when the other side object was created and persisted earlier. I have two entity classes, Group and…
GregTom
  • 352
  • 4
  • 15
2
votes
1 answer

Trying to change owner of account on CRM 4.0 using a plugin

I am creating a plugin for Microsoft Dynamics CRM 4 that will change the owner of the account entity according to the value of another lookup field. Now I have managed to get the GUID of the user that will be acting as the 'Owner' of the account. So…
Pawcu
  • 332
  • 1
  • 14
1
vote
1 answer

How programmatically can one find a Control's owning thread

It is a requirement that all .net Controls are created on the main thread, at least this is necessary if the intent is to integrate the control in with the interface which is usually the case. Additionally to modify properties on the control one…
J Collins
  • 2,106
  • 1
  • 23
  • 30
1
vote
1 answer

How do I put someone else as owner on a github repository?

I was trying to fork a github repository. I was expecting to put another owner since I am not going to be it , but I am in charge of creating the repository. However, when forking and electing the owner, it doesn't appear in my list. What can I do?…
1
vote
1 answer

Get parent form name value in VB.NET

Hi I have a form which is called by several other forms via the 'showdialog()' command I'd like it to do different things depending on which form it's called from so I need to get the name of the parent form. I try with Me.Parent.Name or…
GuidoM.
  • 27
  • 4
1
vote
0 answers

What's the use-case that, 2 weak_ptr share ownership while raw pointer are different?

I'm looking at cppreference for std::owner_less: It says: The order is such that two smart pointers compare equivalent only if they are both empty or if they share ownership, even if the values of the raw pointers obtained by get() are different…
Immanuel Kant
  • 517
  • 3
  • 8
1
vote
1 answer

Liferay 6.0.5 - hide IGFolders from owner on private/public layout of his private community

We need to create hidden "system" subfolders in every IGFolder an normal user creates. The image gallery portlet resides mainly on the private community layouts of all normal users. The portlets and their configuration is pregenerated so the normal…
Benjamin Seiller
  • 2,875
  • 2
  • 32
  • 42
1
vote
1 answer

Type is not callable _isExcludedFromFee[(owner)] = true;

My token contract with solidity 0.8.4 is catching: TypeError: Type is not callable _isExcludedFromFee[(owner)] = true; ^^^^^^^^ From: constructor () { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02…
TNJCoding
  • 45
  • 1
  • 9
1
vote
1 answer

How to call a method of a class embedding List and List, and of Y, from the X elements themselves?

I though I would easily find an answer to this question but I couldn't find yet. Let's say I have the following classes : public class Universe { public list Humans { get; set; } public list Animals { get; set; } public…
samuel guedon
  • 575
  • 1
  • 7
  • 21
1
vote
1 answer

Why is it important to have schema or owner for a table when we can directly use the table itself

I have seen various schema and tables under them. What is the significance of using schema or owner name with Tables rather than tables only.
1
vote
2 answers

Find Azure Subscriptions Where I'm The Owner

I am trying to find which Azure Subscription has me as the Owner. I have access to nearly 200 subscriptions within my company, one of which is supposed to have me as its Owner and the person who set this up is no longer available to assist with its…
hitman126
  • 699
  • 1
  • 12
  • 43
1
vote
1 answer

In Linux / Unix, is there a way to list every group ownership that appears under a specific folder path?

As the title says...I need to go through a path and list every group that owns a file under that path...without knowing the names of the groups. Example: MyFolder contains: -rw-rw-rw- 1 myuser group1 107717 Feb 26 08:03 thisfile -rw-rw-rw- 1 myuser…