[WiX-users] Продаётся дом

2008-04-24 Thread agamemnon qinsong
nbsp;
nbsp;
  Полностью готовый дом 2003 г. постройки, 5 км от МКАД по новой риге, 
общая площадь более 500 кв метров, участок 15 соток, газ и все коммуникации.
Продается срочно хозяином за 17 000 000 рублей в связи с отьездом зарубеж. 
Фото и подробности по тел 8-985-7711893 Андрей
   
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] RegAsm in Wix

2008-04-24 Thread Jaco Pretorius
Thanks, it worked!

 

I just had a look at the registry – the installlocation was being set 
correctly, but I had the wrong assembly version in there.  I was just being a 
dumbass.

 

Thanks for the help!

 

From: Jim Williams [mailto:[EMAIL PROTECTED] 
Sent: 23 April 2008 19:34
To: Jaco Pretorius; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] RegAsm in Wix

 

My best guess here would be, after installation, to check the registry using 
regedit to see that the value of the property INSTALLLOCATION had the proper 
value for the path to the DLL substituted.  Or you could try replacing the 
file:///[INSTALLLOCATION]TAScriptAPI.dll entries with a reference to the actual 
WiX file id [#ScriptDll] (including the square brackets) and see if that works.

Jim 

   _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jaco Pretorius
Sent: Wednesday, April 23, 2008 8:46 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] RegAsm in Wix

 

Hello

 

I’m trying to register an assembly for com interop.  I used the magic of tallow 
to create a fragment which seems to take care of all the registry entries.

 

The fragment looks something like this:

 

  File Id=ScriptDll Name=TASCRI_1.DLL 
LongName=TAScriptAPI.dll Source=..\TAScriptAPI\bin\Release\TAScriptAPI.dll 
/

  File Id=ScriptTlb Name=TASCRI_1.TLB 
LongName=TAScriptAPI.tlb Source=..\TAScriptAPI\bin\Release\TAScriptAPI.tlb 
/ 

  Registry Root=HKCR Key=TAScriptAPI.ScriptAPI 
Value=TAScriptAPI.ScriptAPI Type=string /

  Registry Root=HKCR Key=TAScriptAPI.ScriptAPI\CLSID 
Value={94B68427-23BE-3B47-A3C9-928D32633723} Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723} 
Value=TAScriptAPI.ScriptAPI Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32 
Value=mscoree.dll Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32 
Name=ThreadingModel Value=Both Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32 Name=Class 
Value=TAScriptAPI.ScriptAPI Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32 
Name=Assembly Value=TAScriptAPI, Version=1.0.0.6, Culture=neutral, 
PublicKeyToken=ee37e07482172a30 Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32 
Name=RuntimeVersion Value=v2.0.50727 Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32 
Name=CodeBase Value=file:///[INSTALLLOCATION]TAScriptAPI.dll Type=string 
/

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32\1.0.0.6 
Name=Class Value=TAScriptAPI.ScriptAPI Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32\1.0.0.6 
Name=Assembly Value=TAScriptAPI, Version=1.0.0.0, Culture=neutral, 
PublicKeyToken=ee37e07482172a30 Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32\1.0.0.6 
Name=RuntimeVersion Value=v2.0.50727 Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\InprocServer32\1.0.0.6 
Name=CodeBase Value=file:///[INSTALLLOCATION]TAScriptAPI.dll Type=string 
/

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\ProgId 
Value=TAScriptAPI.ScriptAPI Type=string /

  Registry Root=HKCR 
Key=CLSID\{94B68427-23BE-3B47-A3C9-928D32633723}\Implemented 
Categories\{62C8FE65-4EBB-45e7-B440-6E39B2CDBF29} /

 

I just had to include the tlb file, which is used to reference against, but is 
not used at run-time, just compile-time.

 

I ran regasm and had it output to a .reg file and compared all the entries – 
they matched up.  So it should be all good.  The only problem is, it doesn’t.  
If I install and try and use the COM object it doesn’t work. If I run regasm on 
my dll it works again.  So as far as I can tell regasm does something else 
apart from only the registry entries.  Am I wrong here?

 

I tried to put a typelib entry inside the File tag for my dll, but that just 
caused the installer to fail.  I’m not even sure that I should be use the 
typelib tag.

 

Thanks in advance

Jaco

 

 

