Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (3)

50
votes
9answers
2k views

Any reason to write the “private” keyword in C#?

As far as I know, private is the default everywhere in C# (meaning that if I don't write public, protected, internal, etc. it will be private by default). (Please correct me if I am wrong.) So, ...
10
votes
2answers
520 views

Does Rails need database-level constraints?

I have the same problem as in the following post. So I am wondering, why doesn't Rails support generating foreign keys by default? Isn't it necessary? Or are we supposed to do it manually?
8
votes
5answers
3k views

How to generate a secure activation string in php?

After user subscribe email to my website. My website will generate an email confirmation and send to them. In the email content, i need to include activation key, something like: ...
5
votes
2answers
951 views

Auto-generate an interface implementation in C#?

I know this is quite lazy but, is there any way on Visual C# 2010 Express to auto-generate an interface implementation? (I don't mean at runtime but at design time, like a code snippet). Perhaps with ...
5
votes
2answers
101 views

Does a programmer's “document template” with tags exist for Windows?

I was wondering (if possible) if there was a program/tool/utility that when I create a new file and provide it with an extension that it creates the appropriate tags automatically? For example, a new ...
4
votes
2answers
2k views

ASP.NET auto-generate aspx.designer.cs turn off?

As I'm working on a asp.net/c# project, I'm confronted with the foobar.aspx.designer.cs that auto generates it's content. eg, when I'm changing the code/designer, the designer.cs automatically updates ...
4
votes
5answers
449 views

Generating UI from DB - the good, the bad and the ugly?

I've read a statement somewhere that generating UI automatically from DB layout (or business objects, or whatever other business layer) is a bad idea. I can also imagine a few good challenges that one ...
4
votes
4answers
15k views

Auto generate function documentation in Visual Studio

