0
votes
0answers
12 views
How to generate a PDF file for an array using the TCPDF library?
How can I generate a PDF file with images from the array below?
[19]=>
array(9) {
["id"]=>
string(10) "5894178151"
["created_at"]=>
int(1258736077)
…
0
votes
2answers
38 views
generating html file which fetch data from sql in the C# and asp.net
hi ,
im new to asp.net and now i am creating an html file in asp.net c# which is stored in an folder.now when the aspx file is runned it will fetch some data and display it in the …
0
votes
2answers
19 views
Page object problem
Hi,
I have a class which generate a dynamic page.
Panel myPanel = new Panel();
TextBox myTextBox = new TextBox();
myPanel.Controls.Add(myTextBox);
Page thePage = new Page();
…
1
vote
5answers
96 views
Generating sql insert into for Oracle
The only thing I don't have an automated tool for when working with Oracle is a program that can create INSERT INTO scripts.
I don't desperately need it so I'm not going to spend …
0
votes
1answer
34 views
Generating large amounts of PDF Docs from templetes
Where I work we get PDF templetes from our clients and we convert them into html templates that we can change out tokens in the page with other info and mail them out to their clie …
0
votes
0answers
23 views
use matlab generated dll for generating c++ dll
hi,
I have generated cppshared lib dll using matlab command mcc. Now I want this dll to make another dll inside microsoft visual c++. Is it possible to make a dll using another?
P …
0
votes
2answers
49 views
Libraries or tools for generating random but realistic text
I'm looking for tools for generating random but realistic text. I've implemented a Markov Chain text generator myself and while the results were promising, my attempts at improvin …
1
vote
1answer
25 views
Method for generating numerical values from a URL
In the 90s there was a toy called Barcode Battler. It scanned barcodes, and from the values generated an RPG like monster with various stats such as hit points, attack power, magic …
1
vote
1answer
51 views
Adding a hook to script/generate migration
I do my Rails dev from xterm and in vim.
I'm getting sick of running script/generate migration do_whatever, then trawling through db/migrate trying to tab-complete to 200910152350 …
1
vote
2answers
167 views
VBScript to Write a Macro within an Excel file
Is it possible for the VBScript to write a Macro within the excel file when it is generated that would be able to run whenever the file is opened?
Ive got a VBScript to auto gener …
1
vote
3answers
55 views
How can I generate images of circles, of varying sizes?
For the task I'm trying to accomplish, I need to generate many images, all consisting of a black circle border on a transparent background, but each a different size (going up in s …
3
votes
6answers
299 views
Generate Ant build file
I have the following project structure:
root/
comp/
env/
version/
build.xml
build.xml
build.xml
Where root/comp/env/v …
3
votes
2answers
61 views
Nhibernate/Domain Objects generate test objects with random data from factory
We are doing some DDD at work and I am trying to find a good utility for generating Domain Objects with random data, or predefined data, and populating dependent objects.
Example …
2
votes
2answers
192 views
How do I modify the set method signature that Eclipse auto generates?
My current project has the coding convention that instance variables are never referred to with the this. prefix and that parameters should never hide instance variables.
This res …
0
votes
4answers
66 views
Generating a class from an object (JavaScript)
I'm trying to generate a class from an object in JavaScript. For example:
var Test = {
constructor: function() { document.writeln('test 1'); },
method: function() { docume …
