Search results for query: *

  • Users: ulynen
  • Content: Threads
  • Order by date
  1. U

    Question saving excel file

    I have created a brand new excel book. I've added a sheet and named it. now I want to save the file, but I can't seem to get it to work. ' xlBook.SaveAs(gstrExcel_Path & "CallerID.xlsx") This is the error I get. what I don't understand is the number D94B8010 that is at the end of the path it's...
  2. U

    Question Getting query results from datareader

    I am new to VB.NET and some of my questions are probably kind of dumb. I wrote the app originally in VB 6 and had very little trouble getting it to work. I am running a select query with 1 parameter which returns data from an access database. I know from running the query in access that it...
  3. U

    Question datareader notimplementedException?

    the code snippet gives me 2 problems: Dim cReader As OleDbDataReader cReader = cmd.ExecuteReader() End Try stext = "" Do While cReader.Read() stext = stext & ";" & cReader.GetString(0) Loop in the do while loop creader is...
  4. U

    Question Connection to database

    I have a small bit of test code: Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load End Sub Dim connectionstring As String = "Provider=Microsoft.jet.oledb.4.0;data source=C:\PPCIS745DemoData\CallerID.mdb" Dim con As OleDbConnection =...
  5. U

    Question Permanent database entries in Server Explorer

    I posted an earlier question about queries etc. This issue appears to be resolved by using the connect to database in the tools menu. after going through that process I have a strange situation. Azure, data connections, and servers are now permanent entries in the IDE even when starting a new...
  6. U

    Question Queries in the IDE

    I may not be in the right place. I added an mdb file using the add new datasource. this isn't terribly complicated. there are only 3 linked tables and some SQL queries. In the IDE when I display the dataset I can see all the tables but I cannot see any of the queries. Do they get imported when...
  7. U

    Question Missing blank app (xaml)

    when starting a new project in vs2013 the blank app (XAML) under Visual Basic store apps does not show. It appears that it exists in the template directory.
Back
Top