Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
2k views

Getting started with creating custom ROMs [closed]

I am an Android enthusiast. Ever since I have owned an android device I have had it rooted with a custom ROM on it. I like most ROMs that I use, but really I want to start making my own so that I can ...
3
votes
7answers
132 views

Can we interrupt creating an object in constructor

Could you help me please. I have one idea but don't know how can I implement it. So the question is: Can we interrupt creating an object in constructor i.e. //Code SomeClass someClass = new ...
2
votes
3answers
462 views

C# creating own flowchart

In a project, I'll probably have to create an application (.Net / C# 4.0) that will provide a flowchart. I'm looking for the best way to do this, knowing that it should be really flexible : Do I ...
2
votes
2answers
79 views

Creating and writing files with php

Is it possible to pass a variable to 'file_get_contents' in php? Am getting errors and wondered if it was my syntax. Am using the code below. ...
2
votes
3answers
2k views

Problem opening excel 2007 in new instance using VBA (using OLE and bound object frame)

I have problem creating new instance of excel 2007 using VBA (from Access 2002). At first I misunderstood the problem and it is more complicated than I thought. Set myXL = ...
1
vote
1answer
172 views

Creating folder in internal Memory to save files and retrieve them later

I want to make a folder in the Internal Memory in my application to store Audio Files,then check if the exist to do some operations. How to make this folde, in which path, and how to retrieve these ...
1
vote
4answers
125 views

Construct object by calling constructor (method) explicitly

Definition of class: #pragma once #include <string> #include <utility> namespace impress_errors { #define BUFSIZE 512 class Error { public: Error(int number); Error(std::string ...
1
vote
2answers
643 views

Array of objects in Javascript - Struts Forms

This is for a web application using struts. I have an array of objects in my Form that gets listed in a table. A user can add/edit/delete from the table. How would I send the changed table back to ...
1
vote
1answer
157 views

COM IUnknown and do I need a pointer to it first before calling CoGetClassObject?

In COM, when you want to create an instance of some COM Server object, do you first need to get a pointer to it's IUnknown interface and only then create a class object using CoGetClassObject? As far ...
1
vote
1answer
1k views

Creating multiple TextInput fields in for loop

