|
My app is expanding, but the reqs dictate that there should be only one window open at all times, think of Nodepad where there is a menu, with each menu item different functionality but only one window open at all times as opposed to Excel where a user...
Started by gnomixa on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If your requirements are "one window - multiple functionallity" I would certainly... .
Here's a quick intro.
Fortunately, there is great support for MDI in WinForms.
It sounds like what you are describing is Multiple-Document Interface (MDI) Applications .
|
|
Hi games, I have 5 different infopath forms.on sharepoint site , i want to upload them in single document library. But when i am going to do this it is overwriting existing form. What i have to do. Is that possible to upload all 5 forms in single Document...
Started by Lalit Dhake on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In case you are submitting form directly from InfoPath then you need to change....
Uploading the form with same name would result in overwriting the existing one.
The only way to do it would be to rename the each form and use unique name.
|
|
Internet Explorer (from versions 4 to 7, at least) limits the number of files uploaded using a single 'input type="file"' form field to one. What is the best approach to take if I want to upload more than one file in a single HTTP POST request?
Started by Matthew Murdoch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
There is also a great resource ' File input (or "upload")... .
If you don't know how many you want ahead of time, you can use jQuery (or plain javascript) to create them on-the-fly .
You have to include multiple input controls, one per file to be uploaded .
|
Ask your Facebook Friends
|
I have an application with one form in it, and on the Load mehtod i need to hide the form.
The form will display itself when it has need to (think along the lines of a outlook 2003 style popup), but i cant for the life of me work out how to hide the form...
Started by Pondidum on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm coming at this from C#, but should:
Application.Run(new MainForm());
This....
A better paradigm is to not create an instance of the form until you need it.
Then avoid calling Show() until you need it.
The form's Visible property to false.
|
|
I have a windows form application that uses a Shared class to house all of the common objects for the application. The settings class has a collection of objects that do things periodically, and then there's something of interest, they need to alert the...
Started by rwmnau on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You should look at the documentation....
If that is hard to come not.
You must use a reference to the existing form instance.
It from a thread.
Like Form1.NotifyIcon1.Something.
VB.NET trap is to reference a Form instance by its type name.
|
|
This is basically a nested form question, albeit with only one field that belongs to a parent model. My data entry form collects data for a model - however I also need to collect one other a data element/value (UserID) that actually goes into a parent...
Started by BrendanC on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
( http://api.rubyonrails.org/classes separate from the model, eg
radio_button_tag
inside the form_for block
Heres something from my own app
View:
<% form_for....
For the "magic" form <=> model mapping form_for is used.
|
|
I've found a few samples online but I'd like to get feedback from people who use PHP daily as to potential security or performance considerations and their solutions.
Note that I am only interested in uploading a single file at a time.
Ideally no browser...
Started by Drew Noakes on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
HTML <form enctype="multipart/form-data" action="action.php" method="POST"> <input type.
|
|
I've been poking around this site and I've seen a few post about how to "migrate" to MVC from Web Forms... but as a single developer working on a complex Web Forms app I simply don't have the time to to a full migration. What I want to do is add all new...
Started by blesh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The second article....
And another article for adding MVC to existing apps with step-by-step instructions is here .
One article that seems similar to what you're looking for is here .
Scott Hanselman has some pretty good articles on mixing MVC and webforms .
|
|
On the front page of my rap lyrics explanation site , there's a place where users can try explaining a challenging line:
Here's the partial I use to generate this:
<div class="stand_alone annotation" data-id="<%= annotation.id %>"> <%= ...
Started by Horace Loeb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not repetitive if you generate the ID programmatically and put the whole form is similar):
<% form_for [entry, Vote.new], :html => { :id => 'new_up_vote_' + entry.id.to_s I tried:
<% form_for @a do....
At the bottom.
|
|
Hi
I need to convert a string to char array in c? How can i do this
or atleast tell me how to extract a single char from string as incremental in next ???
Thanks in advance
Started by Cute on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Therefore, to extract a character c at index i from string your_string, just use
char c = your_string[i];
Index is base 0 (first character is your... .
Every C "string" is an array of chars, zero terminated .
In C, there's no (real, distinct type of) strings.
|