No virus found in this outgoing message.
Checked by AVG.
Version: 7.5.524 / Virus Database: 269.23.3/1390 - Release Date: 21/04/2008 
16:23

 

No virus found in this incoming message.
Checked by AVG.
Version: 7.5.524 / Virus Database: 269.23.3/1390 - Release Date: 21/04/2008 
16:23


No virus found in this outgoing message.
Checked by AVG. 

[WiX-users] Pillules for all tastes at Canadian pharmacy.

2008-04-24 Thread George Joseph
If you are looking for hq cures, check this out. http://teahotspot.com

George Joseph


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Продаю Участок 4 га 60 км от М КАД.

2008-04-24 Thread dewain marianne
nbsp; 
  Участок 4 га 60 км от МКАД Ярославск. шоссе 1,8 млн руб за весь 
  Срочно в связи с отьездом хозяина за границу продается участок КФХ ( 
крестьянско-фермерское хозяйство ), заросший лесом. Все документы готовы к 
оформлению. 
Подробности по тел 8-985-7711893 Андрей 
   
nbsp;
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Продается 17 соток земли

2008-04-24 Thread Земля в Сочи
Продается 17 соток земли в ЦАО г. Сочи.
На участке вода, электричество, канализация.

Подробности здесь http://17sotok.ru/
500*81*65 Алексей.


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Change a registry value during uninstall

2008-04-24 Thread Anidil

Hello there

How do i change the integer value of a registry entry before the uninstall
starts?

Thanks
Anidil
-- 
View this message in context: 
http://www.nabble.com/Change-a-registry-value-during-uninstall-tp16848297p16848297.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Билеты на концерт SCORPIONS

2008-04-24 Thread Афиша Москвы
ПРЕМЬЕРЫ  АПРЕЛЯ-МАЯ  - 
 ЛУЧШЕЕ

 2 2 9 3 5 0 0 - 
БИЛЕТЫ

LADIES NIGHT. Мужская комедия для женщин -  28.04 и 12.05  - В. ЯРЕМЕНКО, Г. 
КУЦЕНКО, М. БАШАРОВ,  Э. КЮРДЗИДИС ...Самый аншлаговый спектакль столицы...

РАЗГОВОР МУЖЧИН СРЕДНЕГО ВОЗРАСТА О ЖЕНЩИНАХ, КИНО И АЛЮМИНИЕВЫХ ВИЛКАХ - НОВАЯ 
ПРЕМЬЕРА! - ШОУ ДЛЯ ТЕАТРА - КОМИЧЕСКИЙ ТЕАТР КВАРТЕТ И - 28, 29.04 И 
13,14,26,27.05 
...О чем говорят мужчины, когда они одни? Бесспорно, без разговоров о самих 
женщинах не обойдется - а как же без них! Но, причем тут алюминивые вилки, кино 
и среда обитания. Ну, ладно кино, это понятно. Но вилки?!

КАРМЕН - (БОЛЬШОЙ ТЕАТР) - ПРЕМЬЕРА -  24, 25, 26, 27, 28.04

ДЕНЬ РАДИО ((шоу для театра, рок-группы и генерального продюсера радиостанции. 
Комический театр КВАРТЕТ И совместно с группой НЕСЧАСТНЫЙ СЛУЧАЙ, А. 
КОРТНЕВ, М.ВИТОРГАН)  - 12, 20, 21 мая

СПАРТАК (БОЛЬШОЙ ТЕАТР) - 15.05

ТРУДНЫЕ ЛЮДИ - 27.04 и 19.05 ...Современник,  Л. АХЕДЖАКОВА, В. ГАФТ, И. КВАША, 
А. ЛЕОНТЬЕВ  ... история о несостоявшемся сватовстве в еврейском семействе, 
очень похожая на анекдот, незаметно превращается в лирическую комедию.

TOUT PAYE, ИЛИ ВСЕ ОПЛАЧЕНО (Ленком, О. ЯНКОВСКИЙ, И. ЧУРИКОВА, А. ЗБРУЕВ ) 
#8211; 25, 31 мая

ЮНОНА И АВОСЬ (Ленком)
Д.ПЕВЦОВ, А.БОЛЬШОВА.  27, 29.04 И 5, 10, 12, 17, 29.05

СЛИШКОМ ЖЕНАТЫЙ ТАКСИСТ (  ТЕАТР САТИРЫ, О.ВАВИЛОВ,  Ю. ВАСИЛЬЕВ, А. ЯКОВЛЕВА, 
СУПЕРКОМЕДИЯ)  #8211;  4, 17, 27.05
 
ЖЕНИТЬБА (Ленком) - И. ЧУРИКОВА, О. ЯНКОВСКИЙ, Л.БРОНЕВОЙ, А. ЗАХАРОВА.  -  
30.04 И 2, 3, 23, 24.05





-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] По ценам 2007 года фасадные и кровельные материалы

