Tagged Questions

0
votes
4answers
127 views

Find user independent TEMP directory with Java

Hi, when running a Java application as service with the user 'LocalService', the temp directory ("java.io.tmpdir") points to 'c:/windows/temp' (for example). Running a Java appli …
8
votes
9answers
430 views

non-const reference to temporary object

Why is it not allowed to get non-const reference to a temporary object, which function getx() returns? Clearly, this is prohibited by C++ Standard but I am interested in the purp …
0
votes
2answers
25 views

Adding an image to a JTooltip without knowing the image’s path (due to the image being a temporary ressource)

To be a little more specific: I've built a simple multithreaded TCPServer (Java) which communicates with clients (C# / mono). On request the Clients take a screenshot and send it t …
2
votes
2answers
109 views

Is it possible to change the temporary object and to pass it as an argument?

Is it possible to change the temporary object and to pass it as an argument? struct Foo { Foo& ref() { return *this; } Foo& operator--() { /*do something*/; retu …
1
vote
2answers
167 views

stringstream temporary ostream return problem

I'm creating a logger with the following sections: // #define LOG(x) // for release mode #define LOG(x) log(x) log(const string& str); log(const ostream& str); With the …
0
votes
1answer
108 views

AppDomain.Unload doesn’t release the assembly I loaded up with Reflection

Hi All, I am struggling with an issue while loading an assembly up in a temporary AppDomain to read its GetUsedReferences property. Once I do that, I call AppDomain.Unload(tempDom …
0
votes
2answers
60 views

Loading .dll/.exe from file into temporary AppDomain throws Exception

Hi Gang, I am trying to make a Visual Studio AddIn that removes unused references from the projects in the current solution (I know this can be done, Resharper does it, but my clie …
0
votes
0answers
23 views

Is there any other efficient way to use table variable instead of using temporary table

we are writing script to display banners on a web page where we are using temporary table in mysql procedure. Is there any other efficient way to use table variable instead of usin …
4
votes
4answers
196 views

Should this C++ temporary binding to reference member be illegal?

Hello, My question (which will follow after this, sorry about the long intro, the question is down there in bold) is originally inspired by Item 23 in Herb Sutters Exceptional C++ …
1
vote
3answers
239 views

How to return temporary table from stored procedure

CREATE PROCEDURE [test].[proc] @ConfiguredContentId int, @NumberOfGames int AS BEGIN SET NOCOUNT ON RETURN @WunNumbers TABLE (WinNumb int) INSERT INTO @WunNumbers (WinNumb …
0
votes
2answers
95 views

My SQL Using temporary tables with PHP without mysql_pconnect

I want to use temporary tables in my PHP code. It is a form that will be mailed. I do use session variables and arrays but some data filled in must be stored in a table format and …
1
vote
4answers
106 views

How do you deal with temporary picture uploads in PHP?

I'm creating an online game in PHP where users can create playable characters. Each character can have a user-uploaded portrait. A player can simultaneously have multiple character …
0
votes
3answers
492 views

Sql server - how to insert single row into temporary table?

Hello, I have two temporary table, when i do cycle through one table and i get some values from it, in this cycle I need insert new row into another temporary table. Is this possi …
2
votes
2answers
110 views

What’s the point of this in objective-c

SomeObject *temp = [[SomeObject alloc] init] self.theObject = temp; [temp release]; Why is it always done that way? Why not self.theObject = [[SomeObject alloc] init];
3
votes
7answers
361 views

How can I handle temporary files ?

Hi, In my application my users can import files (pdf/xls/doc) to a table or export them to a folder. Now I want to directly open these files. So far I'm able to : - get an unique …

1 2 3 next
15 30 50 per page