Click here to Skip to main content
15,904,951 members
Home / Discussions / C#
   

C#

 
GeneralInsert Text Pin
David_cole9-Aug-05 2:26
David_cole9-Aug-05 2:26 
GeneralRe: Insert Text Pin
Mohamad Al Husseiny9-Aug-05 13:15
Mohamad Al Husseiny9-Aug-05 13:15 
GeneralUnhooking the event Pin
zaboboa9-Aug-05 2:05
zaboboa9-Aug-05 2:05 
GeneralRe: Unhooking the event Pin
Mohamad Al Husseiny9-Aug-05 2:22
Mohamad Al Husseiny9-Aug-05 2:22 
GeneralDataGrid AllowSorting problem Pin
kalliet9-Aug-05 1:37
kalliet9-Aug-05 1:37 
GeneralRe: DataGrid AllowSorting problem Pin
kalliet9-Aug-05 2:19
kalliet9-Aug-05 2:19 
QuestionHow to get path of MDF file and LDF file of a database programmetically? Pin
pubududilena9-Aug-05 1:29
pubududilena9-Aug-05 1:29 
AnswerRe: How to get path of MDF file and LDF file of a database programmetically? Pin
Alomgir Miah9-Aug-05 3:54
Alomgir Miah9-Aug-05 3:54 
You can easily achieve this by using SQL DMO.


SQLServer2Class sqlServerSource = new SQLServer2Class();
SQLServer2Class sqlServerdestination = new SQLServer2Class();


//Connect to source database
sqlServerSource.LoginSecure = true;
sqlServerSource.Connect(serverName, null, null);

foreach (_Database databaseClass in sqlServerSource.Databases)
{
if (databaseClass.Name.ToLower().Trim() == databaseName.ToLower().Trim())
{
foreach (FileGroup fileGroup in databaseClass.FileGroups)
{
foreach (DBFile dbFile in fileGroup.DBFiles)
{
sourceFileNamePhysical = dbFile.PhysicalName.Trim();
}
}
break;
}
}

Live Life King Size
Alomgir Miah
Generaldepoly project Pin
Mikel Fayad9-Aug-05 1:22
Mikel Fayad9-Aug-05 1:22 
GeneralRe: depoly project Pin
Mohamad Al Husseiny9-Aug-05 2:16
Mohamad Al Husseiny9-Aug-05 2:16 
GeneralRe: depoly project Pin
Alomgir Miah9-Aug-05 3:57
Alomgir Miah9-Aug-05 3:57 
GeneralRe: depoly project Pin
Dwayner799-Aug-05 5:02
Dwayner799-Aug-05 5:02 
GeneralRichTextBox paste Pin
mmr_muthu9-Aug-05 0:53
mmr_muthu9-Aug-05 0:53 
GeneralDatabinding Pin
Anonymous9-Aug-05 0:23
Anonymous9-Aug-05 0:23 
GeneralRe: Databinding Pin
Member 10464459-Aug-05 0:56
Member 10464459-Aug-05 0:56 
GeneralRe: Databinding Pin
Anonymous9-Aug-05 3:11
Anonymous9-Aug-05 3:11 
GeneralMail Server Project Pin
Da Vinci9-Aug-05 0:18
Da Vinci9-Aug-05 0:18 
GeneralRe: Mail Server Project Pin
Mohamad Al Husseiny9-Aug-05 13:33
Mohamad Al Husseiny9-Aug-05 13:33 
Generalmove rows up and down in datagrid Pin
kalliet8-Aug-05 23:07
kalliet8-Aug-05 23:07 
GeneralRe: move rows up and down in datagrid Pin
kalliet8-Aug-05 23:09
kalliet8-Aug-05 23:09 
GeneralRe: move rows up and down in datagrid Pin
kalliet9-Aug-05 0:59
kalliet9-Aug-05 0:59 
Generaladding reference of dll by use handler Pin
laila118-Aug-05 22:37
laila118-Aug-05 22:37 
Generallate binding problem Pin
Sheel Gohe8-Aug-05 22:12
Sheel Gohe8-Aug-05 22:12 
GeneralTreeView control Pin
misterbear8-Aug-05 21:54
misterbear8-Aug-05 21:54 
GeneralDPAPI problems Pin
clauditza8-Aug-05 21:25
clauditza8-Aug-05 21:25 

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.