Search results for query: *

  1. S

    Insertion, Updation , Deletion

    got that. but one more question. if i do not use AcceptChanges and RejectChanges, what is the harm. What i wanted to do is that i wanted to minimize my trips to the server . that is why i wanted to know about how all the three operations can be carried without going to server all the times...
  2. S

    Insertion, Updation , Deletion

    hi frnd, i got the answer , but there are certain things like acceptchanges, rejectchanges etc. what is their use.
  3. S

    Insertion, Updation , Deletion

    Hi fnds, Although i have started doing things the VB.NET way, but the method i use to insert, update or delete a record is the same as VB. I have not been able to make full use of the datasets and dataadapters to do everything in a disconnected mode. Can anybody give me a smal example of how...
  4. S

    Typed Datasets (Urgent)

    Hi frnds, I want to know how can i create typed datasets and how to use them. I will be highly thankful if you guys can respond at an earliest. Thanks again in advance, Software VJ
  5. S

    Gac

    Hi frnds, I have a problem working with GAC. I have developed a DLL file. Have put it in the GAC. Now I want to use it within all the new projects i am doing. I can use this file if I add the reference in my project using Add Reference. That way I am including the reference of file into my...
  6. S

    VB.NET Deployment

    can u elaborate it a bit please. i am not able to understand it as i dont have much knowledge about VB.NET. i am working on my first project in .net thanks
  7. S

    VB.NET Deployment

    Hi, How do I make a setup in VB 2005 and what do i have to do to run the setup on machines where VS has not been loaded
  8. S

    Problem Accessing Data

    Hi, I am getting a strange kind of error whenever i traverse through different records within a datagrid. The message I get is "A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified...
  9. S

    Datasets across procedures

    Datasets Hi frnd, Yes I am getting the same error i am declaring the dataset within the class and not within any procedure this is wat i am doing Public Class ControlPanel ...... projDs As New DataSet .......... form_load(... ) projCmd = New SqlCommand(projStr, con) projDa = New...
  10. S

    Sending Mail

    Mail Hi, I got the solution, but i cant import System.Web.Mail error is "namespace does not exist" I am working with VS-2005
  11. S

    Sending Mail

    mail vb.net Hi http://www.dotnetrooms.com/showthread.php?t=23 is not working
  12. S

    Datasets across procedures

    Datasets Friend , look wat i have done private sub form_load(....) projCmd = New SqlCommand("select * from products", conobj.connection("open")) projDa = New SqlDataAdapter(projCmd) projDa.Fill(projDs, "Project") end sub private sub button_click( .... ) * msgbox...
  13. S

    Sending Mail

    Hi frnds, Can anybody tell me how can i send mail using VB.NET, not ASP.NET Thanks Vijay
  14. S

    Datasets across procedures

    Hi frnd, i think you have not understood my question. I want to populate a dataset with a table in one procedure. can i reference the same datatable of the same dataset in another procedure i tried to do so, it is giving me a reference error how to do this Thanks
  15. S

    Datasets across procedures

    Hi friends, I have a very simple problem. Since being new to VB.NET, i have got fixed up in datasets. I want to know if I can do the following. dim z as new dataset() //declared in the construstor Private sub x() da.Fill(z,"Tablename") end sub Private sub y() dim x as...
Back
Top