2008-04-24 Thread Фаина Валерьевна




КРОВЕЛЬНЫЕ и ФАСАДНЫЕ материалыпо ценам 2007 года.Тел. (495) 542~76~56


 Сайдинг Mitten (Канада) √ от 146 руб. за м.кв NULINE (аналог Ондулина) √ 165 руб. за м.кв Металлочерепица √ от 196 руб. за м.кв Водосточная система метал.  импортная √ от 220 руб. погонный метр Желоба Водосточная система пластик INEFA √ 140 руб. погонный метр Желоба Гибкая черепица Шинглас √ от 132 руб. за м.кв


Бесплатный расчётДоставка
ПРЕДЛОЖЕНИЕ ОГРАНИЧЕНОВыезд специалиста для замера

Тел. (495) 542`76`56




-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Билеты на концерт SCORPIONS

2008-04-24 Thread Афиша Москвы
ЛУЧШИЕ СОБЫТИЯ ТЕАТРАЛЬНОЙ МОСКВЫ
 
2 2 9 3 5 0 0  - БРОНЬ И ДОСТАВКА БИЛЕТОВ
 
LADIES NIGHT - 28.04, 12.05 -  М. БАШАРОВ, Г. КУЦЕНКОВ. ЯРЕМЕНКО, Э. 
КЮРДЗИДИС...Самый аншлаговый спектакль столицы.

БЫСТРЕЕ, ЧЕМ КРОЛИКИ (ПРЕМЬЕРА, шоу для театра. Комический театр КВАРТЕТ И 
совместно с группой Агата Кристи, Ю. СТОЯНОВ /программа Городок/ и др.) - 
22 МАЯ
Это самый смешной спектакль за всю историю Театра.  Завязка сюжета... 
Проститутка, два артиста, их продюсер, трансвестит и русский американец на 
запойной вечеринке приняв какое-то снадобье... Что дальше было? Беспрерывный 
смех зрителей в течение полутора часов  
  

 
КАРМЕН - (БОЛЬШОЙ ТЕАТР, ПРЕМЬЕРА) 22,24,25,26,27,28.04

TOUT PAYE, ИЛИ ВСЕ ОПЛАЧЕНО (О. ЯНКОВСКИЙ, И. ЧУРИКОВА, А. ЗБРУЕВ, ЛЕНКОМ) 
#8211; 25, 31.05

ЖЕНИТЬБА (Ленком)
И. ЧУРИКОВА, О. ЯНКОВСКИЙ, Л.БРОНЕВОЙ, А. ЗАХАРОВА.30.04 И 2, 3, 23, 24.05

