Do not use. This tag has been used for generated code, generated keys, generated-anything. Too broad.
Questions tagged [generated]
212 questions
0
votes
1 answer
Clear dynamically generated images
This is my current demo.I am trying to load images dynamically and now I would like to know how do I remove all the images from all the pages with a click of button.
Here is my code:
$(function () {
$('#fileupload').fileupload({
…

coder
- 13,002
- 31
- 112
- 214
-1
votes
3 answers
PHP Random Variable Names
Hi I'm really new to programming I mean really new so before answering, think in the mind of a programming n00b! Anyway, more to the point in PHP I'm trying to create an account system so every time someone fills in an HTML form it automatically…

user1186197
- 3
- 1
-1
votes
1 answer
Why doesn't CMake-generated make clean delete files created with configure_file
I'm using CMake for a project, and generating some configuration .h files with a configure_file() command. This works well enough, but - if I make clean, the generated file is not deleted - nor is it overwritten when I invoke cmake again with…

einpoklum
- 118,144
- 57
- 340
- 684
-1
votes
1 answer
How to get the state of a checkbox certain that was auto generated from a list
Here's the code:
c = len(clientlist)
for x in range(1, c):
Checkbutton(root2, text=clientlist[x], onvalue=1).grid(row=row, column=0, sticky=W)
What it looks like
Now, what I want to know, is how do I check if any of the checkboxes are…

Erik
- 1
- 1
-1
votes
1 answer
How to pass parameters to JavaScript Function From Generated HTML
var html = html + "\n" + " " + $(n).find("Julio").text() + " 
";
I'm trying to pass the…


Benny BuAc
- 55
- 1
- 1
- 11
-1
votes
2 answers
Create a new variable from generated element
I want to create a new variable from array elements. This is a very bad code and does not work:
(1..5).each {|x| print "step " + x.to_s + ": "; name_of_variable_+_x = gets.chomp}
but I want to understand the meaning of what I want to do.

awar
- 61
- 8
-1
votes
4 answers
How to generate random number in NetBeans?
I'm trying to generate a random between 1 and 100 in NetBeans, but what I used before in Eclipse isn't working. I can't seem to use Random, as it is underined in red: "cannot find symbol." Please show me how.
Random x = new Random();
int n =…

Ben
- 321
- 1
- 6
- 21
-1
votes
4 answers
Computer Generated Vocals
Is this even possible? I.e. suppose you were given:
1) Lyrics to a song.
2) Background music of a song.
3) Timing of what syllables should be uttered when.
4) What note what each syllable should hit.
Given the above, is it possible to automatically…

anon
- 41,035
- 53
- 197
- 293
-1
votes
4 answers
Generating random non-repeating numbers 2d array - all numbers same
This question is for Java. I keep on trying to create a Block[][] of size N, where the numbers 0 - 9 are placed randomly. I've created an array and then shuffled it to prevent numbers from being repeated. When I iterate over the array and assign the…

cannotcompute
- 15
- 5
-1
votes
1 answer
dump rtl generate memories systemverilog
I'm new in SystemVerilog and I would like to verify the value inside generate memories.
generate
genvar g0, j;
for( g0 = 0; g0 < NB_CFGDUMP_SLAVE; g0 = g0 + 1)
begin : g_slave
cfgdump_chiplet slave (
.rst_n …

baptboy1234
- 1
- 1
-1
votes
1 answer
gen [Generated Java File]
My project cannot be export in 64 bit PC as there is unsolved problem in gen [Generated Java File] part. It can be run yesterday on 32 bit PC. Is there any relationship between PC version?

jijul
- 1
-1
votes
1 answer
drupal custom block module: how to display dynamic generated html from hook_block_view(...)?
i would like to output dynamic generated html content instead of the translatable message but i can't make it work:
function custom_logo_module_block_view($delta = '') {
// don't worry about switch($delta) logic
// perform some operations…

ndrizza
- 3,285
- 6
- 27
- 41
-2
votes
1 answer
Fill an array with random names
How to create a list named "names" and fill it with randomly generated names (the names don't have to exist, and could be like "asdddds", "asdasd")
I want to make a massive array with this, like names[1000000000], but I have no clue about how to…
-2
votes
1 answer
QGroupBox from Generated ui_*.h FIle is Represented as a Pointer to an Int -- Why?
I'm working on an application which uses QtDesigner for part of its UI. QtDesigner .ui files are generally compiled to a .h representation that you can access from the rest of your QT code. For the most part it works, widgets that are laid out show…

TheYokai
- 341
- 5
- 10
-3
votes
0 answers
How to retrieve HTML/CSS files from a Hostinger IA generated Web Site?
I am an experienced programmer learning WEB development (mostly front end: HTML, CSS, JS). I have registered to Hostinger and created in 5 minutes an IA Generated Web Site, and I would like to retrieve the files (HTML, CSS, img folder, etc.).
Is it…