Tagged Questions
The form-designer tag has no wiki summary.
20
votes
3answers
863 views
Creating a professional-looking (and behaving!) form designer
When I began programming (some 10+ years ago), three things amazed me:
Compilers/interpreters (back then I knew them as "programs that make my programs work", often followed by the qualifier ...
8
votes
3answers
171 views
Equivalent to designer guidelines in code
The VCL form designer offers pink guidelines for aligning controls at their respective text base lines:
But as far as I can tell this doesn't work for labels and checkboxes. Update: It works for ...
7
votes
2answers
325 views
How best to create a HMI display panel (user-customised interface) in Delphi
I need to improve a screen in our Application that presents an HMI (Human Machine Interface) display embedded in our Delphi code. This screen provides our customer with the ability to perform a range ...
6
votes
3answers
166 views
Disabling the form designer in DelphiXE
Is it possible to disable the form designer in DelphiXE "on-demand/selectively" and only work with the code of a form/class where needed, in the event that controls are not installed in the IDE?
4
votes
3answers
1k views
How to Implement Custom Windows Forms Designer?
How can we implement Windows Forms Designer in a WinForms application ? Visual Studio uses System.ComponentModel.Design namespace to implement the Form Designer. How can we use this to implement a ...
4
votes
4answers
881 views
Resources in project file in VS2008 gets “reused” creatively by the form designer, possible to avoid?
We have some auto-generated resource files in our project in Visual Studio 2008, with some localized versions, and in one of these localized versions, there is a string which in this case is empty.
...
2
votes
2answers
153 views
TButtons and “runtime themes”: peculiar behavior
Have you seen this?
I have a little utility application (for easy load / test xml generation from CDS and/or DBGo), and I had put some buttons (the poorest button of all, TButton) to trigger some ...
2
votes
4answers
237 views
How to implement a winform dialog in Delphi without IDE?
I don't have the Delphi IDE installed. Can I still design forms?
1
vote
4answers
117 views
How to use the Visual Studio form designer for other windowing systems?
I'm creating a windowing system, comparable to WinForms or WPF, in XNA for a game I'm making.
Now, it would be nice to be able to use the Visual Studio form designer to make my windows.
I've googled ...
1
vote
1answer
135 views
c# Form Designer - generated code problem
I have map control on main form. Problem is, when form designer generate code then overrides value of variable (RouteOverlay and MarkerOverlay) with new value and i don't want that.
Before generated ...
1
vote
1answer
100 views
WYSIWYG for javascript
I know the term "what you see is what you get" cannot be realy applied to javascript, but I am curious if is there any IDE which helps you generate JavaScript sourcecode by visualy designing it. It ...
1
vote
3answers
64 views
When using a form designer, should labels be named?
In IDEs like QtCreator or with Visual C#'s form designer, I'd like to hear whether labels "should" be named or just left with the default naming scheme from the form designer. If the object is not ...
1
vote
1answer
109 views
Examples of good IDEs to analyze for custom Form/Report designer
I am working on a basic form/report designer. Some of the features i'm looking to implement are:
Single or multiple selection of objects
Alignment of objects (when several are selected)
Same-sizing ...
1
vote
4answers
884 views
Open source runtime form designer
I'm searching for an open source runtime form designer (for SCADA, not searching for html designer), which is somewhat similar to modern IDE WYSIWYG's. So far, my list is empty.
Requirements are ...
1
vote
2answers
711 views
Controls on main window using Visual C++ designer?
Is is possible to draw controls using Visual C++ designer on the main window, in the same way you can design dialogs? I'd preferably like to be able to design the main window controls this way without ...
1
vote
2answers
431 views
Non-Default Constructor
I have a component I created in C# which had previously been using the default constructor, but now I would like it to have its parent form create the object (in the designer), by passing a reference ...
1
vote
2answers
2k views
.NET custom form designer: How to implement IMenuCommandService?
I've got a report form designer written long ago for a database project. It used a lot of winapi magic hence i was forced to rewrite some parts 'in proper way'.
Thanks to some articles from MSDN ...
0
votes
0answers
20 views
Searching for forms/gui drafting software
Sorry... I kinda don't know how to ask google about this :(
I was looking for software allowing to write a draft of forms, that can be shown to business partners. The project is in analysis phase, so ...
0
votes
1answer
44 views
Creating a Form Designer
I was asked to create a Form Designer from my supervisor but, I do not know where to even begin. (And my supervisor didn't give me a good explanation).... :/
So from what I can gather, a Form ...
0
votes
1answer
119 views
Updating form designer after adding controls through an Add-In
I am exploring the EnvDTE library, and building a form generator.
I have successfully added controls to a form, however, the controls' codes are not added to the form designer (formname.Designer.cs), ...
0
votes
0answers
60 views
StandardCommands does not work on non-standard control in windows form designer
I need standard command like copy/paste for non-standard control like LineShape (VisualBasic PowerPack Shapes) in custom form designer
Some problem:
1- can't drag drop on form. (but i find way to ...
0
votes
3answers
380 views
Native API window designer
Why isn't there a designer for native api forms in Visual Studio? Similar to Delphi?
If there exist some programs, tools etc, please advice.
What is the best approach to design complex windows in ...
0
votes
3answers
1k views
Custom form designer, move/resize controls using WinAPI
I have to fix some problems and enchance form designer written long ago for a database project.
In Design Panel class code I encountered these lines
private void DesignPanel_MouseDown(object sender, ...