Search results for query: *

  1. C

    Web Page log in.

    Wasson guys!! I need to make a program that will log into various websites in firefox. I have done this using the webbrowser control. But now I need to do it using Firefox. I have looked into HTTPWebRequests but with that it seems that you are just pretending to be a web browser. I actually need...
  2. C

    adding two datatables together from xml database.

    I have a database in the form of an xml file which the user supplies the program with, so as the programmer I should not change it. the data I need from this database is in two different tables. I want to display this data in one datagridview. So far it puts the database in a dataset and...
  3. C

    Creating datatable from two XMl tables.

    HEEEEYYY. I Have an xml file with 16 tables in it. Table three has almost all of the information i need. But Table 2 has two columns that I need as well. IN short I want a datagridview displaying all the data I need but the data is split into two tables. The tables are set up with relations and...
  4. C

    Add column data to gridview from dataset

    mm I see. As of yet I haven't used SQL in my program and i've done it all by just fiddling around with the datagridviews. I fear i may have hit a dead end and need to start using SQl...bugger.
  5. C

    Add column data to gridview from dataset

    Just realized I haven't been very clear about this. I want to add all the rows from a datatable but only the data in the two columns called lat and lon. Another way of putting it is add all the data from a datatable but only have the two columns displaying. Tried using the datatable.merge class...
  6. C

    Add column data to gridview from dataset

    yeah i think. the datagridview that i want to columns to be added to will have rows copied to another datagridview which it is alrdy doing.
  7. C

    Add column data to gridview from dataset

    Hey. I have a dataset with 16 tables in it. Most of the data i need is in one of those tables, So I've put all of that in a datagridview. However I need two columns that are in another table in the dataset. But only those two columns and all the data in those columns. How do I put those two...
  8. C

    Question Property 'item' is read only?

    Ahh I see. That actually makes a lot of sense after reading that. And it worked :D Thanks very much JohnH!!!! Just realized datagridviewrow has a select row function so I dont even need the button... haha oh well. Cheers again!!
  9. C

    Question Property 'item' is read only?

    Hi i'm trying to move a row from a datagridview(caches) to another datagridview(chosen). The user clicks a button on the row he/she wants and it moves to the other datagridview(chosen). The first datagridview(caches) uses a dataset as its data source. So far my program clones the row of which...
Back
Top