ДЕНЬ РАДИО ((шоу для театра, рок-группы и генерального продюсера радиостанции. 
Комический театр КВАРТЕТ И совместно с группой НЕСЧАСТНЫЙ СЛУЧАЙ, А. 
КОРТНЕВ, М.ВИТОРГАН)  - 12, 20, 21 мая

ПРИМАДОННЫ #8211; 22, 23.05 СУПЕРКОМЕДИЯ, МХАТ им. Чехова
   
ПО ПО (ЕВГЕНИЙ ГРИШКОВЕЦ и АЛЕКСАНДР ЦЕКАЛО) - 13.05 ...Е.Гришковец выводит на 
сцену А.Цекало бережно, за ручку, как маленького мальчика. Мальчик же 
играет... маньяка-симпатягу. Герои забавно перевирают и рассказывают, 
развлекая публику, страшилки, каждая из которых заканчиваются истерическим 
хохотом зала...

ТРУДНЫЕ ЛЮДИ - 27.04 и 19.05 ...Современник,  Л. АХЕДЖАКОВА, В. ГАФТ, И. КВАША, 
А. ЛЕОНТЬЕВ  ... история о несостоявшемся сватовстве в еврейском семействе, 
очень похожая на анекдот, незаметно превращается в лирическую комедию. 

СПАРТАК (БОЛЬШОЙ ТЕАТР) - 15.05
 



   


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Release 3.0.4014.0 requires MsBuild 3.5?

2008-04-24 Thread Holmgren Mathias
I just installed the latest drop of WiX, 3.0.4014.0, and now I get a
compile error saying assembly Microsoft.Build.Tasks.v3.5 is required to
build.

Full error stack:
Error  3   The ResolveNonMSBuildProjectOutput task could not be
loaded from the assembly Microsoft.Build.Tasks.v3.5, Version=3.5.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. Could not load file or
assembly 'Microsoft.Build.Tasks.v3.5, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system
cannot find the file specified. Confirm that the UsingTask declaration
is correct, and that the assembly and all its dependencies are
available.  C:\Program Files\MSBuild\Microsoft\WiX\v3.0\Wix.targets
680 6   SixEdgeSetupWix



Our team are using VS2005 and .NET FW 2.0 SP1.

Is version 3.5 of the .NET Framework required to use the latest version
of Wix, or is something in my project setup missing? If 3.5 is required,
is there a workaround for .NET FW 2.0?


PS. I just upgraded from WiX version 3.0.2925.0 where I had no problems
with my project setup.

/Mathias

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] wix mailing lists open to public = more spam

2008-04-24 Thread dB.
I second that. I google for wix solutions all the time or browse the
list through online means. There's a lot of spam if you look at the list
through the archive.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lorne
Laliberte
Sent: Tuesday, April 22, 2008 5:16 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] wix mailing lists open to public = more spam

Here's another vote for locking out non-subscribers.

The spam isn't so bad if you read the list daily, but if you scan the
list only occasionally to search for information the spam becomes more
of an annoyance.

Improving the signal-to-noise ratio will be a good thing in the long
run.

(Do many non-subscribers post to the list, aside from the spammers?)

Lorne Laliberte
Senior Software Developer
Indigo Rose Software


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/j
avaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] wix mailing lists open to public = more spam

2008-04-24 Thread dB.
Works for people who never get Russian e-mail. Too bad if your name is Rob 
Menshingov.

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken MacDonald
Sent: Tuesday, April 22, 2008 4:04 PM
To: Peterson, Joel
Cc: wix-users@lists.sourceforge.net; Neil Sleightholm
Subject: Re: [WiX-users] wix mailing lists open to public = more spam

 

I implemented the spam filter one of the original posters suggested (a bunch of 
Chinese/Russian words OR'd together), with the additional of AND wix-users to 
restrict it only to this list (it caught a few non-wix legitimate messages that 
I wanted) and I've only rec'd. about 2 spams (both in English) in the last two 
days. It's been *excellent*. At the least, try using the filter to suck the 
purported spam to a separate folder...
Ken



On Tue, Apr 22, 2008 at 3:56 PM, Peterson, Joel [EMAIL PROTECTED] wrote:

With no spam filtering on the list, it's sometimes half of all email.

Joel


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Neil Sleightholm
Sent: Tuesday, April 22, 2008 12:48 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] wix mailing lists open to public = more spam

I feel this has got worse recently, I think I have a pretty good spam filter 
but I am seeing about 10% spam now.

Neil

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan O'Neill
Sent: 22 April 2008 18:48
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] wix mailing lists open to public = more spam

At the current levels it is a minor annoyance for me, but we all know it
will get a lot worse at which point I will have a problem with it.
Is there nothing that SourceForge can do? I would have hoped that they would
be working on reducing the levels of spam.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching
Sent: 22 April 2008 18:29
To: Rob Hamflett; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] wix mailing lists open to public = more spam

If anyone has any other opinions on this topic, please do make your voice
heard. I'm still following this thread and trying to figure out if I should
lock non-members out of the list.  I'm still very hesitant to do that since
it raises the bar for people just starting to get involved with WiX (and we
don't need to make anything *harder* smile/).

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob Hamflett
Sent: Tuesday, April 22, 2008 03:58
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] wix mailing lists open to public = more spam

There's still a problem if you prefer to use the newsgroup interface (I'm
using Thnderbird).  You
can't delete messages, and the best I think I can do is move them into a
separate folder.  That
might have to suffice if we can't filter them out before they hit the list.

