create

[C++] Clone abstract base class (without meddling with derived)

Hello all. I'm experiencing a challenging problem, which has not been solvable - hopefully until now. I'm developing my own framework and therefore trying to offer the user flexibility with all the code complexity under the hood. First of all I have an abstract base class which users can implement, obviously simplified: class IStateTr...

when CreateDirectory returns ERROR_ACCESS_DENIED and "shouldn't"

My Win32 app A1 (actually a collection of processes) is trying to use CreateDirectory to create a directory D1 within parent directory P. The path to P is the value of the TMP environment variable, which makes P a potentially busy but generally permissive place. The vast majority of the time, everything works fine, but, rarely, CreateDir...

Error Creating Table on Android

I'm trying to create a table in android database, but when i try to run the application the LogCat returns the following error: 08-22 02:39:29.098: ERROR/AndroidRuntime(277): Caused by: android.database.sqlite.SQLiteException: near "auto_increment": syntax error: CREATE TABLE words(id INTEGER PRIMARY KEY, word TEXT, count INTEGER not nu...

How can I create a new C# Window based on my existing Window?

I know this mite be a bit of a silly question but how do i create another window from my main window in c# windows application? I don't know where to look for this type of questions. ...

create entity - google app engine - most convenient way?

whats the most simple way to create a new entity in google app engine? i used now a simple servlet form, but it is annoying to upload a project only because you want to create a new entity. i am using eclipse with java. ( creating entities is documented on google only for python ) ...

What causes CreateDirectory to return ERROR_ACCESS_DENIED?

In another question, we established that yes, CreateDirectory occasionally fails with the undocumented GetLastError value of ERROR_ACCESS_DENIED, and that the right way to handle the situation is probably to try again a few times. It's easy to implement such an algorithm, but it's not so easy to test it when you don't know how to reprodu...

How to create a hierarchy ID

Hello all , I'm new to c# and I'd like to make a method to generate a hierarchy ID like the following 1.0 1.1 1.1.1 1.1.2 1.1.3 1.2 1.3 2.0 2.1 is there and way to accomplish this ? any help will be highly appreciated. ...

Creating PerformanceCounterCategory in Powershell

Hello, I'm trying to run the following script in powershell: $counters = @() $counters = $counters + [Diagnostics.CounterCreationData]::("Hit counter", "Number of total hits", [Diagnostics.PerformanceCounterType]::NumberOfItem32); $counters = $counters + [Diagnostics.CounterCreationData]::("Hits per second", "Number of average hits pe...

After creating a node in Jstee, it dissapears.

Node creation triggered by a function in the thickbox window, after creation the node dissapears. Why could it be happening? Here is my code listing: $("#treeDiv").jstree("create", "#node_133", "last", { "attr" : { "rel" : $("#nodetype option:selected").val().replace("add_","") }, "...

MySql versions compatibility issue

I have a MySql script which runs successfully on Mysql 5.0.67. On Mysql 5.1.36 it simply gives a syntax error. I'm not sure since what version of MySql the script syntax problem started. Does anyone know of a compatibility issue from this older version to the later versions? Thank you ...

Generating duplicate responses within a MySQL SELECT query

I am using the report writing functionality within an application to generate barcode product labels. The report writing system allows me to use a MySQL SELECT statement to get the information I need from our database and present it to a Jasper Reports JRXML file that formats the report. This works fine if I want to produce one barcode...

creating service accounts in windows server 2008 R2

hello. how can I create a service account such as sql service in active directory on win server 2008 R2? I dont know in which part of administrative tools i can find it. ...

How to correctly use innerHTML to create an element (with possible children) from a html string?

Note: I do NOT want to use any framework. The goal is just to create a function that will return an element based on an HTML string. Assume a simple HTML Document like such: <html> <head></head> <body> </body> </html> All functions mentioned are in included the head section and all DOM creation/manipulation is done at the end of ...

create object based on time in c++

hi, i am writing a simulation about vehicle manufacturing, i am wondering how i can create objects based on time.. i have a base class Vehicle, and children Motorbike, Car, and Truck. 1 Motorbike will be manufactured every 1 hour, 1 car will be manufactured every 3 hours, and 1 truck will be manufactured every 8 hours. how can i create...

uploading empty file to ftp with psuedo-file

Hey all, As far as i know it is impossible to create an empty file with ftp, you have to create an empty file on the local drive, upload it, then delete it when you are done. I was wondering if it is possible to do something like: class FakeFile: def read(self): return '\x04' ftpinstance.storbinary('stor fe', FakeFile()) ...

Create TFS 2010 branch from checked out items?

I've edited some files in Branch1 and found out I would like to check the pending changes in to a new branch, Branch2. Is this possible? I know I can create the branch as normally and then copy all the changed files to Branch2 by hand but that can be cumbersome. ...

Create a file from a path, creating subdirectories if they not exists

Hi all! A newbie question perhaps... :-S In config of my app I've a path, for example "logs\updater\updater.log" Starting the app, I wanna create the file updater.log, creating all subfolders if they not exists. So, if tomorrow my user changes the path in config to "logs\mypathisbetter\updater.log", my app continues to work, writing lo...

Create a server in apache initialization

Hi all, I need some advice regarding writing a module for the apache web server. This module needs to create a TCP server which will listen to incoming connection from another application in our system. The server is having its own protocol, and I use plain unix functions (socket, bind, listen so nothing fancy around there) to create th...

Cretion CDATA section confusing

Trying o create CDATA section withing description field, code is pretty simple in resulting XML CDATA section does not appear!! Node de = document.createElement("description"); de.appendChild(document.createCDATASection(reportData.getIssue().getDescription() + "more]]>data")); e.appendChild(de); In result XML getting: <description>Ro...

Use of SPListCollection.Add Method (String, String, String, String, Int32, String, SPListTemplate.QuickLaunchOptions) in sharepoint

How to use of SPListCollection.Add Method (String, String, String, String, Int32, String, SPListTemplate.QuickLaunchOptions) for creating sharepoint document library programmatically using asp.net? or Can you plz show me steps for creating document library programmatically/dynamically using asp.net in Itemadding event? Thanks in advance...