Questions tagged [owner]
209 questions
0
votes
2 answers
Cannot edit UDDI Provider with Microsoft UDDI3 API using C# and you are not the Provider owner
I have configured one Biztalk Server to run the Microsfot UDDI server. I configured one Active Directory group to be the administrator's group for the UDDI.
When I use the UDDI Web User interface, I can create providers, and also I can view the data…

David BP
- 21
- 3
0
votes
1 answer
vboxsf error when passing owner,group and mount options parameters
Vagrant Version 1.6.3
Virtual Box 4.3.12
VBoxGuestAdditions-4.3.2
Host OS -> Windows 8
Guest OS -> CentOS 6.5
Vagrant synced_folder works fine when this is the content of Vagrentfile
config.vm.synced_folder ".", "/vagrant", disabled:…

Yogesh Yadav
- 4,557
- 6
- 34
- 40
0
votes
0 answers
WPF: can a page own a WindowsForms form
I have a wpf application where several pages are displayed inside a window (using uniformgrid with dynamically added frames). The pages get rearranged inside the window when special events are called. The problem is: sometimes I have to call a…

purbsel
- 307
- 8
- 21
0
votes
1 answer
Change owner of a sharepoint site
My company has recently started sharepoint for collaboration. Now I created sites and subsites for all my projects. And that time I created new groups for owner, members and visitors for each subsite. But later I realised that the owner group can be…

Juli Gupta
- 93
- 1
- 10
0
votes
1 answer
How to show FileSystem.DeleteFile dialog as top most or set the parent/owner?
When I call the following line, the dialog will show behind any floating dialogs, so I need to be able to set it to top most, or at least set the owner:
FileSystem.DeleteFile(someString, UIOption.AllDialogs,…

jsirr13
- 944
- 2
- 12
- 38
0
votes
1 answer
New case email alert for related account owner
Desired scenario:
When a new case is received, and meets certain criteria, an email is sent to the owner of the account that the case relates to.
I could create a workflow and email alert for each user who is able to own accounts, but it seems…

Oliver
- 103
- 1
0
votes
3 answers
ShowDialog(IWin32Owner) from Class Library
I have a class library that holds a "MessageBox" equivalent with a few more bells and whistles.
If I call the ShowDialog(IWin32Owner) method, this works, and the form will display in the centre of my parent form.
Sometimes, however, this form is…

Simon
- 9,197
- 13
- 72
- 115
0
votes
1 answer
Request Tracker: Notify Previous Owner
I would like to be able to send an e-mail to the previous owner when someone steals a ticket, currently with Request Tracker I can send an e-mail to the new owner but not the previous owner.
There appears to be an extension to allow this however it…

MrWhippy
- 15
- 4
0
votes
0 answers
Ruby Check Class Owner From Other Inheritance With Default Library
I wondering of how to check the owner of certain method/class from other class.
For example:
class Value
attr_accessor :money
def initialize
@money = 0.0
end
def get_money
return self.money
end
def transfer_money(target, amount)
…

user3163916
- 318
- 4
- 16
0
votes
1 answer
How to open Child form that only locks parent form?
I want to open a child form that only locks its parent form. I can't use ShowDialog() because it locks all opened forms until dialog closes.
Main Form
- Users Form
- Services Form
When I open a new child form as Add New User on Users form, I want…

cihadakt
- 3,054
- 11
- 37
- 59
0
votes
1 answer
no owner defined between classes - am I using a reserved keyword?
I've changed my classes a few times trying to get this. I keep getting a no owner defined between classes. I've tried putting the owner on both sides of the relationship, but with no effect. Here's the pertinent portions of the classes. I also tried…

Michael DiLeo
- 571
- 1
- 4
- 15
0
votes
2 answers
Is this an efficient way of finding and assigning the owner of a window in WPF?
This is the way I do it now, but I'm not sure if it's inefficient, since the runtime is O(n):
foreach (Window window in Application.Current.Windows)
{
if (window.GetType() == typeof(TransactionsWindow))
{
this.Owner = window;
…

B.K.
- 9,982
- 10
- 73
- 105
0
votes
0 answers
how to close an owned Form2, when Form1 is the owner
i have form1, and i call form2 by using show(this) in form1.
I have in Form1
private: Form2^ form2;
private: Methode1(.... )
{
form2=gcnew Form2^();
form2->show(this);
};
my Question is:
how can i close the owned Form (Form2).

joni klaoud
- 1
- 2
0
votes
1 answer
Django REST framework: does a Django model object have an owner attribute?
I went digging through the documentation and used pycharm to look at the documentation,
but I do not understand what the line 'obj.owner' means. I believe that obj is a Django model that's being passed in.
Is there a built-in attribute named…

user798719
- 9,619
- 25
- 84
- 123
0
votes
0 answers
Install4j setOwnerAction doesn't seem to work on symlink
I'm trying to use the "setOwnerAction" in install4j to set the owner:group on the contents of a directory. The "recursive" checkbox is checked. It works fine when the directory is NOT a symlink, but when the directory that I give is a symlink, the…

skydvr
- 116
- 7