Dim Sql As String = String.Format("SELECT TABLE_NAME FROM INFORMATION_SCHEMA.tables ORDER BY TABLE_NAME")
Dim reader As Data.IDataReader = DataConnector.GetReader(Sql, Nothing)
Do While reader.Read = True
mTablesComboBox.Items.Add(reader.GetString(0))
Loop
the SendMessage(notepad.MainWi
I tried SendKeys.SendWait(texrttos
there may be up to 50 fields in the table I want them on separate lines how do you populate the notepad or is the only way is to create a text file and open it. I would rather send direct but if a temp file is the only way how do you open It in the notpad with out using file open
Open in new window