HI, I need to loop through an array and for each element create a textfield. My problem is how to create a new identifier for each new TextInput this is my code; var count:Number = 0; for (var ...
1
vote
7answers
659 views

Dynamically creating a project in VS2005 using C#

Is it possible to progmatically or dynamically create a project in VS2005 using c#? If so could someone provide some ideas or links on how to accomplish this?
0
votes
1answer
31 views

SPL autoloader class auto creating new objects

I am going to invoke creating new objects, via SPL autoloader. But i couldnt create new object of class which was already included by loader. Dunno why, but i dont want to use eval, where i can find ...
0
votes
0answers
102 views

Why can't I use Powershell to create a network directory?

I encounter a problem about using Powershell to create a network directory, the NT server's name is \ldnesd, in this server , I create a powershell script like this: New-Item -Path ...
0
votes
0answers
9 views

Best design for an escalation application

I need to build an application for my company that lists information about how to escalate or get help with something. For example, if someone was having trouble with a linux server, then he or she ...
0
votes
1answer
42 views

How to Create a file myfile.txt under some aribtrary directories and tar them in Java

I need to create a tar file which would have directories and files underneath. Example: while(itr.hasNext()) { String dir = itr.next(); File f = new File("/tmp/apps/"+dir); ...
0
votes
0answers
33 views

How to implement Generic Mail Sender in Spring 3.0

I am using spring 3.0 mailing functionality. I have one service interface and service implementation class that implements this service. Now i have many functionality in my application that send mail ...
0
votes
4answers
59 views

How are Compilers created

When a compiler is created for a particular language, do the people who develop the compiler define the language and it's commands right from the beginning as if the language never existed (This seems ...
0
votes
4answers
119 views

python: creating list from string

I have list of strings a = ['word1, 23, 12','word2, 10, 19','word3, 11, 15'] I would like to create a list b = [['word1',23,12],['word2', 10, 19],['word3', 11, 15]] Is this a easy way to do ...
0
votes
0answers
39 views

Creating a shader language

Is it at all possible for an individual to create a shader programming language?
0
votes
2answers
128 views

Create multiple text files

what would be a neat way to create multiple *.txt files on application startup i.e check if they exist if not create them. I need to create about 10 text files. Will I have to do like this for every ...
0
votes
1answer
62 views

Opencv: from floating point to

I have following type of data in a text file(number of row =4000, number of column =141).First 5*5 element of that data here to give you an idea: 1.05E-01 1.05E-01 1.04E-01 1.04E-01 ...
0
votes
0answers
31 views

flash online game simulate events

Is there a way to send simulated events to an online flash game? Or a way I can create events to send, then send them? I'm trying to see if I can automate a player for one of those "click as fast ...
0
votes
0answers
18 views

How do I create objects in the Unreal Development 3 [closed]

I wanted to create a viking looking character and a sword, and have him swing the sword and cause a certain amount of damage, and later be able to ass different weapons with different damages. I'm ...
0
votes
1answer
67 views

Returning a list in prolog

i wanna ask a question about returning a list... Facts: TEAM(TEAMNAME,DIRECTOR,NATIOANALITY,OVERALLGOAL) team (milan,allegri,italy, 8.5). team (inter,benitez,italy,7.6). team ...
0
votes
2answers
76 views

how do I list each record from and sqlite table as a button in my android app?

I'm trying to list each record in a sqlite database as a button in my android app. I'm planning on creating a cursor and calling up each record in a while loop. this is logically where I would place ...
0
votes
1answer
659 views

How to create session using jquery in asp.net

How to create session using Jquery in asp.net?
0
votes
1answer
105 views

How do I tee a linux print file

How would it tee a linux print file to print to a printer with jet direct but also send a second text file to a windows folder using command line? Thanks Randy
0
votes
1answer
287 views

Creating default object from empty value

I need to set the object variable at run time, it is working, but PHP returns me: Creating default object from empty value (/sct/fw FW_List.class.php:1142) function initTemplates(&$object, ...
0
votes
3answers
287 views

Creating Variables at Runtime in Java

In my code I have a pretty big loop and I need to create a new variable at the end of each iteration (integers). Is this possible? I read about a ScriptEngineManager class, but I'm not sure if this ...
0
votes
1answer
102 views

How to load a grid from XAML codes and add it to a stackpanel dynamically/at runtime?

I generate the XAML codes which actually describe a valid grid control - called the GridXAML. I want to create a grid object and add it to a stackpanel on my form. How can I 1) create an object from ...
0
votes
2answers
200 views

How to create a folder using a variable name in C#?

Directory.CreateDirectory(@"C:\test"); Works great. I'm able to create the folder. BUT code below doesn't work. using System; using System.IO; class iolar { public static void klasorOlustur() { ...
0
votes
1answer
267 views

Using php to create a zip file

Using the Create ZIP File PHP class I have the following line of code $createZip->get_files_from_folder('blog/wp-content/themes/', 'themes/'); Am I right in thinking that this code gets the ...
0
votes
1answer
405 views

Making a .ico file using gd and php

Does anyone know how to make a .ico file that will work in Intenet explorer? I can't seem to get anywhere here is my gd code $im = imagecreatefromjpeg(FAVICONDIR.'normal/'.$filename ); ...
0
votes
2answers
520 views

create 3 dimensional array with different lengths

I am a beginner of R. I want to create a 3 dimensional array but I can not define the length of each dimension. I am analysing students' marks of a class. there are 10 classes but it has different ...
0
votes
2answers
84 views

Creating and using multi-dimensional array in php

$breakfast = array( 'rest_id' => $rest_id , 'type' => 'Breakfast' , 'value' => $bprice ...
0
votes
1answer
76 views

creating large database 10gb for informix [closed]

creating large database 10gb for informix
0
votes
1answer
456 views

Creating a new DOCX file by reading DOCX template (it's content is already replaced)

Up to now code is read the template and replace with new values and finally replace the docx file with new values. Can any one please tell me how to save the replaced docx file in diffrent name?. My ...
0
votes
1answer
324 views

Creating raw ISO image

How can I create raw ISO Image ? I mean I am programming simple system in assembler and I want to create an ISO which could put binary file (whole system is in one file) in BootSector. Could you ...
0
votes
1answer
210 views

T-SQL - Creating a Local User On Windows OS

My requirement is that I need to create a local user on my System (On my Windows OS) using T-SQL. And I need to set this user under ‘Administrators’ group. Using this local user I should be able to ...
0
votes
2answers
870 views

How to use Windows Forms in a C/C++ application?

I have an existing project created using C/C++ under a development environment. Currently we want to facelift the existing form using a Window Forms application but the problem is the existing project ...
-1
votes
2answers
97 views

Jar does not run on command line

I did search through google and various forums, (this one as well). I have created an application, a java benchmark, and wanted to create a runnable jar file, to use the program on other machines. ...
-1
votes
1answer
88 views

Create Class in Javascript

I want access to the Methods of my WebService (SOAP).. I tried it on a other way, but didnt worked.. Now I will create this scenario in Javascript: MyWebService client = new MyWebService(); So that ...
-2
votes
1answer
68 views

Creating a plist file

I am new to iOS devlopement and i need your help.I need to create a plist file of a xml.The xml is like <?xml version="1.0" encoding= "UTF-8" ?> <nutrition> <nutritiontype ...
-3
votes
2answers
63 views

creating functions and using function calls in PHP

How would one go about creating a function file that is stored outside of the document root? I want to create a function that could accept 2 - 4 arguments and returns the sum of the arguments and want ...