Click here to Skip to main content
16,008,010 members
Home / Discussions / Database
   

Database

 
GeneralRe: SQL Server Function Call Pin
tadhg8828-Jun-06 5:48
tadhg8828-Jun-06 5:48 
GeneralRe: SQL Server Function Call Pin
Eric Dahlvang28-Jun-06 5:59
Eric Dahlvang28-Jun-06 5:59 
GeneralRe: SQL Server Function Call Pin
tadhg8829-Jun-06 4:10
tadhg8829-Jun-06 4:10 
QuestionStored procedure, urgent help [modified] Pin
Naveed Kamboh26-Jun-06 1:08
Naveed Kamboh26-Jun-06 1:08 
AnswerRe: Stored procedure, urgent help Pin
Paul Conrad26-Jun-06 18:32
professionalPaul Conrad26-Jun-06 18:32 
QuestionStored Procedure and Image Pin
Monty225-Jun-06 21:44
Monty225-Jun-06 21:44 
AnswerRe: Stored Procedure and Image Pin
Mike Dimmick26-Jun-06 2:04
Mike Dimmick26-Jun-06 2:04 
QuestionTextbox path to be populated in Datagrid Pin
david_reinjal25-Jun-06 21:14
david_reinjal25-Jun-06 21:14 
hi guys,
i have the following code,

Private Sub btnopendb_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnopendb.Click<br />
<br />
        Try<br />
<br />
            With OpenFileDialog1<br />
<br />
                ' Check to ensure that the selected file exists.  Dialog box displays a warning otherwise.<br />
<br />
                .CheckFileExists = True<br />
<br />
                ' Check to ensure that the selected path exists.  Dialog box displays a warning otherwise.<br />
<br />
                .CheckPathExists = True<br />
<br />
                ' Get or set default extension. Doesn't include the leading ".".<br />
<br />
                .DefaultExt = "MDB"<br />
<br />
                ' Return the file referenced by a link? If False, simply returns the selected link file.<br />
                ' If True, returns the file linked to the LNK file.<br />
<br />
                .DereferenceLinks = True<br />
<br />
                .InitialDirectory = "C:\"<br />
<br />
                .Filter = "mdb|*.mdb"<br />
<br />
                .Multiselect = False<br />
<br />
                .RestoreDirectory = True<br />
<br />
                '.FilterIndex = 1<br />
<br />
            End With<br />
<br />
            If OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then<br />
<br />
                txtopendb.Text = OpenFileDialog1.FileName<br />
<br />
            End If<br />
<br />
        Catch exp As Exception<br />
            MessageBox.Show(exp.Message, Me.Text)<br />
        End Try<br />
<br />
<br />
    End Sub<br />


i have a textbox where i give the path of database. when i give the path of database in textbbox, then i need to open the database in dtagrid. how do i do that?
thanks
QuestionSyntax error in Field definition on Create Table using ODBC Pin
RobertW10025-Jun-06 10:06
RobertW10025-Jun-06 10:06 
AnswerRe: Syntax error in Field definition on Create Table using ODBC Pin
Rob Graham26-Jun-06 2:24
Rob Graham26-Jun-06 2:24 
GeneralRe: Syntax error in Field definition on Create Table using ODBC Pin
RobertW10027-Jun-06 4:24
RobertW10027-Jun-06 4:24 
Questionsuspect DB Pin
illusionFinder24-Jun-06 23:48
illusionFinder24-Jun-06 23:48 
AnswerRe: suspect DB Pin
Eric Dahlvang26-Jun-06 5:23
Eric Dahlvang26-Jun-06 5:23 
Questioncombobox binding Pin
md_refay24-Jun-06 23:48
md_refay24-Jun-06 23:48 
Questionscript execution Pin
_tasleem24-Jun-06 3:45
_tasleem24-Jun-06 3:45 
AnswerRe: script execution Pin
Colin Angus Mackay24-Jun-06 10:49
Colin Angus Mackay24-Jun-06 10:49 
Questioncan we generate a trigger for two tables? Pin
laxman.m23-Jun-06 21:24
laxman.m23-Jun-06 21:24 
AnswerRe: can we generate a trigger for two tables? Pin
Mairaaj Khan23-Jun-06 23:56
professionalMairaaj Khan23-Jun-06 23:56 
Questionunused space Pin
manolomachin23-Jun-06 13:32
manolomachin23-Jun-06 13:32 
AnswerRe: unused space Pin
Mairaaj Khan23-Jun-06 23:41
professionalMairaaj Khan23-Jun-06 23:41 
GeneralRe: unused space Pin
manolomachin26-Jun-06 5:18
manolomachin26-Jun-06 5:18 
AnswerRe: unused space Pin
Mike Dimmick27-Jun-06 0:28
Mike Dimmick27-Jun-06 0:28 
GeneralRe: unused space Pin
manolomachin28-Jun-06 8:54
manolomachin28-Jun-06 8:54 
QuestionSQL Update problem I'm still having. Pin
PyroManiak23-Jun-06 8:59
PyroManiak23-Jun-06 8:59 
QuestionRe: SQL Update problem I'm still having. Pin
Alexander Wiseman23-Jun-06 9:15
Alexander Wiseman23-Jun-06 9:15 

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.