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.

462 questions
5
votes
2 answers

How can I create a text file using JavaScript?

I am trying to create a text file using JavaScript. I have tried the following code, but this didn’t work. What is the solution? var fso, file; fso = new ActiveXObject("Scripting.FileSystemObject"); file =…
5
votes
0 answers

App creation failed: Please use your personal account to create this app

I'm trying to create an Facebook app for mobile but I'm getting "App creation failed Please use your personal account to create this app. To use a different name for testing, create the app with your personal account and then create a test account."…
Andy Beard
  • 51
  • 1
  • 3
5
votes
2 answers

create a ramdisk in C++ on linux

I need to make a ramfs an mount it to an directory in linux using c++. I want to make it like a user (no sudo). I need to call an application on a file that i created and it will be often. Writing it to HDD is very slow. I found just:…
microo8
  • 2,910
  • 4
  • 32
  • 58
4
votes
1 answer

Create 'SharePoint Solution' programmatically

I found something related here but did not give me a good start Since recently I do a lot of webPart development I want to automate the none-code part of the process, I want to develop a small console app that creates SharePoint solution as the…
Rami Alshareef
  • 6,554
  • 11
  • 40
  • 73
4
votes
2 answers

Stack object creation in C++ - Alternative syntax

Possible Duplicate: What do the following phrases mean in C++: zero-, default- and value-initialization? I am confused about an issue in C++. When creating an object on the stack using the default constructor, I thought either one of the…
Mike
  • 41
  • 3
4
votes
1 answer

numpy: Is there a way to create an array from a sequence of mappings w/o external loop?

To me, this sounds like a common use-case, but I couldn't find the proper function/thread for it, yet. I have two numpy arrays, one is a sequence of triplets and the other the associated sequence of indices. I want to create a 1-dim array of equal…
Michael S.
  • 121
  • 1
  • 8
4
votes
0 answers

Java: Why does this code give me "generic array creation error"?

Why does the following code result in a "generic array creation error" at compile time? public class Trie { private class Node { private Node[] links = new Node[256]; private Object val; } } Error message:…
4
votes
2 answers

Is there a round-trip software for PHP programmers out there?

I search for a round-trip programming solution which does generate PHP and SQL code from a UML Model It sould also include state and activity diagrams which were compiled into PHP/SQL. Or does someone know some software who offers the possibility to…
klangfeld
  • 41
  • 1
4
votes
2 answers

Is it a good practice to let Hibernate create the tables automatically using create?

I know that adding "hbm2ddl.auto"=create Hibernate will create the tables automatically reading the mapping from the hbm / the annotation. Please let me know that if this is a good practice to follow and why?
Vaandu
  • 4,737
  • 12
  • 46
  • 75
4
votes
2 answers

When, the code that create the components on the form and the code that set their properties, is called?

If I put a component on the form I don't see any code like MyComp:=TMyComponent.Create in unit code. I think the component is created automatically, but when ? And the same happends with the properties that I configured after I put the component on…
Marus Nebunu
  • 2,510
  • 1
  • 15
  • 42
4
votes
1 answer

Dynamically creating controls in MFC (Collection question)

I have some custom control inside of which i should create radiobuttons or checkboxes. The count of child controls is available only at runtime (it loads some file from which it gets this count). So i need to create variable number of controls.…
ProgramWriter
  • 273
  • 3
  • 11
4
votes
1 answer

Titanium Appcelerator Android module : How to create a proxy?

This is not a question but is an answer to the issues I was stuck up while creating custom Android module for Titanium appcelerator. I was able to run the ExampleProxy provided by the framework but was having problems creating my own Proxy class. I…
Rishi
  • 41
  • 3
4
votes
1 answer

XSL Loop inside a template

I am trying to create a loop inside a template. I found 2 methods, but both of them did not work: Method 1: 1
www
  • 556
  • 1
  • 13
  • 28
4
votes
2 answers

jQuery plugin creation and public facing methods

I have created a plugin to convert an HTML select box into a custom drop down using DIV's. All works well, but i'd like to make it a little better. see my jsFiddle At the end of the plugin I have 2 methods, slideDownOptions & slideUpOptions, I would…
sygad1
  • 1,102
  • 2
  • 10
  • 19
4
votes
1 answer

Rename a file in unix to include $ sign (ie a java class file)

I have a java class file that is causing problems because of the length of the name: GroundTransportationProductType$GroundTransportationOptions$GroundTransportationProductOption$GroundTransportationOptionProviderLinks$ProviderLinks.class I have…
km2000
  • 295
  • 2
  • 10