Search results for query: *

  • Users: sabe
  • Order by date
  1. S

    Web Parts, online resources / Books

    Hi I am after advice / links to resources for developing web sites through vb.bet, or rather more precisely a full tutorial on web parts with asp.net 2. Very much the basics, why use them and how. Regards Sabe
  2. S

    Print DataGridView

    I was trying to do the same, check the posts http://www.vbdotnetforums.com/showthread.php?t=12643 opps, by the way it works great !!!!!
  3. S

    anything for printing datagridviews?

    ahh sorted the line : nHeight = e.Graphics.MeasureString(oColumn.HeaderText, oColumn.InheritedStyle.Font, nWidth).Height + 11 changed to: nHeight = e.Graphics.MeasureString(oColumn.HeaderText, oColumn.InheritedStyle.Font, nWidth).Height + 30
  4. S

    anything for printing datagridviews?

    ahh the mists clear, and that seems to work (for some reason in the email it had Me.PrintDocument1.BeginPrint not me.printdocument1.print). Cheers though it works v nice, cell height does not seem to be right but I am sure a few hours and I should have it !! lol!
  5. S

    Dynamically refer to textbox's

    cjard Cheers, will have a look at that!
  6. S

    anything for printing datagridviews?

    I saw this in another forum but couldn't figure out how to call it
  7. S

    anything for printing datagridviews?

    Found this but it is c# http://www.codeproject.com/csharp/datagridviewprinter.asp
  8. S

    anything for printing datagridviews?

    is this not a commercial product?
  9. S

    anything for printing datagridviews?

    That does work, but do you know any nicer way - maybe to print just the Datagridview direct, not as a bitmap (lots of ink), really sad but I do have to consider 1300 students using all my ink!! lol!
  10. S

    Dynamically refer to textbox's

    Think I will stick with : Txt11.text=SchoolHashTable.item("11") Txt12.text=SchoolHashTable.item("12") as it seems quite fast
  11. S

    anything for printing datagridviews?

    have you got anything good for printing, esp datagridviews?
  12. S

    Dynamically refer to textbox's

    Nearly there, still no sure on the printing as well The hashtable works (with a but - see lower): for count = 0 to number of lessons pulled for student SchoolHashTable.add(CInt(DayName) & PeriodID, ClassName & vbcrlf & Teacher etc . . ) next then I thought it would be...
  13. S

    Dynamically refer to textbox's

    Cheers guys Some really good advise, I haven't seen a hashtable before - is this new? Think I will have a play with that as I can see it valuable for other programs, in this case I am trying to use the array, although it is coming up with too many arguments on this part...
  14. S

    Dynamically refer to textbox's

    I have written a prg that pulls a timetable for students in a school from a real time registration system, I have currently hardcoded to each textbox using case statements but now wish to clean my code. Basically I have a textbox named Txt11 (standing for day1 (monday), period 1) these details...
  15. S

    Dynamically refer to textbox's

    Sorry meant to say that was a simple example before, it is a little more complex that I am trying to acheive.
  16. S

    Dynamically refer to textbox's

    Yes a control array, but this no longer exists ?? What do you mean under controls, have you an example ?
  17. S

    Dynamically refer to textbox's

    Hi everyone Does anyone know how to refer dynamically to texbox's, eg: 2 textbox's named Txt1 and Txt2 a=1 Txt(a).text = "Hello" the above abviously does not work, as I am sure this is how vb6 did work. Cheers Sabe
Back
Top