I was wondering if there is a way (hopefully keyboard shortcut) to create auto generate function headers in visual studio. Example: Private Function Foo(ByVal param1 As String, ByVal param2 As ...
3
votes
2answers
90 views

php progressive map generation

Hello I've been trying for couple of days to write a script to generate a progressive map using PHP. What I'm trying to achieve but with no success would be something like this: In short I have a ...
3
votes
3answers
169 views

How should I generate unique IDs for a bunch of objects?

I have an array consisting of A LOT of Symbol objects: var symbols = { alpha : new Symbol('alpha', 'symbol_0', '&#x03B1', 'GreekSymbol'), beta : new Symbol('beta', 'symbol_1', ...
3
votes
4answers
76 views

Is there a lib to make html easier in C#/.NET/ASP.NET

I remember once seeing a project a guy did where he write something like this in some language with json like strings which created pretty good html. Is there something like it i can use for C# or ...
3
votes
2answers
2k views

Python ORM that auto-generates/updates tables and uses SQLite?

I am doing some prototyping for a new desktop app i am writing in Python, and i want to use SQLite and an ORM to store data. My question is, are there any ORM libraries that support ...
3
votes
4answers
3k views

.NET Generate Sequence Diagrams From Running Code

Is there a tool that can generate sequence diagrams from running .NET code?
2
votes
3answers
80 views

Spliting autogenerated C# file

I have a huge autogenerated C# file. It contains many enums and many classes. The file is so big that it regularly blocks Visual Studio when it updates intellisense. I would like to chop the file to ...
2
votes
1answer
62 views

OpenGL auto code generator from a vector image

Is there any kind of application, tool, lib, ... that generates OpenGL functions from a vector image? To avoid any misunderstanding: I don't want to render something like an SVG file in my 2D OpenGL ...
2
votes
1answer
104 views

2d Platformer Terrain generation in java

I am making a 2d platformer, and am trying to get some auto-terrain generation. I have found a Perlin noise function, however it isn't really helping, it is generated noise, but there are some ...
2
votes
2answers
475 views

How to automatically reflect database to sqlalchemy declarative?

sqlautocode - has issues with many-to-many relations sqlsoup - doesn't support relations elixir - it's note auto-generate Is there something else I could try?
2
votes
2answers
141 views

Generate sitemap on a website made ​​with WebMatrix + Razor

I need to generate a sitemap to validate the site with Google Webmaster Tool. How can I generate the sitemap for my website automatically?
2
votes
3answers
183 views

Paypal auto-generated HTML code: why the 1 pixel image?

If you create a button using PayPals selling tools you are then presented with auto-generated HTML after filling in the details of the particular product you want to sell. At the bottom of this ...
2
votes
2answers
493 views

how to auto-generate a report with JasperReports

I'm working on NetBeans, and want to 'auto-generate' a report with JasperReports. Here is the deal: I want to create a form that asks for a date frame in order to do a sql query and bring that ...
2
votes
3answers
479 views

Generate Local Resource for all pages

Hi Is There Any Way or trick to generate local resource for all pages in visual studio 2010 automatically? I have about 500 pages and UserControls. its hard to generate resource for every page one by ...
2
votes
1answer
96 views

Autogenerated files and VC++ 2008 projects

all. I was wondering if there's a way to add Autogenerated files to a VC++ 2008 build. It seems like it's a fairly trivial thing to do if you write your own makefile, but I'd prefer to let visual ...
2
votes
1answer
116 views

Compiler Generated GetHashCode()

I'm working on writing a compiler for a language running on .net and one of the things I would like it to do is to automatically generate the GetHashCode method, but I have several questions: Is ...
2
votes
1answer
254 views

Ibator didn't generate Oracle varchar2 field

I have table APP_REQ_APPROVE_COMPARE with following fields: "ID" NUMBER NOT NULL ENABLE, "TRACK_NO" VARCHAR2(20 BYTE) NOT NULL ENABLE, "REQ_DATE" DATE NOT NULL ENABLE, "OFFCODE" ...
2
votes
7answers
372 views

sequential autogenerated Id with help of linq

I have a class Booking public class Booking { public int Id { get; set; } public string From { get; set; } public string To { get; set; } } I create a List ...
2
votes
5answers
429 views

How can I force WCF to put a type into the Client Proxy if it is not Used in the Service Contract?

I have declared an enum in my server code, and would like my client code to be able to use it. Unfortunately, it's not being auto-generated for some reson. My enum is declared similar to the following ...
2
votes
6answers
180 views

Switching data access strategy far into a project?

In a project we have implemented the data access layer (DAL) with a visual designer that auto-generates a lot of code (in our case: strong-typed DataSets and DataSetTableAdapters in .NET). However, ...
2
votes
5answers
2k views

how to create random folder names 12 characters long in .NET

I would like to create random folder names on my website to store images and their thumbnails, but instead of using the full version of a generated guid, i was thinking about using just part of it, ...
2
votes
2answers
1k views

Automatically generate rows in DB2 with SQL

I'm trying to search the DB2 equivalent of generate_series() (the PostgreSQL-way of generating rows). I obviously don't want to hard-code the rows with a VALUES statement. select * from ...
2
votes
1answer
542 views

Suppress results from generated code

I have a project created with "Suppress results from generated code" checked in its properties. When I add a service reference, the proxy class (reference.cs) that is autogenerated adds the following ...
2
votes
1answer
1k views

Inheriting from a UserControl abstract subclass

I have a set of UserControls that need to have a few similar properties. Thus I have defined an abstract subclass of UserControl that defines these properties and updated the .xaml.cs and .g.cs files ...
2
votes
3answers
664 views

SQL Structure to Store Surveys and Answers - Build Tables and Queries Based on User Data?

I'm a total newbie when it comes to SQL. I'm making a site in ASP.NET for doing surveys. A privileged admin user will be able to build a survey. Then lots of other people will respond to the survey. ...
1
vote
1answer
24 views

How to generate UserID as created with new user registration?

I have a normal database and not using any membership provider and I would like to auto-generate a new user ID which is created in database with a new user registration. As seen below this is what I ...
1
vote
0answers
26 views

Autogenerate Stub code in C++ to access a webservice?

I'm chancing my arm with this question. I'm looking for a tool which will avoid doing a lot of coding by autogenerating much of the code to access a webservice. I'm trying to help out someone who ...
1
vote
2answers
37 views

Auto-generate person_id and student_id for SINGLE_TABLE inheritance model

I have two entities person and Student, the student entity extends person and has its own identifier studentNumber. When creating a new student, i want to auto-generate both identification numbers. ...
1
vote
1answer
87 views

Casting DataRow to Strongly-Typed DataRow: How do they do it?

I'm trying to make a lightweight version of some strongly-typed DataRows in order to write a test for a method that takes IEnumerable<T> where T : DataRow. I would like to make a class that ...
1
vote
1answer
42 views

How libtool custom script is generated by configure?

I'm quite new to libtool stuff. I have a problem that building my project requires libtool 1.5, but the default libtool on my system (debian, squeeze) is 2.2. What I did is I've installed libtool 1.5 ...
1
vote
3answers
118 views

Generate C# Class Code for Table in Visual Studio

I have multiple tables in my Server Explore database file. I want to generate auto code of Classes for tables, so all classes with their attributes, constructor and getter setter methods automatically ...
1
vote
1answer
91 views

Force WPF DataGrid to regenerate itself

I have a custom control which inherits from DataGrid and is basically a 2D DataGrid (accepts an ItemsSource with two dimensions, such as double[,] ). I added a specific DependencyProperty which is ...
1
vote
1answer
55 views

How to auto-generate settings/options dialog box?

Using Visual Studio 2010 C++ with MFC. The number of configurable settings in my application is slowly creeping up. I managed to design a settings class where adding a single line will add a setting ...
1
vote
1answer
47 views

Using autogenerated code without pregenerating?

Is it possible to use an autogenerated class in the same run as it is being generated? I am trying to achieve something which works as a factory but for autogenerated classes. My scenario is like ...
1
vote
1answer
100 views

How can I compile auto-generated C files in pre-build?

I have an Eclipse project that I need to auto-generate some files before compiling it. I do not want to put this auto-generated files in my repository, so each time I compile the projetct I perform a ...
1
vote
1answer
297 views

Java JPA (EclipseLink) How to receive the next GeneratedValue before persisting actual entity?

Good afternoon, everybody. I'm using the EclipseLink implemetation of JPA and i've got a problem. Here is my entity class: @Entity @Table(name = "attendances") public class Attendance implements ...
1
vote
1answer
173 views

apache camel mail to identify auto generated messages

I'm looking for a way to identify auto generated messages like outlook's "Out of office" replies. I stumbled upon this header a header called "Auto-submitted" that's supposed to do the trick but ...
1
vote
1answer
100 views

Add autogenerated C# file into solution

In C++ I can autogenerate some classes and then modify an empty cpp file to #include "myautoclass.cpp" in the prebuild step and these classes will be compiled and linked. Is there a way to do ...
1
vote
0answers
44 views

Good Auto-generation of POD from a Schema?

All, Does anyone know of a tool that can create vanilla POD-like C++ structures from a Schema description? Important qualities are: reasonable to use as "first class citizens" inside of the code. ...
1
vote
2answers
209 views

How to auto generate a webpage after user submits form

I am looking for some initial direction on this one because I cannot seem to find my way with it. Let me explain... I am developing a website wherein a logged in site member (Joomla 1.6) can fill ...
1
vote
1answer
214 views

Change VisualStudio Auto-generated Code

I have created myself a new TextBox control which inherits from the default System TextBox. If I add a datasource to my designer and in the DataSource view I can see my new text control in the list of ...
1
vote
1answer
1k views

Using sequence in MySQL and Hibernate

I'm working on a project that uses Hibernate and MySQL. I intend to use sequence to generate ID for all tables in database. (It's hard to describe my question, so I will show you as an example). For ...
1
vote
1answer
200 views

Transform java objects to dynamic xml

I'm working with a dynamic xml table format consisting of a schema that specifies column names and types, and a values tag which contains the rows. Simplified version of xsd below: <xs:complexType ...

1 2 3