Search results for query: *

  1. J

    Question Email Oulook 365 and Citrix Issue

    VB 2010 Hi, I have a application at work that users use to help fill in templates, it then populates outlook with all relevant information to send. My works is currently moving over to Outlook 365, so the users only have access to the web based outlook 365 logging in via a portal. I have...
  2. J

    DataTableAdapters add multiple rows

    I have a couple of questions. I know I can use the Datasource wizard to create my dataset with caching! 1) How do you save a hard coded table in the dataset within the application. I know I can Create a Table in the Dataset wizard and populate it, What I am trying to achieve is the ability...
  3. J

    DataTableAdapters add multiple rows

    Thank you because I was using the .Rows I did not see that.
  4. J

    DataTableAdapters add multiple rows

    Thank you for pointing out the mistakes, as you can see I don't have a full grasp of this and this was the only way I could get it to work. Is it possible you can correct the code to show what you mean by 'You don't use the Rows collection of a typed DataTable. The DataTable itself has a...
  5. J

    DataTableAdapters add multiple rows

    Thanks that's helped a lot I have done this now which is working and follows the type dataset method 'typed dataset method For i = 0 To 9 Dim Row As DataSet1.Main_TestRow Row = DataSet1.Main_Test.NewMain_TestRow Row.Department = "Depart " &...
  6. J

    DataTableAdapters add multiple rows

    I looked at this http://stackoverflow.com/questions/4...s-to-a-dataset I have tried this Dim Row As DataRow = DataSet1.Tables("Main_Test").NewRow() For i = 0 To 9 Row("Department") = "Depart " & i.ToString Row("VerintID") = "123456" & i.ToString DataSet1.Tables("Main_Test").Rows.Add(Row) Next...
  7. J

    DataTableAdapters add multiple rows

    Hi, Not sure if this is correct forum for this I am very new to vb net and to database programming. I have done some VB6. I have been going round in circles for last 2 days, I have read MSN and googled all over place about the issue but to be honest it is not making much sense. What I am...
Back
Top