|
Is there a way to do form filling with XPS documents in C#?
Started by John on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Next, you create your form as a FixedDocument.
It wouldn't be an ideal wish to have the user fill in for your form.
XPS is XML, so you can change it.
If you want to fill a XPS form, yes .
|
|
Is there a tool for filling a System.Data.Dataset with test data?
Started by JDKing on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
There are several tools that you could use.
Could repeatably fill the dataset would be a better solution.
|
|
I have 2 basic forms -- sign in and sign up, both on the same page. Now, I have no problem with the sign in form auto-filling, but the sign up form auto fills as well, and I don't like it.
Also, the form styles get a yellow background which I can't manage...
Started by henasraf on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
HOWEVER firefox 2.x+ and google chrome....
You can also change the name attribute of your form elements to be something generated so that the browser won't keep track of it .
Lt;form autocomplete="off">
Pretty much all modern browsers will respect that.
|
Ask your Facebook Friends
|
I have an Infopath 2007 form hosted on MOSS 2007. The code behind the form is written in C#. In this context, System.Environment.MachineName return the server name.
How can I get the name of the computer from which the client is filling this form?
Started by alexandrul on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If it's on an internal Network, maybe a DNS Lookup would work, as outlined here ?
You can simply add a rule... .
Would ASP.NET's Request.ServerVariables("REMOTE_ADDR") help?
If it's over the Internet: You can't get the PC Name AFAIK (which is a good thing) .
|
|
Hello,
I'm using asp.NET MVC, and am looking at the JQuery autocomplete plugin for what I want to do. I need some extra functionality that I don't think it provides.
I have a page with two text fields, First and Last name. Ideally, when someone begins...
Started by William on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It could be confusing to some users since it breaks from the norms they are familiar with... .
What you are looking for is a little unusual for a traditional auto-complete plug-in and the behavior would be somewhat unexpected from a usability standpoint.. .
|
|
I am researching filling out a form programatically. I have seen this question which is pretty similar to what we want to do. But I have a few other questions.
Is there any examples of this online to get me started? We have some areas where we have circle...
Started by Mike Wills on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Form filling of PDF's at my place of business A LOT! Honestly, I have looked into rolling a custom.
|
|
I'm building an ASP.Net/MVC application using SQL 2008 Developer edition and a DB in Sql2005 compatibility mode. Using Entity Framework as DAL.
My problem is that I have a table where I'm using the integer identity column in a like an Invoice Number, ...
Started by photo_tom on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
On identity insert when creating rows?
SQL Server does not fill in the gaps of an identity field by default.
|
|
I have a sproc that puts 750K records into a temp table through a query as one of its first actions. If I create indexes on the temp table before filling it, the item takes about twice as long to run compared to when I index after filling the table. (...
Started by Dan Blair on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
This is because if the data you insert is not in the order of the index, SQL will have to split pages to make room for additional rows to keep them together logically
You should NEVER EVER create an index on an empty table if you are going to massively... .
|
|
Can anybody recommend a good tool for filling data into XML documents restricted by an XML Schema Definition (XSD)?
My XSD defines the content of and application form with lots of optionals, choices, regular expressions and enumerations and I would like...
Started by lox on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
When filling in XML requests Storm does do a bit of hand.
Can try Storm and the associated WCF Storm.
|
|
Hi Friends i develop a webpage in that i have a registration form that allow users to enter their personal information . After filling the form , user can click the button , i need to create a PDF as same as in the Registration form [including colour ...
Started by Raju on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You are looking for html2ps / html2pdf
Also take a look at wkhtmltopdf
We had a lot of difficulty getting html2ps to do what we wanted. .
|