setup

How set PHP_INCLUDE_PATH correctly in Textmate project

Hi I'm trying to configure my Textmate project/env to be able to find included/required files. I believe one way is to set a project specific environment variable PHP_INCLUDE_PATH. As far as I know this should be colon separated, so something like this should be okay: .:./src/:./src/mode/ But (command)+(shift)+d, that is 'Jump to in...

Will this code create an EventLog at installation time?

Following the advice of Henk, I've created a Setup Project in VS10 with the aim of adding a custom action. This custom action will hopefully add an EventLog whilst running as admin (ie during installation) rather than having my app throw an exception on OSes with UAC. Unfortunately, I don't ordinarily have access to an OS that uses UAC....

CF - Starting application after installing it on device

Hello In my setup.dll i have the folowing: #include "stdafx.h" #include "ce_setup.h" TCHAR Message[] = _T("TERMS & CONDITIONS\r\n ") _T("Do you agree to terms? \r\n"); codeINSTALL_INIT Install_Init ( HWND hwndParent, BOOL fFirstCall, BOOL fPreviouslyInstalled, LPCTSTR pszInstallDir ) { if (!fFirstCall || ::Me...

Setting up AdWhirl open server

Hi,We are facing some issues to set up the open source adwhirl server. In the README instructions they say "Now, you'll need to change the utility class and change the server location, include your AWS keys, and any other specific configuration you desire." But I am not sure what does they mean by server location. By default AdWhirlUtil....

how can I include the dll in already created .exe

i am working windows forms application project ,i am created setup for my project and installed in to my client's system.now i added new dll in my project and i like to add that dll to my client's system without creating new setup.how can i do this,pls provide articles for this.Is click one deployment mechanism help for my problem. Than...

Visual Studio Setup when first viewing a page

Is there a way to setup visual studio 2008 to automatically collapse regions/functions/methods when the code behind is first opened? ...

Can i take package of cpython?

I used cpython api to load py from C/C++. But, if i want not setup cpython in client, can I take package dll of cpython in my program? How to do that? ...

How to deploy a Office 2010 add-in with Visual Studio 2010 setup & deployment?

We have an error during the installation after running our installation: Component Microsoft Visual Studio 2010 Tools for Office Runtime (x86 and x64) has failed to install with the following error message: "A failure occurred attempting to install the Microsoft Visual Studio 2010 Tools for Office Runtime (x86 and x64)." T...

Setupbld not performing as required

Hi... I am using "setubld.exe" (by wix) to merge .exe and .msi file It executes pre-requisite file .exe file and then it throws error that Setup.msi file not found. Can anyone please guide me on this. ...

which image format is better to use in setup wizard in .NET?

i am using .jpg image format for setup wizard header but this image is looking bad with black doted. so which file of image is best to use. ...

How to install SSL for python 2.5 on Debian 4?

Hi, how to install SSL for Python 2.5 on Debian? I have tried: sudo easy_install ssl But getting: python setup.py build looking for /usr/include/openssl/ssl.h looking for /usr/include/krb5.h running build running build_py running build_ext building 'ssl._ssl2' extension creating build/temp.linux-i686-2.5 creating build/temp.linux-...

Android separate code into packages

I'm just getting into my first android application and just wondering what the convention is here? Is it more organised to separate my code into various packages? For example. com.myfirstapp.activity; com.myfirstapp.database; I was thinking of doing this as a way of organising my code with database helper files for example kept it .d...

Uploading Django Development to Dreamhost/Passenger first time "Could no import"

Hi, I've been developing on my laptop. Now, I've uploaded my development project from Django 1.2/Python 2.7 up to Dreamhost created using the Passenger setup. I am using South for migration. I modified settings.py to access MySQL. Got Admin working. Questions: 1) Where is the std out shown when you hit the site? (all my print st...

Fckeditor display images issue

Hi guys.. I am trying to get the content from mysql database and display it in my fckeditor. My content management system pages are under my server root/CMS folder... (root/CMS/myCMSpage.php) and my website pages are under root. When I get the root web page content from mysql, since the images folder is under root/images/, the fckedit...

Moving from Subversion to Mercurial - how to adapt the workflow and staging/integration systems?

We got all psyched about from from svn to hg and as the development workflow is more or less flushed out, here remains the most difficult part - staging and integration system. Hopefully this question goes a bit further then your common 'how do I move from xxx to Mercurial'. Please forgive long and probably poorly written question :) W...

What is the common solution to setup Eclipse for team development?

Should every team member create his or her own workspace and import project stored under source control? Or is there a way to put workspace under source control too? How to avoid using absolute paths in workspace configuration? Are there other bottlenecks in this task? ...

sdl setup visual studio 2010

I can not get sdl up and running. I included the include folder, the library folder and here is the code #include <SDL.h> int main() { if (SDL_Init(SDL_INIT_VIDEO)==-1) { return 1; } SDL_Quit(); return 0; } what am i doing wrong? It gives me this error message Error 1 error LNK2019: unresolved external symbol _...

Multi lingual setup for windows application?

Hi Guys, We are developing a windows application in .NET(C#) IDE used is Visual Studio 2008. We are using localization to run the program multi lingually. What we would like to know is how to make the Setup of the windows Application multi-lingual. ie: When the end users runs the setup, it asks like please select your language. On ...

Howto install single language of multilingual winforms application

Hi all, I have a winfroms application, which I need to support in multiple languages. I would love to have a possibility to offer to the user during the installation setup (default Visual studio setup project) selection of a language he wants to install. Afterwards, application will use this language rather than choosing language based ...

How can I change the entry point or perform a custom action first in a Windows Setup project?

I have a bit of a noob question about Windows Setup projects here. I've searched vigorously, but haven't yet found any answer. Basically, I'm building a Windows Setup project in Visual Studio 2008. As part of the project, I have custom actions for Install, BeforeInstall, etc. For this, I use a C# class library that contains a class that...