Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by gpalmer711

  1. gpalmer711

    Word Automation - Multiple Tables

    One final update - I have replace the new paragraph with a Section Break, which seems to be doing the trick. Code below encase it helps anyone in the future. Imports word = Microsoft.Office.Interop.Word Public Class frmMain Private Sub cmdSettings_Click(sender As Object, e As EventArgs)...
  2. gpalmer711

    Word Automation - Multiple Tables

    I've partially answered this myself It looks like you cannot have two tables next to each other and they have to be separated by other content, if I simply add a blank paragraph between the tables it works as expected. Abet the layout is not right now as there is a paragraph. I'm sure I can...
  3. gpalmer711

    Word Automation - Multiple Tables

    Hi, I have a wierd issue with tables when using word automation in vb.net. I have the following code Imports word = Microsoft.Office.Interop.Word Public Class frmMain Private Sub cmdSettings_Click(sender As Object, e As EventArgs) Handles cmdSettings.Click frmSettings.Show(Me)...
  4. gpalmer711

    More Datagrid woes :(

    Hi Mark, The page also contains some Dropdown boxes that are databound. When the 3rd of 3 dropdown boxes are bound the following is also called else where in the code. buildRounds(True) playersGrid.DataSource = getPlayers() playersGrid.DataBind() So far...
  5. gpalmer711

    More Datagrid woes :(

    Right, I now almost have the code working perfectly thanks to Marks suggestion. Here is an example of the datagrid For some reason it is adding the Team and Player fields in twice. The problem does not occur using Marks' code, but I fail to see any glaring differences in my code...
  6. gpalmer711

    More Datagrid woes :(

    Hi Mark, I've had a play with that and I'm sure that I can now adapt my code to fit in with that. Many Thanks Greg
  7. gpalmer711

    More Datagrid woes :(

    Thanks Mark - if you need any more of the source code let me know. Greg
  8. gpalmer711

    More Datagrid woes :(

    Hi Mark, Thanks for that, i'm not sure that it is going to work given the way that the code is at the moment. Basically the DataGrid already exists on the page and then columns are added to it. If I add the code to the pageload so the controls are created again. It basically adds x number of...
  9. gpalmer711

    More Datagrid woes :(

    Hi Mark, That is correct, However if I cannot get the value from the control then having them load at every page load is a mute point. As assuming that people have added data to the text boxes, when the page is reloaded and the controls are created again I can not populate them with the data...
  10. gpalmer711

    More Datagrid woes :(

    Hi All, I'm sure this is something really simple but I am about to pull my hair out over this. ASP.NET - VB as Language I have a DataGrid added to a form at design time. At runtime I want to retrieve some data from a database and then add a few columns with either textboxes or drop down...
  11. gpalmer711

    More Datagrid woes :(

    Sorry - I meant to post this in the asp.net forum
  12. gpalmer711

    More Datagrid woes :(

    Hi All, I'm sure this is something really simple but I am about to pull my hair out over this. ASP.NET - VB as Language I have a DataGrid added to a form at design time. At runtime I want to retrieve some data from a database and then add a few columns with either textboxes or drop down...
  13. gpalmer711

    Help with DataGrid

    Thanks for that - it certainly pointed me in the right direction of TemplateColumns and although it worked in the sense of adding the textboxes that I needed. I realised that the work involved in trying to get all the data from a indetermined number of datagrids was going to be a really Pain in...
  14. gpalmer711

    Help with DataGrid

    Here is a image of what the output looks like at the moment
  15. gpalmer711

    Help with DataGrid

    I apologise is this is a stupid question but i've been googling for ages and cannot seem to get my head around this, if someone could point me in the right direction I would really appreciate it. Here is the situation; I am currently developing a Leaderboard Website for a Xbox site as a free...

Part and Inventory Search

Back
Top