Rob

DEÁK JAHN, Gábor wrote:
 On Mon, 21 Apr 2008 15:22:35 +0100, Martin MacPherson wrote:

 Martin,

 I have been thinking the same. I found a post who suggested the
 following if you use gmail:

 Instead of web-based mail services, just use a good, traditional e-mail
client with proper Bayesian spam filter (eg. Thunderbird) and it will
eliminate 98-99% of the spam after the initial learning period. It will also
adapt to languages other than English, it might take slightly more time (a
couple of dozen additional messages) but it will be just fine. You can
manually handle the small number of false positives and negatives.

 Bye,
Gábor

 ---
 DEÁK JAHN, Gábor -- Budapest, Hungary
 E-mail: [EMAIL PROTECTED]



 

 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
 Don't miss this year's exciting event. There's still time to save $100.
 Use priority code J8TL2D2.

http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao
ne


 

 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao
ne
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this 

[WiX-users] adding a component on a minor upgrade

2008-04-24 Thread Frédéric Viollet
Hi everyone,

Is it possible to add a component to an installed feature through a 
minor upgrade?
The component I'm trying to add contains two files. And it seems, by the 
behavior I'm experiencing, that the answer is *no*.
Could someone confirm this?

Point #1: The product, to which I'd like to add a component, upgrades 
well if I don't add the component...

Point #2: If I try to add the component, I get the following behavior: 
the product upgrades without apparent errors. However, none of the files 
are updated, the Add/Remove Programs is updated with the new version 
name. And when I try to uninstall the upgraded version, the entry in 
Add/Remove Programs is removed *but* none of the files/services are 
removed.

Point #3: Strangely, I have another product in which I already had added 
a Component in an installed feature without any problem. The only 
difference, is that the component I added only contained any entry 
CreateFolder  (no Files)

Thanks for your help.

Fred

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Using WixUI_InstallDir with Visual Studio 2005

2008-04-24 Thread Jon Andersen
I'm trying to use WixUI_InstallDir inside Visual Studio 2005 (with
integration installed) and have run into an issue.

 

Apparently the light linker needs to be given a localization XML file,
but I can't figure out how to give it to it.

 

The error message is:

light.exe : error LHGT0122: The localization string 'WixUIOK' is
unknown.  Ensure that the localization variable $(loc.WixUIOK) is
defined.

(followed by many other similar error messages).

 

The tutorial suggests setting the Culture property of the Linker in the
project properties; however, I can't find that property.  

 

Any suggestions?

 

Thanks,

 

-Jon

 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

2008-04-24 Thread Willie Burton
Did you add the WixUIExtension.dll reference?

 

  _  

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jon Andersen
Sent: Thursday, April 24, 2008 2:33 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

I'm trying to use WixUI_InstallDir inside Visual Studio 2005 (with
integration installed) and have run into an issue.

 

Apparently the light linker needs to be given a localization XML file, but I
can't figure out how to give it to it.

 

The error message is:

light.exe : error LHGT0122: The localization string 'WixUIOK' is unknown.
Ensure that the localization variable $(loc.WixUIOK) is defined.

(followed by many other similar error messages).

 

The tutorial suggests setting the Culture property of the Linker in the
project properties; however, I can't find that property.  

 

Any suggestions?

 

Thanks,

 

-Jon

 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

2008-04-24 Thread Jon Andersen
I'm using Wix 2.0.  Currently my references listed are sca.wixlib,
wixca.wixlib, and WixUI.wixlib.

 

-Jon 

 

From: Willie Burton [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 24, 2008 2:37 PM
To: Jon Andersen
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

Did you add the WixUIExtension.dll reference?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jon
Andersen
Sent: Thursday, April 24, 2008 2:33 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

I'm trying to use WixUI_InstallDir inside Visual Studio 2005 (with
integration installed) and have run into an issue.

 

Apparently the light linker needs to be given a localization XML file,
but I can't figure out how to give it to it.

 

The error message is:

light.exe : error LHGT0122: The localization string 'WixUIOK' is
unknown.  Ensure that the localization variable $(loc.WixUIOK) is
defined.

(followed by many other similar error messages).

 

The tutorial suggests setting the Culture property of the Linker in the
project properties; however, I can't find that property.  

 

Any suggestions?

 

Thanks,

 

