Questions tagged [auto-generate]

The automation of the creation of classes, files, documentation, or anything else for which manual creation is costly.

See also

654 questions
0
votes
1 answer

WPF Autogenerated textbox control

I need to create some Control,like that First i must have 1 empty field. After I wrote some text in this field the new field is appear. And so on. If i remove all text from field - old (right) field is removed too. In my project i use MVVM. I…
chromigo
  • 1,134
  • 1
  • 15
  • 25
0
votes
0 answers

Visual Studio 2012 Auto-generating Constraints When Modifying Form

I'm having a problem in Visual Studio 2012. When I modify my windows form in any way, the following constraints are auto-generated: Me.DataSet.DatabaseSpecs.Constraints.AddRange(New System.Data.Constraint() {New…
0
votes
2 answers

How to auto generate password in sql database?

I am doing a mini project on bank account. Front end is ASP.NET and backend is SQL SERVER. When a person creates an account, auto generated account number and password would be saved in the database and that account number and password would be sent…
user2758530
  • 15
  • 1
  • 5
0
votes
1 answer

Windows Phone Classes with same name but different folders

I have two auto-generated classes generated by xsd tool. The classes have same name and similar member variables. But many of the members are different. I am storing these classes in different folders. But there is still a conflict - like this The…
kshitijgandhi
  • 1,532
  • 1
  • 16
  • 28
0
votes
1 answer

how to add AutoGenerateEditButton="True" in codebehind

I am creating a grid view dynamically and everything works perfect. But i can't seem to add this property in my code behind when i create the DataGrid. Is there something that i need to do in order to allow this? DataGrid DG = new DataGrid(); DG.ID…
Brad Hazelnut
  • 1,603
  • 5
  • 21
  • 33
0
votes
0 answers

generated file related to entity mapping - what is it, and is it reliably re-auto-generated?

I had a file auto-generated, called Core.Views.cs, inside a folder where we have a Core.edmx file. This looks like something related to the entity framework, although I've not come across this specific type of auto-generated file before. The file…
Chris Halcrow
  • 28,994
  • 18
  • 176
  • 206
0
votes
1 answer

How can I create an addin in Visual Studio to generate javascript, CSS and other code from a settings file

My VS 2010 ASP.Net Web App project would have: 1. Settings file (names of actions, behavior, location of an image in an image cluster, etc.) 2. A javascript containing functions for the actions to use. This file that will get combined in with other…
Mark Bath
  • 92
  • 1
  • 8
0
votes
1 answer

Integrating Selenium Tests With Eclipse Project

I have generated a Selenium test for testing a web service and exported that as a Java/Junit4/Remote Control test file. The file looks as follows : package com.example.tests; import com.thoughtworks.selenium.*; import org.junit.After; import…
Radz
  • 543
  • 2
  • 10
  • 22
0
votes
1 answer

jibx : how to remove the word "List" from auto generated java collections?

I'm using jibx to auto generate java classed based on a xsd schema. In this schema I have a collection called markets: When I run jibx (using maven…
marcocast
  • 401
  • 4
  • 9
0
votes
1 answer

Solution Design - Architecture : Auto-generate from and submit form events

This is a design issue i would like to discuses before starting development so , any opinion may help, there is no specific way to do it except that the system should be delivered under sharepoint 2010 and SP 2007 because of licensing issue. My…
Moe
  • 63
  • 2
  • 10
0
votes
0 answers

Codeigniter, Ion-auth: mail user password

I use Wordpress as a CMS, and it has a nice option whereby, when an admin creates a user, Wordpress generates a password and emails it to the user, who can then login and change it to something more memorable. Can such a feature be implemented in…
Fred Riley
  • 333
  • 1
  • 3
  • 12
0
votes
0 answers

Generate HTML form from JS model (with bindings)

I am interested in a JS library that does the following. Given a model, for example { name: 'James Smith', level : 3, groups: ['admins', 'users'] } it should create a set of fields and bindings, for example:
Andrey Shchekin
  • 21,101
  • 19
  • 94
  • 162
0
votes
1 answer

Adding JCheckBox Array to JPanel in Netbeans

I've been trying to add an array of JCheckBoxes to a JPanel in Netbeans that has been automatically generated by the Netbeans GUI, when I create an array of the JCheckBoxes and then try to add them to the JPanel using JPanel.add(jCheckboxArray[x]) ,…
Zac
  • 2,229
  • 9
  • 33
  • 41
0
votes
1 answer

Autogenerated PHP page after somsone fills in a form

how to make a autogenerated page in this style after someone fills in registration-form:

Name of the User

HTMLboy001
  • 27
  • 3
  • 10
0
votes
3 answers