out

How to redirect javax.mail.Session setDebugOut to log4j logger?

How to redirect javax.mail.Session setDebugOut to log4j logger? Is it possible to redirect only mailSession debug out to logger? I mean, there are solutions like link text which reassigns all standard output to go to log4j --System.setOut(new Log4jStream()) Best Regards ...

Nullable List<> as out parameter

Is this possible? private void Test(out List<ExampleClass>? ExClass) { } A nullable List<> that is also an out parameter? ...

SQL Stored Procedure Problem due to the Lack of SP Performance

The main problem is that in my sp there are different objects and logic that may cause lack of performance. The things that I see on my SP and the tables that are in use in the SP 1- Temp tables such as shown below; (2 Temp Tables) CREATE TABLE #TEMP_TABLE( AB INT NOT NULL, AC INT NOT NULL, AD INT NOT NULL, AF INT NULL, AG IN...

How set a parameter type as inout when using rpc with gwt ?

Hi I've a sample gwt2 rpc service & i need to set some of it's parameters as out or inout (like out or ref parameter types in microsoft wcf), but i could not find anything about it in gwt documents or related forums :( Can anybody help me please ?! ...

How to declare a generic delegate with an out parameter

Func<a, out b, bool>, just don't compile, how to declare that i want the second parameter be an out one? I want to use it like this: public class Foo() { public Func<a, out b, bool> DetectMethod; } ...

WPF image zooming

WPF: What is the best way to implement Zoom In and Zoom Out option for an Image inside ScrollViewer in WPF at runtime and also other alternative methods for the same Please provide sample code and suggest links where I can find sample code and more info about various ways to Zoom the image. Regards, Anwar ...

how to time out an ant task

Without writing a custom ant task is there a way to use a timeout on a regular ant target? To give some background info ... we are using the delete task to remove all contents of a given directory. Sometimes this directory is massive with lots of generated folders and files. We wanted to have that task say timeout after 5 minutes. I coul...

How to enable the video output on your iPad app?

Just found out that the video output of the iPad is not a system level functionality, but that it needs to be explicitly build in into each app. Is there somebody who has any experience with this, who could point me to sample code? Secondary question would be: why wouldn't Apple make this a system feature. Is it a hardware issue, that I ...

Zoom in and zoom out using AS3

Hi guys, you all know: "right click -> zoom in or out" in flash file, well, I need to do this but using, for example, clicking a button. Is this possible using only AS3 code? Thx! ...

NHibernate Left Outer Join

I'm looking to create a Left outer join Nhibernate query with multiple on statements akin to this: SELECT * FROM [Database].[dbo].[Posts] p LEFT JOIN [Database].[dbo].[PostInteractions] i ON p.PostId = i.PostID_TargetPost And i.UserID_ActingUser = 202 I've been fooling around with the critera and aliases, but I haven't had a...

C# out parameter value passing..

I am using contactsreader.dll to import my gmail contacts... One of my method has out parameter... I am doing this, Gmail gm = new Gmail(); DataTable dt = new DataTable(); string strerr; gm.GetContacts("[email protected]", "******", true, dt,strerr); // It gives invalid arguments error.. and my gmail class has, public void Ge...

jquery/js images out of a box preview effect

Hey, I am building a web page for a software (not a browser but this software uses webkit as it's rendering engine). The window of this software has a size of 800x600 pixels. Users will be able to download collections of images as zip files that include appr. 15 images per collection. A white box represents such a collection (see below)...

Is there a way to implement "void func(out params object[] parameters)" in C#

What I would like to do is be able to pass any number of variables into a function, manipulate those variables inside of the function, and have access to those manipulations outside of the scope of the function. Example void FunctionA() { int x = 1; string s = "blah"; int y = 4; FunctionB(out x, out s, out y); Conso...

jQuery fadein fadeout repeatedly...

I have a image and in it wants to be fadein fadeout automatically when the document is loaded and it should be done till the document is closed .. help me plzz ...

C++ "Variable not declared in this scope" - again

I guess this is a really simple question and, probably, one that has been answered several times over. However, I really do suck at C++ and have searched to no avail for a solution. I would really appreciate the help. Basically: #ifndef ANIMAL_H #define ANIMAL_H class Animal { public: void execute(); void setName(char*); Anima...

linq query lock issue (linq to sql)

I got a linq query time out exception. After a bit search online, using TransactionScope to make it 'nolock' gets my vote. However, after using the below code, i still get the same time out exception. Any help is appraicated, thanks in advance. IEnumerable<IGrouping<string, Log>> grps = logs.GroupBy(l => l.msg_shortdesc); using (var t =...

Several lines of code, that blows my mind (or NSString "out of scope" dilemma.. again)

Hey, everyone! I'm totally confused with this small "out of scope" thing. So here is some code to describe my situation: Simple iphone view-based application. View controller header: #import <UIKit/UIKit.h> @interface global_nsstring_testViewController : UIViewController { UIImageView* image_view; NSString* image_name; } @propert...

Adding zoom out animation to the activity

Hi All, I have customized my activity to bring it like a dialog. Now I want to stop the default animation and have to add the zoom out animation. To stop the animation I have tried the following. customDialog.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); and in styles <style name="Theme.CustomDialog" parent="android:style/Theme.D...

Inner Div Pushing Outer Div

I've been trying to figure out this puzzle for the longest time. I'm trying to simulate a traditional HTML table tree structure using divs with table, tr and then td. Firefox and Google Chrome behaves as I want but for some reason each CoreTableRow isn't getting pushed down to accommodate the height of the inner CoreTableCell divs in IE...

How do I stop mouse_out firing when mouse click fires.

I have buttons that have mouse_over, mouse_out and CLICK events. But when I click the button it takes me to another frame and the mouse_out event tried to fire. How do I stop that happening? act1_btn.addEventListener(MouseEvent.CLICK, act1Pressed); act1_btn.addEventListener(MouseEvent.MOUSE_OVER, act1Over); act1_btn.addEventListener(Mou...