-Jon

 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Odd error when trying Include assembly in build

2008-04-24 Thread Doug Payne
Hi,

I am using Wix 3.0, and am trying to build a project which installs an assembly 
which depends on version 2.0 of the .NET Framework. The assembly is marked as 
net, and the ProcessorArchitecture is 'msil'. I have .NET framework 2.0 SP1 
installed on my system. The error is

d:\sa\drivers\mobilepc\auxdisplay\managedapi\setup\managedapi.wxs(17) : error 
LGHT0132 : The assembly file 
'd:\sa.binaries.x86fre\SideShow\API\Microsoft.SideShow.dll' appears to be 
invalid.  Please ensure this is a valid assembly file and that the user has the 
appropriate access rights to this file.  More information: Version 2.0 is not a 
compatible version.

Any suggestions? Thanks.
--Doug

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Negatives in going to 3.0.3526 or higher from 2.x

2008-04-24 Thread Neil Sleightholm
I have two clients, one likes the stability of v2 and will probably stay
with it until v3 is officially released. The other is a bit more
pragmatic, we need the new features and are prepared to accept the extra
testing that is involved in taking a new release. Having said that I
keep our build environment a release or two behind the latest v3 just to
be sure that things have stabilised before I release v3 to it. In
general I have found v3 to be very stable and we have a product live
that uses it.

 

I hope this helps.

 

Neil

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Benjamin
Myers
Sent: 23 April 2008 23:22
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Negatives in going to 3.0.3526 or higher from 2.x

 


My company makes about 50 setups/year with WiX, and we have stuck with
2.x version.  We need some of the 3.x functionality but I have to
convince management it is safe. Other than the fact 3.x is still Beta
are there any real dangers in upgrading our schemas and implementing a
higher version to build?
 
Thanks in advance for your opinion(s),
Tabrel

 






Make i'm yours. Create a custom banner to support your cause.
http://im.live.com/Messenger/IM/Contribute/Default.aspx?source=TXT_TAGH
M_MSN_Make_IM_Yours 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

2008-04-24 Thread Jon Andersen
Is there some way to tie in the localization XML file using the Visual
Studio plug in?  I haven't been using makefiles, etc.

 

-Jon Andersen

Guardian Team: Securing CPS
Citrix Systems, Inc

(954) 940-7737 or x27737

 

This email was sent using RTST Outlook.

 

From: Mark Line [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 24, 2008 2:44 PM
To: Jon Andersen; 'Willie Burton'
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

Your need something like this: 
 
light -nologo -out myMSI.msi sca.wixlib, wixca.wixlib, and WixUI.wixlib
C:\Program Files\wix-2.0.5805\wixui.wixlib -loc C:\Program
Files\wix-2.0.5805\WixUI_en-us.wxl 

 

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jon
Andersen
Sent: 24 April 2008 07:40 PM
To: Willie Burton
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

I'm using Wix 2.0.  Currently my references listed are sca.wixlib,
wixca.wixlib, and WixUI.wixlib.

 

-Jon 

 

From: Willie Burton [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 24, 2008 2:37 PM
To: Jon Andersen
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

Did you add the WixUIExtension.dll reference?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jon
Andersen
Sent: Thursday, April 24, 2008 2:33 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Using WixUI_InstallDir with Visual Studio 2005

 

I'm trying to use WixUI_InstallDir inside Visual Studio 2005 (with
integration installed) and have run into an issue.

 

Apparently the light linker needs to be given a localization XML file,
but I can't figure out how to give it to it.

 

The error message is:

light.exe : error LHGT0122: The localization string 'WixUIOK' is
unknown.  Ensure that the localization variable $(loc.WixUIOK) is
defined.

(followed by many other similar error messages).

 

The tutorial suggests setting the Culture property of the Linker in the
project properties; however, I can't find that property.  

 

Any suggestions?

 

Thanks,

 

-Jon

 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Shortcuts problem in WiX 3

2008-04-24 Thread Riyaz Mogharabin
Dear All,

I hope you are fine and doing well. 



I have used WiX 2 for creating the MSI, and managed so, but I had to change
to WiX 3 for some reasons. Now, I have some problems with shortcuts.

I created shortcuts by nesting shortcut elements inside the File Element and
managed to create the correct shortcut in WiX 2, but when migrating to WiX 3
 I noticed that this doesn't work. In fact, the Shortcut was built for the
first file in the component, and not for the parent file.

I have searched for that a bit, and noticed that others have this problem
too. There are some suggestion, for example to put the files which need
shortcuts in separate Components, but I believe this is not a good idea when
you are working with something like WiX. 

But what is the nature of the problem? Is there anything to do with it? How
can I solve this? Can anybody help me about it?

Any suggestion or reference is appreciated.

Thanks,

Riyaz

 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Shortcut without icon

2008-04-24 Thread Riyaz Mogharabin
Dear All,

I Hope you are fine and doing well.



I have created some shortcuts in the program files menu, and among them is a
readme file. I need the shortcut to have the original icon of HTML files.
But when I don't introduce an icon for it, there will be an UNKNOWN FILE
TYPE icon by default. This was not like this in wix 2. 

How can I change this? 



Thank you for your help,

Riyaz 

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] wix 3.0 weekly release symbols

