Search results for query: *

  1. L

    OdbcDataAdapter.Fill()

    I wouldn't try and work out why it doesn't work because you really shouldn't be working with the ID at all. You should leave that to the database to insert and create. Set it to identity and it should solve your problems
  2. L

    ODBC connection string

    For future reference you can get loads of connection strings from this site. http://www.connectionstrings.com/
  3. L

    .NET 2005 data access problem

    I remember having this problem but never found out how to solve it. I think there might be a problem with the conversion. What you could try is writing a very small app just to insert data into the database and see if it saves. If so then there is a problem with your other application.
  4. L

    VB 2005 Express for free

    And if you're a student you can get the whole 2005 from ELMS. Check your university site for this though
  5. L

    Using .NET Framework 2.0 with VB.NET 2003

    hmmm I don't think you could make an older app (vs2003) work with a newer one. Why would the company do that? They want you to use 2005. Also you don't get the benefits of vs2005 if you're using 2003. I would suggest you upgrade because the 2005 IDE is just much nicer. Thats my 2cents
  6. L

    Multiple inheritance

    Got an example of using interfaces to achieve that effect kulrom?
  7. L

    Multiple inheritance

    Guys, I know it's not possible to perform multiple inheritance in .net put I have heard there is a way to fake it. Could anyone give me a simple example. Say for insatance we have these classes person student(inherits person) employee(inherits person) studentemployee(inherits student &...
  8. L

    [ask]MDI parent form ?

    Ok well you will want to do it in a meny option rather than have a button on the form. In the menu event you can try something like this Form1.ActiveForm.BackGroundImage = YourImage
  9. L

    Formatting a file...

    Ok this is a duplicate
  10. L

    How to bind a DropDownList to a database field

    Ok I use a datareader to poulate ddl's Dim cmdSelect As SqlCommand Dim reader As SqlDataReader Dim conn As SqlConnection = New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=|" _ & "DataDirectory|\Procedures.mdf;Integrated Security=True;User Instance=True") conn.Open()...
  11. L

    Web Form!!! Start With/Without Debugging

    To be honest you don't need to debug the web form. Just run it and any errors will be shown in the page.
  12. L

    Will Page_load fire everytime is a Master Page

    I don't think that is possible because the master page is the basis for the entire page. Why don't you want the master page to fire? You can have more than one masterpage and you can also embed one masterpage inside another.
  13. L

    Insert picture into the database.

    When I did this a while ago I had to get the image into a byte array and then upload the byte array to the database. Can't find the code though sorry, but there is lots of code out there if you do a search on google
  14. L

    Context Menu in Web Browser

    You can add a new item to the context menu saying "open in new tab". How you have a new tab though I don't know because that is upto your programming.
  15. L

    Adding Hyperlinks Dynamically to a Table

    You could use the <% %> tags in ASP to do this. I have done it but I can't remember the code for it sorry. Have a look online. If I find it i'll post.
  16. L

    Access Database Search

    Well look on google for accessing a database using vb.net. To get the data into a datagrid you could use a dataset as the datagrids source.
  17. L

    deployment in asp.net

    What is the runtime error? You will also need to upload the .vb file to the server
  18. L

    Web Browser Control

    Ok guys I can do this now but only in C#. It seems that there are differences between VB and C# in .net 2 This is how I do it in C# for anyone that cares privatevoid webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { this.webBrowser1.Document.Click +=...
  19. L

    Web Browser Control

    Guys I have a webbrowser control on my form. It contains a webpage with some information on it. What I want to do is for example. Highlight a link then click a button and get information about that link. I can get information about the tags but I don't know how to find out what part of the page...
  20. L

    Making an IDE

    [RESOLVED] Making an IDE Guys/girls does anybody know where to start if you were going to make an IDE. I want to try and make a HTML editor with the ability to drag parts from a menu, just like in Visual studio. Does anybody know where to start on this? Thanks
Back
Top