I have a userControl in which I need to know when the user has clicked somewhere outside that control. Is it possible? LostFocus and LostMouseCapture events do not work.
how can i control the number of retries of the "opener.open"?
for example, in the following code, it will send about 6 "GET" HTTP requests (i saw it in the Wireshark sniffer) before it goes to the " except urllib.error.URLError" success/no-success lines.
password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()
…
I know how to find which control made the postback, it's something like:
string postBackControl = Request.Params.Get("__EVENTTARGET") == null ? string.Empty : Request.Params.Get("__EVENTTARGET");
but how can I find the one that made async postback?
I have a function a time consuming operation that is done
I want to start and end operations appear to be user (By statusbar control)
But when performed function, both text executed at the end of function.
(user can not sees "Start Operation ...")
What solution do you recommend to me?
private void…
I have a RadGrid but it is spanning the width across the page, how can I control it and set a width and mae contents in the cells wrap if they need to?. I cant find anything that is helping me. I tried MasterTableView-TableLayout="fix" but then anything in the cells gets cut off. Any help would be much…
I have a div tag for which i have defined a border.
i have given the validation control inside the div tag
Now before clicking the "submit" i get to see the div tag and border. - how to avoid this
Now after clicking the "submit" i get to see the div tag and border- which is exptected and correct.
My…
i need to bold some text as i add them to the richtextbox control, currently here is my code
With txtDetails
If Not IsNullOrEmpty(title) Then
.SelStart = Len(.Text)
.Text = .Text & title
.SelLength = Len(title)
.SelBold = True
…
This should work.. I think..
string ctrlName = "btnSomeButton" + someIndexValue;
this.Controls[ctrlName].Text = "Some value";
I get 'Object reference not set to an instance of an object.', the control does exist on the form. I've tried casting it.
I am trying to create a user control to wrap around the Membership API (A set of custom Gridviews to display the data better) and, while the code and the controls worked fine in the page, when I moved them to an .ascx, the events stopped firing to it.
<%@ Control Language="C#"…
there is a form where a user enters a date in [Text4]
when users clicks OK, the following code is run:
DoCmd.OpenReport "All_Ones", acViewPreview
the following is the control source of a textbox on the report
[Forms]![By Number]![Text4]
for some reason after the report is…
I have a custom control I created from a expression design I created and exported to xaml. I have put in it a bound itemtemplate/datatemplate of a ListBox contorl. It doesn't seem to be rendering more than once and/or it is rendering each item in the same place(kind of like the…
In Blackberry device if we go to
Options --- Date/Time ----Use Network Time -- No
Now when we select date or time a very stylish selector opens up that
enables user to set date and time.
Can i use such control in my app.
I saw such in Storm 9530
Any idea please…
Hi so say I have this code:
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle: @"Yay"
message: msg
delegate: self
cancelButtonTitle: @"Proceed..."
otherButtonTitles: @"1", @"2", nil];
How do I control the other buttons "1" and "2"? (Suppose all other…
I have a User Control for searching container numbers. If the user enters a container number that's new to the system then I want to tell the VM "I have a new record to add".
The MVVM method avoids using Events to communicate with the VM as they create…
Hi all,
simple question regarding property value inheritance in UserControls.
If i create a UserControl, it has some standard properties like Background, BorderBrush and BorderThickness.
Within that UserControl i have a border. I want to know, if i dont…
I need to retrieve my data from a ListView control set up in Details mode with 5 columns.
I tried using this code:
MessageBox.Show(ManageList.SelectedItems(0).Text)
And it works, but only for the first selected item (item 0). If I try this:
…
I need a table control where one can edit properties by various ways, just like editing properties in Visual Studio (it's for XML editing). Does anybody know about something like that, written by others, or maybe a solution from MS itself?
I got 15 tabs and 15 user controls assigned to each tab.
All are loading at once which id delaying the process.
I want to load one user control on selection of a tab in tab container.
I've been using the ASP.NET Ajax Control Toolkit Slideshow extender and while it works, I'm not totally satisfied with it as it has problems handling multiple slideshows on one page and the fade is choppy. Anyone suggest any alternatives?
I'm creating a custom ActionResult class and I need it to be able to operate on a UserControl. All of the examples I've found so far pass in the full path like so:
return MyResult("~/ControllerName/UserControlName.ascx", myModel);
But I'd…
Hi,
I am using jquery treeview with the control option to expand and collapse the branches. I would like to hide this if there is no branches which expand / collapse (i.e. no plus signs). Does anyone know of a way of doing this?
Thanks
Hai am using c#, i created a wpf popup control in my wpf form, when i click the popup is opened, now i want to make that popup as movable one, how u can do this,....