2008-04-24 Thread zhisheng huang
Hi,
 
I am looking for wix symbols. However, I did not find it on the weekly release. 
Does anyone know if the symbols are available?
 
Thanks,
Zhisheng
_
Back to work after baby–how do you know when you’re ready?
http://lifestyle.msn.com/familyandparenting/articleNW.aspx?cp-documentid=5797498ocid=T067MSN40A0701A-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Installer will not preserve the previous installed location.

2008-04-24 Thread Kai Lee
Hi,
 
Now I run into an issue related to the previous selected new location will not 
be populated back when I do change installation second time.  The Feature’s 
ConfigurableDirectory attribute will only allow me to change the installed 
location of the application first time.  
 
Feature Id=NewSuite ConfigurableDirectory=INSTALLPATH 
InstallDefault=local Title=New Suite Level=1...  
 
Let say I change the default location “c:\Program File\NewSuite” to 
“c:\temp\NewSuite”.  Then I launch the installation program again and click the 
Modify button in the Custom Dialog screen.  The New Suite feature will show 
up with default path “c:\Program File\NewSuite” and the installation program 
does not provide me with Browse button.  Therefore, when I install some other 
features which will force to put into the wrong location, c:\Program 
File\NewSuite, instead of previous installed location c:\temp\NewSuite.  
Then the application stops working.  
 
Do you have any suggestion how to fix it?
 
Many thanks,
 
Kai
 
 
 
 

 
_
Express yourself wherever you are. Mobilize!
http://www.gowindowslive.com/Mobile/Landing/Messenger/Default.aspx?Locale=en-US?ocid=TAG_APRIL-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] questions about minor updates

2008-04-24 Thread Lincoln Lavoie
Hello All,

I've got a couple of quick questions about using WiX through the update
process.

1.  When you launch a minor update with the msiexec options to enable the
update, this would typically be done by the setup.exe wrapper.  Now, I
believe I read somewhere that you shouldn't use those options for the first
install.  Is this correct?

2.  If the above answer is yes, does the setupbld.exe wrapper in WiX 3.0
handle this problem?  If not, are there any recommendations for handling
this?  It would seem very nasty to need 2 versions of our installer (one
for clean machines and one for updates).

3.  Has anyone seen issues with setupbld.exe, where it does not seem to
accept any command line arguments?  Even when I run it with -? is returns
Error 0x80070057: Bad commandline argument: -?, mind you this is on a
Windows2000pro system, I haven't tried it on an XP build environment yet.

Thanks for your help.

Cheers,
Lincoln
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Device Driver Installation

2008-04-24 Thread Anthony Mahieu
Hey guys, this is my first post.  I've got this relatively simple project
(WiX v3, using Votive w/ VS2005) that I now need to add device driver
installation to.  I need to install two drivers if a specific feature is
selected to be installed.

From everything I'm reading, I need to use DIFxApp.  Unfortunately, this is
where all helpful information I've found on the web stops.  I read in
previous questions that DIFxApp won't work with WiX 3.  Is this still the
case?  If so, how would one recommend going about installing drivers in WiX
3?  If the issue has been resolved and DIFxApp now works with WiX 3, does
anyone have a tutorial on what needs to be done to install the drivers?

I know I should be looking into the DDK for some help, but I couldn't even
find that (anyone have a link?).  Any help someone can give me would be
greatly appreciated, as I'm rather new to all this.

Thanks!
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users