Search results for query: *

  1. T

    Horizontal DataGrid?

    I was able to do what I wanted. It might not be the cleanest way to do it but functional for what I wanted. I made my datagrid invisible. I added an String array to hold the data I added a Table and while filling the datagrid I filled the string aray with the results. I removed the add users...
  2. T

    Horizontal DataGrid?

    I currently have a sql 2000 database with a list of users and I can display a datagrid on my web with all of the users, the problem is I now want to display like 4 columns of the users so i dont have to scroll down on my web page Say for instance I have 5 users user1 user2 user3 user4 user5 I...
  3. T

    Change textbox value issue

    I have a web form that retrieves information from a database depeinding on the item selected in a listbox and placing the information in some textboxes that I then wish to be able to edit and put back the edited information in the database When I edit the textbox, the textbox.text value didnt...
  4. T

    Upload file to server

    Since this is related to file upload. I used simular code to ImDaFreak. Only thing I can complain about is the user does not really know the status of the upload while the upload is in progress. Any snipets for such a jewel in VB.NET? I saw one for C# but didnt know how to convert it to my...
  5. T

    Displaying Web Forms

    i used that same book, and got mine to work in the page init area, but the code you have has smileys in it. I had: timeLabel.Text = String.Format("{0:D2}:{1:D2}:{2:D2}", and so on You probably had that but didnt do the code tags so it put the smileys in it.... Ill play with it again as a new...
  6. T

    How to create hyperlink in datagrid at runtime

    I figured out a workaround, probably not the cleanest way to do it, but works I added a label not visible to the form, then set that label to the row number I want to remove, I then had to add an Itemcreated instance for the datagrid This will work for me, but would have been nice to have the...
  7. T

    How to create hyperlink in datagrid at runtime

    I now can do a hyperlink using the property builder, but it shows up as the first column, i dont mind that for this database, but then its listed twice in the same row, once as the hyperlink, and once as text. I tried dg.Columns(2).Visible = False before and after the dg.Databind() I then get...
  8. T

    How to create hyperlink in datagrid at runtime

    I want to create a hyperlink in my datagrid at runtime because I will be changing my select according to what the user wishes to see. included here is what i have so far witch functions well displaying correct information, but in the datagrid it doesnt do the hyperling like it doe here. An...
  9. T

    Binding Data to Table with Composite ID

    OK maybe if I say what is wrong with this code? The courses update but the description doesnt these table have a relation set in the dataset ID to ID the txtboxs are bound to the tables 'update the Courses table daCourses.Update(dsSeniorProject) 'Find the row in the course description table...
  10. T

    Binding Data to Table with Composite ID

    More on this binding to text After playing around for the last week or so, I can now get data bound to the text boxes if i use a VIEW in SQL or a Query in Access, but now any of the related tables wont update. And when I created a data adapter for the new VIEW I got errors on the Update and...
  11. T

    using databases on vb.net 2003

    Go to http://www.microsoft.com/downloads/details.aspx?FamilyID=a0dac778-60a6-4b11-8aa8-bf12261a303a&displaylang=en This is the MSDE for studio... This will do the trick if you don't have an SQL server to access. Hope that helps
  12. T

    Binding Data to Table with Composite ID

    I'm still a NEWBEE at VB.NET and using Database's at the same time, so bear with me. I am Using Visual Studio.NET 2003 the Database is on an SQL Server and I also experimenting with it in MS Access remotely, all I have been having to do was to change the connection so far when remote. I am...
Back
Top