Search results for query: *

  1. P

    Problem with datagrid when i hit the update button (sql)

    basically i have a datagrid with an edit, cancel and update colunm on it, now everything works fine until i get to the edit mode and enter in new values. Then when the code tries to read the new value i have entered it always only gets the old ones. This is a copy of my code Private Sub...
  2. P

    question about html code

    what i am tring to do is make a kind of report that scans the database and for each new record creates like 4 text boxes and labels and positions them one after each other e.g. for x = 0 to databasecounter new textbox1 new textbox2 new label1 new label2 ' that stuff i can do its the next...
  3. P

    question about html code

    is there any way you can edit the html code behind a web form at run time, basically i'm trying to move objects in at run time. the only positioning code i can find is in the html so is there any way to edit that? cheers Plugged
  4. P

    how to install crystal reports

    Hi guys i have a copy of VB.net standard Version 2003 and i am trying to access crystal reports although they are not on the list of new objects to add to my project, do any of you know the problem or how i can fix it? cheers Plugged
  5. P

    date operators question

    hi in help i found that there is and + and - operator for dates. i want to add 1 to a date. in help it says to dNewDate = dDate1 + nDays now when i put this in to code newdate = newdate + 1 i get the compile error operator "+" is not defined for types "Date" and "Integer" so how do i tell the...
  6. P

    moving objects while running

    sorry i am away from my vb computer so i can't test, but that code you give me that can be placed straight in the .axsp.vb file right. I noticed that kind of code in the HTML side of the form designer, so i hope your not pointing to that because the code i need needs to be able to run from the...
  7. P

    moving objects while running

    that my problem theres no location property rows(x).lblName.location = New Point(40, 50) this has a blue squiggle under the location as does your example. do i have to include or inherit an extra class or something to get the location property. The location property is there in windows apps...
  8. P

    moving objects while running

    you have kinda got it, thats what i have done for far. i did it like this Class result Public lblName As Label Public lblPos As Label Public lblDate As Label Public lblDay As Label Public lbltxtName As Label Public lbltxtPos As Label Public lbltxtDate As Label Public lbltxtDay...
  9. P

    moving objects while running

    guy how can i position textboxes in the vb code. i'm use to the textbox.top and .left properties but their not there in the web form properties. I need to position them in the code because they are created by the code during the running of the programme so i can't position them in the design...
  10. P

    calling access reports through ASP

    just asking how do you call reports stored in an access database to print from ASP? i have been told vb can do it but that was in win apps. Cheers Plugged
  11. P

    Session variables

    how do i declare set and read session variables when i am using web forms. Because i can see no clear way in web forms to make global variables like in a windows app. A friend said i should look in to session variables to add time out security so can any one help. cheers Plugged
Back
Top