Questions tagged [creation]

Do not use. Too vague to be of any possible significance.

Do not use. Too vague to be of any possible significance. Tag should be removed.

481 questions
3
votes
0 answers

Using Codesite with Record Types

In Delphi XE, I would like to use codesite to generate information regarding a record type. I know it is possible to force records to emit RTTI, but I am wondering if there is a way to inturn use this information to use Codesight's .send…
sse
  • 987
  • 1
  • 11
  • 30
3
votes
1 answer

html form creation/rendering with jquery

I built a script (classic asp) that generates simple forms from DB tables. I give it a table name, and it generates an HTML page with a form in it. for each field in the table, it generates an input box in the form. It will be very easy for me to…
Ami Malimovka
  • 437
  • 7
  • 22
3
votes
4 answers

How can I create an object whose derived class is specified implicitly by the creation properties?

I'm looking for a pattern for the following. (I'm working in Perl, but I don't think the language matters particularly). With a parent class Foo, and children Bar, Baz, Bazza. One of the methods for constructing a Foo is by parsing a string, and…
Colin Fine
  • 3,334
  • 1
  • 20
  • 32
2
votes
3 answers

Making command-line programs with arguments

I discovered that it is possible to create command-line programs via C++. I am a C++ rookie and I know only basic things, but still, I want to use it to create new command-line programs. Now, I have discovered this code: //file name:…
SmRndGuy
  • 1,719
  • 5
  • 30
  • 49
2
votes
3 answers

Dynamically creating and assigning names to movieclips AS3

I have a movieclip that I need to duplicate dynamically based on an outside variable. e.g. clip1, clip2, etc This variable changes so I can't hardcode the number of times it occurs. Is there a way to dynamically create this movieclip multiple times…
Nebula
  • 679
  • 2
  • 17
  • 37
2
votes
1 answer

Changing the content type of an iframe to xml to display xml and manipulate it through DOM

I would like to use JavaScript to do the following: Build an XML file display it in an iframe manipulate the content through DOM I'm building an XML editor and am having trouble displaying the xml in an iFrame. this is the code that I'm using at…
Philll_t
  • 4,267
  • 5
  • 45
  • 59
2
votes
1 answer

Randomize UIImageViews through code

I have 8 images on my View. 4 on left n 4 on right side on the view. i need to match images every time from ones on left to ones on right. I have done this statically by creating 8 image views in the interface builder and connecting it to the…
Sharanya K M
  • 1,805
  • 4
  • 23
  • 44
2
votes
2 answers

create or fill a pdf with monodroid

I'm looking for a solution for creating a pdf-file with monodroid. It might be also a pdf-form in which I would fill in the content. I tried different librarys like pdfsharp_on_mono or itextsharp, but it doesn't work. Creating a new empty pdf-file…
anna
  • 21
  • 2
2
votes
1 answer

ffmpeg keep file creation and modification dates when encoding/resizing multiple videos

I have the following batch code (I'm on Windows 10) that resize all the videos in a folder. It keeps the origin media created date but it doesn't keep the File attributes Date created and Date modified dates after encoding. How do I add this to the…
user2427836
  • 85
  • 10
2
votes
1 answer

Add user while instance creation in google cloud

I want to create users in windows server on google cloud during instance creation. Searched in google cloud documentation and other sites but could not find answers. I am aware of startup scripts but those are great when you want to do something…
ManWarrior
  • 35
  • 1
  • 2
  • 9
2
votes
2 answers

Write file creation date to a text file, in a single line

This may be easy but it's driving me nuts (2 whole hours spent already! I've tried dozens of things!). I just need a single line bat script that reads a given file's creation date and writes it to a text file. I've tried using the dir /T:C command,…
2
votes
3 answers

creating a directory in java

I'm trying to create a directory and copy files to it. The code I've implemented and its output is below. The problem seems self explanatory, but I'll make it explicit for those who can't tell. Problem No matter what I do, I can't seem to create…
Ky -
  • 30,724
  • 51
  • 192
  • 308
2
votes
1 answer

Tortoise SVN Repository Creation: I get the wrong default folder structure

I am on Windows 10. I am using TortoiseSVN Version 1.10. I create a folder "SVNRepository. Right Click on the folder>TortoiseSVN>Create Repository Here. so far so good. I click OK and then I get the following default structure instead of the…
Matt Dnv
  • 1,620
  • 13
  • 23
2
votes
1 answer

Determine creation time of given branch with JGit

We have an application that is monitoring Git repositories using JGit. One of the current requirement is monitoring only files that have been created/modified after the branch was created (at least in the initial phase). The idea was to get the time…
sebastian89n
  • 63
  • 1
  • 7
2
votes
2 answers

Using variables to create class objects

This is my first question on here, so I hope I am asking the 'right' way. The code below is supposed to generate a class object, which should be named via the function createAccount() at the end. I was expecting the account to be a combination of…
Neildor
  • 19
  • 6