Click here to Skip to main content
15,900,818 members
Home / Discussions / C#
   

C#

 
AnswerRe: multithread Pin
Christian Graus16-Apr-09 14:48
protectorChristian Graus16-Apr-09 14:48 
Questionthread Pin
Hadi Basiri16-Apr-09 13:57
Hadi Basiri16-Apr-09 13:57 
QuestionHow to implement User-Level security in application (Need a good idea). Pin
hdv21216-Apr-09 13:51
hdv21216-Apr-09 13:51 
AnswerRe: How to implement User-Level security in application (Need a good idea). Pin
Mycroft Holmes16-Apr-09 15:03
professionalMycroft Holmes16-Apr-09 15:03 
GeneralRe: How to implement User-Level security in application (Need a good idea). Pin
Luc Pattyn16-Apr-09 15:55
sitebuilderLuc Pattyn16-Apr-09 15:55 
GeneralRe: How to implement User-Level security in application (Need a good idea). [modified] Pin
hdv21217-Apr-09 0:15
hdv21217-Apr-09 0:15 
Questionftps sub folder problem Pin
Diana Anderson16-Apr-09 11:41
Diana Anderson16-Apr-09 11:41 
QuestionAssistance with MSI automation - not closing properly on Close method Pin
Wally Wojciechowski16-Apr-09 11:11
Wally Wojciechowski16-Apr-09 11:11 
Hi, my background is in VB, but I am trying to implement in c# form app. The installer is being held onto even after the close method. Any help is appreciated.

Object installerClassObject = Activator.CreateInstance(classType);

WindowsInstaller.Installer MSIInstall = (Installer)installerClassObject;
WindowsInstaller.Database MSIdb;
WindowsInstaller.SummaryInfo MSIsis;
WindowsInstaller.Record MSIRecord;
WindowsInstaller.View MSIView;

MSIdb = MSIInstall.OpenDatabase(strFile, 0); //0 is for read-only mode

// show current SIS subject - MSI
MSIsis = MSIInstall.get_SummaryInformation(strFile, 0); //0 indicates number of properties we will be adding or changing
txtSISSubject.Text = MSIsis.get_Property(3).ToString();

// show patch display name - MSI
MSIView = MSIdb.OpenView("SELECT * FROM `MsiPatchMetadata` WHERE `Property` = 'DisplayName'");
MSIView.Execute(null);
MSIRecord = MSIView.Fetch();
if (MSIRecord != null)
{
txtPatchDisplay.Text = MSIRecord.get_StringData(4);
}

// cleanup MSI objects
MSIView.Close();
MSIRecord = null;
MSIdb = null;
MSIsis = null;
MSIView = null;
MSIInstall = null;
Questionmethod delivers a structure, but there is no type that handles it... what do i do? Pin
bbranded16-Apr-09 10:42
bbranded16-Apr-09 10:42 
AnswerRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
riced16-Apr-09 11:56
riced16-Apr-09 11:56 
QuestionRe: method delivers a structure, but there is no type that handles it... what do i do? [modified] Pin
bbranded17-Apr-09 3:14
bbranded17-Apr-09 3:14 
AnswerRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
riced17-Apr-09 5:59
riced17-Apr-09 5:59 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? [modified] Pin
bbranded17-Apr-09 6:07
bbranded17-Apr-09 6:07 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
riced17-Apr-09 6:22
riced17-Apr-09 6:22 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
bbranded17-Apr-09 9:38
bbranded17-Apr-09 9:38 
AnswerRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
bbranded17-Apr-09 6:00
bbranded17-Apr-09 6:00 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? [modified] Pin
bbranded17-Apr-09 8:08
bbranded17-Apr-09 8:08 
QuestionWhat is the best way to build listener ? Pin
E_Gold16-Apr-09 10:38
E_Gold16-Apr-09 10:38 
Questionexcel ado.net sql problem Pin
haseeb_saeed16-Apr-09 9:44
haseeb_saeed16-Apr-09 9:44 
AnswerRe: excel ado.net sql problem Pin
Henry Minute16-Apr-09 10:21
Henry Minute16-Apr-09 10:21 
GeneralRe: excel ado.net sql problem Pin
buachaill cliste16-Apr-09 11:38
buachaill cliste16-Apr-09 11:38 
Questioncreating a playlist of videos Pin
mist_psycho16-Apr-09 9:17
mist_psycho16-Apr-09 9:17 
AnswerRe: creating a playlist of videos Pin
Christian Graus16-Apr-09 12:16
protectorChristian Graus16-Apr-09 12:16 
Generalcreating a playlist of videos Pin
mist_psycho16-Apr-09 19:51
mist_psycho16-Apr-09 19:51 
QuestionI am looking for a great C# learning book - trying to switch from VB.NET to C#. Pin
Slow Learner16-Apr-09 8:36
Slow Learner16-Apr-09 8:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.