Search results for query: *

  1. arjmand

    Datagridview and changing Access DB Fields

    Hi No you need not to delete, you need to re-fill the dataset table, but first make sure you clear it first. Do like this e.g, on refresh button Me.Database3DataSet.Table2.Clear Me.Table2TableAdapter.Fill(Me.Database3DataSet.Table2)
  2. arjmand

    Merging Dataset

    Hi Yeah Use an INNER JOIN Query.
  3. arjmand

    Datagridview with two access tables

    Hi Follow the steps: 1. Declare a table, Say TempTB. 2. Suppose the two tables you mentioned, have names T1 & T2. 3. Iterate through rows of T1 and fill TempTmB with those. 4. Similarly, Iterate through rows of T2 and add those to TempTB. 5. At this time, your TempTB will contain all the data.
  4. arjmand

    Problem with Select statement im Ms Access DB

    Hi Your problem is that you are trying to perform arthmetic operation on string/ text types, change the datatype of 'B' Column to Number rather than text. If you keep it text then current result are perfectly alright.
  5. arjmand

    Database not found

    Hi Not sure, but try "..\", like this "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\MyDataBase.mdb;"
  6. arjmand

    DataGridView Problem

    Hi You can simply set the width of the columns.
  7. arjmand

    Database monitoring

    not sure Well i am not sure about that, I have been doing it like the way I have shared with ya.
  8. arjmand

    Question how to create an array from a column in a datagridview

    Hi Try putting the follwoing: Array(i) = row.Cells("FEE_NAME").Value i += 1 Where i is an integer datatype and helps in moving across array indexes.
  9. arjmand

    Database monitoring

    Hi You can count the records in the Dataset and compare them with backend table records, If the two don't match, you can trigger the refill.
  10. arjmand

    Not Change on the Form

    Got it Friend i ve had a lot of headache when this happened to me, anyways u need not to worry, juz open the folder where ur solution rests, delete all the contents in bin, debug, release etc but please dont do anything with the resources folder, go back rebuild the solution n there u go. (Dont...
  11. arjmand

    System.Net.Mail

    Hi Friends, Guys i want help about three things pertaining to System.Net.Mail namespace. 1.) I think the above namespace cannot read email, so what is the other option i can use to read the email? 2.) How is the delivery method SpecifiedPickupDirectory different from PickFromIIS? 3.) How can...
  12. arjmand

    problem in Email sending

    I used the same code snippet u had placed in ur reply, only change i made was changed the smtp, user name. I thing i would like to say is that when i configure IIS and use SMTPCL.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis where SMTPCL is an object of type...
  13. arjmand

    problem in Email sending

    Thank u for ur time scott, i tried ur code, but the same old exception pops again.
  14. arjmand

    problem in Email sending

    Hi and thank u in advance, Friends am Using System.Net.Mail to send email, I did it sucessfully on smtp.gmail.com, but our company owns its own smtp server, when i am trying to send the email to it, I get the following exception: I tried everything the authentication and credentials, but result...
  15. arjmand

    Update item in Combo box automatically

    Well friend, I got your problem Well friend, I got your problem, the best possible idea that I can think of is that you can check if the form that contains the said combobox has lost the focus and got focus back. If such a thing has happened refill the combo contents.
  16. arjmand

    How can i make dataupdation faster?

    Thank you Neal Thank you Neal for ur time n reply, but i found the way out, i was doing a slight mistake in my approach which i rectified. Things are now going smoothly.
  17. arjmand

    How can i make dataupdation faster?

    Hi friends, I have a problem with the amount of time my application is taking to update the database under the following case: I have to fetch more than 2500 records from a database table and then update other database table with the fetched records, I have done both the things successfully...
  18. arjmand

    all my groupboxes is black

    Hi there... Do it like this assuming form1 and form2 is the name of the two said forms, add the following code... Public class Form1 Private objFrm2 As New Form2 Private Sub Form1_Load(ByVal Sender as object, ...................) objFrm2.show() End Sub End class Thank You
  19. arjmand

    get to edit cell datagridview

    Hi all, please help me to place the pointer on a specific row programatically, Note that the datagrid is binded to a data source. Currently I can select a row but to enter the data on that row I have to click the row, but I want that to happen programmatically. Please tell me which property of...
  20. arjmand

    login code

    Hey Buddy try this say the login check is made on click event of a button named day btnOK here is code: 'Make connection to database named say abc.mdb having two columns userID and Password dim conn as new OLEDB.OLEDBConnection(" Provider= Microsoft.JET.OLEDB.4.0; Data Source=C:\abc.mdb")...
Back
Top