1
vote
4answers
66 views
I want to make a panel have a thick border. Can I set this somehow?
I want to make a panel have a thick border. Can I set this somehow?
PS, I am using C#. VS 2008.
1
vote
4answers
40 views
Control Properties in Visual Basic 6
Is there a way to ask for a control property in a loop??
I need somethig like this:
For each p in control.properties
if p = "Value" then
msgbox "I Have Value Property"
elseif p = …
0
votes
1answer
28 views
Sending a Text Box control to the Printer?
I cannot seem to figure out how to send a text box control to print in Java.
The Program creates word search puzzles, now I would like to print them.
I simply want to print the text Box control as …
0
votes
1answer
20 views
Sheridan SSDBGrid control having problems in a VB6 app
We've got an old VB6 application we wrote about 10 years ago. Back then we had no faith in data binding, so we did all of our own population of controls in code. (Long story, don't ask.) This …
0
votes
3answers
51 views
C#: What is the proper way to swap winform controls?
What is the proper way to replace one winform element with another element when something is triggered? For example, I would like to replace a button with a text box in the same position and the same …
1
vote
1answer
121 views
CompositeControl and XML Deserialization on design-time error.
I get "Error rendering control" error that only happens when I place the control on the webform in desgin-mode, if I run the page the control is displayed correctly.
The above statement is not …
0
votes
1answer
12 views
How do you instantiate .NET hosted controls dynamically loaded via JavaScript?
I am trying to load a bunch of .NET hosted controls into a page dynamically using JavaScript to inject OBJECT tags into the HTML.
My problem is that the objects do not instantiate, only the static …
1
vote
1answer
24 views
How to enumerate MFC controls if I only have a h_wnd ?
Hello. Long time reader, first time poster.
I'm a big noob when it comes to win32 gui apps so here's my question.
Let's say you have a handle to a window:
HWND h_wnd;
That window ultimately has …
0
votes
2answers
40 views
Deeply cloned Panel; controls don’t redraw
Hello. I have problems with redrawing child controls of cloned panel.
First, I'm not using IClonable. I'm using reflection.
My code:
public static Panel ClonePanel(Panel panel)
{
Panel newPanel …
0
votes
2answers
31 views
Using Java Controls/Properties during runtime???
I cant seem to get this statement to work during run time.
textWords.setText(item);
textWords is an object, setText is a method and item is an integer.
Anyone familiar with this? I cannot seem to …
0
votes
1answer
98 views
composite control accessing javascript functions
I am creating a composite control, that implements IScriptControl.
in CreateChildControls() function i have this:
HtmlGenericControl ul = new HtmlGenericControl("ul");
HtmlGenericControl b2 = new …
2
votes
3answers
41 views
get the control with a certain name provided as a string in c#
Hi there, i have the name of a control in a string and I want to manipulate the control, how do i turn the string into the current form instance of that control in c#?
e.g.
string controlName = …
1
vote
1answer
31 views
Applying a FontFamily to all Controls in Silverlight 4 Beta
I'd like to give every Control a certain FontFamily and FontWeight in Silverlight 4.0. I know that styles can now apply to all controls of a certain type, so I tried this:
<Style …
1
vote
1answer
23 views
in WinForms can control focus change “automatically”? if yes, can I somehow distinguish this from user triggered focus change?
I am not fully sure about this, but I seem to be observing cases where focus shifts automatically from one control to another, even after I explicitly programmatically set the focus to control that I …
0
votes
2answers
15 views
How to access Form controls on Postback from Dynamically built form.
I'm adding controls at run-time to the Page Form object.
Each control has an Id.
On postback, I want to be able to access these controls and their values.
Currently, when I do a postback, the form …
