setting

How can I add class folders into Eclipse?

Say Eclipse is set to compile to a build directory at 'bin' and I have a folder structure with various Java .class files (precompiled) which I won't to copy into the folder 'bin' on compile. How do I go about achieving this? ...

Access sites on IIS

I have inherited a system with a number of servers, but I have never worked with IIS before. Currently there is a web server set up using IIS, it holds a number of 'test' sites and the server is called Staging. I have network access to the files on the server and I can login to the server via VNC. What I cannot do is view any of the sit...

Issue with IIS Worker Process User permission for new installation

Hi there, I mean issue with setting the Worker Process to read/write/modify. In what scenario/task do we need to use Worker Process for web script? Currently I only know of 1 scenario>> when a script want to resize image. What else? How can we easily set WP permission for a particular web folder automatically, so that we can carry ou...

Stopping the jQuery blur event within the blur function.

I have a textbox that I am using the blur event to validate the text with a regular expression. If it fails I want the textbox to keep the focus. I know in regular javascript you can say return functionName(); in the onblur event within the actual html control. Is there a way to do something similar when binding the blur event within the...

C# AppSettings: Is there a easy way to put a collection into <appSetting>

i tried <appSettings > <add key="List" value="1"/> <add key="List" value="2"/> <add key="List" value="3"/> </appSettings > and System.Configuration.ConfigurationManager.AppSettings.GetValues("List"); But i only get the last member . How could i solve this easily? ...

setting strings in gdb

c++: int main() { string a = "a"; ... ... } when i debug in gdb: (gdb) set var a = "ok" Invalid cast I run the program and pause at a break point after string a has been initialized. I'm trying to set its value, but it complains about invalid cast. What's the proper syntax for this? ...

setting one class to aonother database object

hello i am trying to initialize the class object to a database object like this [frn setBuymeObj:infoObj]; but the object 'frn' is getting nil values while there are values in infoObj. I don't know what's the reason ... Help me out of this issue.. thanks in advance ...

Tomcat per webapp memory settings

I am having two webapplication running inside tomcat. Java Heap space is allocated for Tomcat and it is shared for both appliaction. In that one application consumes more and other is getting OUT_OF_MEMORY. Is there any way to set memory settings per web application. Say 70% for one webapp and 30% for other from the overall memory allo...

Codeigniter validation

Based on the backend data i may have n number of items displayed along with the check box and textarea for selecting and give commnet on the page and there is also a option given to the user to remove the items based on the requirements. I need to set a validation like atlease one item is required. Since its number is based on the query...

SQL Stored Procedure Styles in Visual Studio 2008 SQL editor

My question is pretty simple but I just couldn't find the setting to change this. I am using Visual Studio 2008 as my SQL stored procedure editor. After I switched to Window 7, the SQL style in VS2008 changed and is now all over the place compare with the styles I used to have in Window XP VS2008. It shouldn't be the Operating System pro...

ubercart file download setting problem

Hi I am using drupal 6.x and ubercart 2.x. I trie dto create a product,but when it comes to add the file download feature I am getting some issue. I put a folder called downloads in the drupal folder and one file inside the download folder.then I gave the path as "drupal/downloads but it is telling that drupal/downloads is not a valid fi...

how to set library path in dev cpp

how to set library path in dev cpp so that i won't commit a linker error or undefined references! ...

What effects drawing charts/diagrams from $_SESSION data under php5, which worked under php4?

Hello, I have a script generating 3 diagrams from $_SESSION variables which work fine under php4 with register_globals = off, but when I parse the same script as php5 I get no diagram. The diagrams a drawn from GD libary and it works, if I set the data into an Array (manually filled) within the script file. But I need a way to get it w...

Sending email: failed to connect

Hello Friends, I am using java to send mail. I want to set the from mail id to [email protected]. When i am using that for sending mail the following exception is generated.. Exception in thread "main" javax.mail.AuthenticationFailedException: failed to connect at javax.mail.Service.connect(Service.java:322) at javax.mail.S...

Image MouseDown event not firing

I have a problem on one of my user’s PC’s where she cannot click on an image (well, she can click on it, but nothing happens). The image has the following XAML: <Image Source="./Images/flag.jpg" Name="image1" Stretch="Uniform" Height="40" HorizontalAlignment="Right" VerticalAlignment="Top" ...

ISP Config 3 - squirrel login error & how to add an smtp server for sending mails

Hi, Case #1: I have ISPConfig3 running, sending email through telnet server.mydomain.com 25 are possible. Receiving email also possible. BUT!! problem occurs when I try to login to squirrel... I've been awaken for 2 days now and still couldn't figured out why logging in into squirrel always having an error: ERROR: Connection droppe...

How do you access variables using NMake?

I have a makefile with the following code. I'm trying to set a variable in an if statement. It doesn't error, but %OPTION% just prints "%OPTION" (with only one percentage sign) and the $(OPTION) doesn't print anything. Please help RELEASE_OR_DEBUG=debug init: SET OPTION=test @echo test1 = %OPTION% @echo test2 = $(OPTION)...

Visual Studio 2008 - Where is the setting to switch on /off XML auto-comments?

As the title says, my XML auto-comment feature (/// or ''') has stopped working! Spent half an hour trying to find it in Tools/Options/Environment, Googled it, rebooted, etc still no luck :-( Anyone knows where it is please? ...

Setting environment variable with maven 2.x

Is it possible to set environment variable with maven (OS: Linux)? I already have user-defined properties (in the pom and in profiles.xml)....my problem is, how to execute following from Maven export GGA_FRE=/path So will be possible, that every developer can set his own path for the GGA_FRE. ...

turn off the proxy c#

this is the code to turn on the proxy: Public struct Struct_INTERNET_PROXY_INFO { public int dwAccessType; public IntPtr proxy; public IntPtr proxyBypass; }; [DllImport("wininet.dll", SetLastError = true)] private static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int lpdwBufferLeng...