Click here to Skip to main content
15,896,153 members
Home / Discussions / C#
   

C#

 
GeneralRe: Retrieve GAL from Microsoft Exchange Pin
EliottA27-Oct-08 6:19
EliottA27-Oct-08 6:19 
AnswerRe: Retrieve GAL from Microsoft Exchange Pin
Eddy Vluggen27-Oct-08 11:08
professionalEddy Vluggen27-Oct-08 11:08 
QuestionAUDIO frequency per second ? Pin
sana1726-Oct-08 4:01
sana1726-Oct-08 4:01 
AnswerRe: AUDIO frequency per second ? Pin
sana1726-Oct-08 4:08
sana1726-Oct-08 4:08 
GeneralRe: AUDIO frequency per second ? Pin
Shyam Bharath27-Oct-08 0:35
Shyam Bharath27-Oct-08 0:35 
AnswerRe: AUDIO frequency per second ? Pin
Mark Churchill26-Oct-08 13:37
Mark Churchill26-Oct-08 13:37 
QuestionTabcontrol type editor control Pin
Chris Copeland26-Oct-08 3:44
mveChris Copeland26-Oct-08 3:44 
QuestionSMO on 64-bit machine Pin
Rafone26-Oct-08 3:36
Rafone26-Oct-08 3:36 
Hey Folks;
I was lucky enough to get a new development box. I have loaded 2008 server 64-bit as the OS, SQL 2005 64-bit SP-2. 8g of memory and a terabyte of disk space.
I downloaded the 64-bit SMO files from MS.
I am using VS2008.

This code used to be really fast on my old XP 32-bit machine and I have not changed the code but now it takes forever to find the db servers in my net.
Does anyone have any insight to this.
here is the code..pretty standard stuff I think.

{
Cursor.Current = Cursors.WaitCursor;
DataTable dt = SmoApplication.EnumAvailableSqlServers(false);
if (dt.Rows.Count > 0)
{
foreach (DataRow dr in dt.Rows)
{
if (dt.Rows.Count == 1)
cmbServers.Text = (dr["Name"].ToString());

Console.WriteLine(dr["Name"]);
cmbServers.Items.Add(dr["Name"]);
}
}
Cursor.Current = Cursors.Default;
}

Thanks in Advance for any Help
Rafone

Statistics are like bikini's...
What they reveal is astonishing ...
But what they hide is vital ...
AnswerRe: SMO on 64-bit machine Pin
#realJSOP26-Oct-08 4:27
professional#realJSOP26-Oct-08 4:27 
QuestionProblem Transforming ClipRectangle When Painting Pin
TheCloudlessSky26-Oct-08 2:06
TheCloudlessSky26-Oct-08 2:06 
QuestionImage compression Pin
ALAQUNAIBI25-Oct-08 21:52
ALAQUNAIBI25-Oct-08 21:52 
AnswerRe: Image compression Pin
User 665825-Oct-08 22:21
User 665825-Oct-08 22:21 
GeneralRe: Image compression Pin
ALAQUNAIBI26-Oct-08 0:36
ALAQUNAIBI26-Oct-08 0:36 
GeneralRe: Image compression Pin
Guffa26-Oct-08 1:42
Guffa26-Oct-08 1:42 
GeneralRe: Image compression Pin
Matty2226-Oct-08 3:12
Matty2226-Oct-08 3:12 
GeneralRe: Image compression Pin
Guffa26-Oct-08 11:03
Guffa26-Oct-08 11:03 
QuestionHow to work with Windows message queue in C#.Net 2005? Pin
Mehral25-Oct-08 15:58
Mehral25-Oct-08 15:58 
AnswerRe: How to work with Windows message queue in C#.Net 2005? Pin
Furty25-Oct-08 16:16
Furty25-Oct-08 16:16 
QuestionWhy *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) Pin
Furty25-Oct-08 15:39
Furty25-Oct-08 15:39 
AnswerRe: Why *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) Pin
Meer Osman Ali25-Oct-08 19:51
Meer Osman Ali25-Oct-08 19:51 
GeneralRe: Why *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) PinPopular
Furty25-Oct-08 20:38
Furty25-Oct-08 20:38 
GeneralRe: Why *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) Pin
Meer Osman Ali25-Oct-08 21:26
Meer Osman Ali25-Oct-08 21:26 
GeneralRe: Why *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) Pin
Furty25-Oct-08 21:32
Furty25-Oct-08 21:32 
GeneralRe: Why *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) Pin
Meer Osman Ali25-Oct-08 21:50
Meer Osman Ali25-Oct-08 21:50 
GeneralRe: Why *does* this work, and when will it *not* work? (Two-way MSMQ messaging using WCF) Pin
Pete O'Hanlon26-Oct-08 10:04
mvePete O'Hanlon26-Oct-08 10:04 

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.