Search results for query: *

  • Users: snow1
  • Order by date
  1. S

    Dispose connection?

    Hi! Sorry if i don't make sense here, but i am really puzzled. Can anyone explain this simple concept to me? When do i Dispose connection? is it necessary? and there's also this blablabla = Nothing. how do i use it? And how about the DataAdapter, do i dispose it also?
  2. S

    TimeOfDay always = 00:00:00 ?

    Thanks so much!! it works perfectly!
  3. S

    TimeOfDay always = 00:00:00 ?

    Can anyone help me on how to get the time from the local settings of my computer? DateTime.Today seems to work for me, it gives me the date today. But I'm having a problem with the DateTime.Today.TimeOfDay. it just gives me the default time, which is 00:00:00. The time in my settings is correct...
  4. S

    Problem with Updating record

    Hi, I have an update form where user can update any record in the database by filling in new values in textboxes. I have succeeded in updating ONE FIELD already, however, i want to be able to update many fields in just one update statement. I know the statement should be "UPDATE TABLENAME SET...
  5. S

    DataBind vs DataBindings?

    Hi. How can i bind data to datagrid? there are no DataBind available. An Error notification keeps on showing up once i type "DataBind". (It says: 'DataBind' is not a member of System.Windows.Forms.DataGrid) There is one close though, DataBindings. But I don't know how to use it. anyone help me...
  6. S

    stackOvelflowException ?

    Hi. Found the error but I'm not so sure if this is really the one. Apparently, instead of just instantiating the forms in the area where global variable is declared, I've also created them. So, there goes the error, i guess. I just replaced : Public Class Form1 Inherits...
  7. S

    stackOvelflowException ?

    error is System.StackOverflowException
  8. S

    stackOvelflowException ?

    the problem is, i don't know where the error happens. because everything was okay during build. i just cannot run the .exe file
  9. S

    stackOvelflowException ?

    stackOverflowException ? this error occurs as i run my .exe file: stackOvelflowException. i think its a run time error. Can anyone help me fix it? there are no errors during build, btw.:confused:
  10. S

    using function from another class

    yeap. i get it. ty! ty!
  11. S

    using function from another class

    using / calling function from another class how can i use a functions created in another class? do i have to inherit something? or declare something? how? because it says "Name 'GetData' is not declared." Basically, i am trying to call a function (let's say GetData())that is in Class1 from Class2.
  12. S

    Problem with opening and closing forms

    Thanks skaryChinezeGuie!!! ur my star! heee!
  13. S

    Problem with opening and closing forms

    What does this error mean? [Reference to a non-shared member requires an object reference]. It keeps popping out when i try to open a form named "frmLogIn". And this is the syntax i used: frmLogIn.Show() Another error is this: ['Open' is not a member of 'WindowsApplication1.frmLogIn']. this...
  14. S

    HELP!! syntax error in INSERT INTO statement

    thanks so much all of you!!!! it works already. whew.
  15. S

    HELP!! syntax error in INSERT INTO statement

    I've tried "INSERT INTO YourTableName (Column1) VALUES (100)" in a different table and yes, it does work. however when i did it in the same table as the one im using (User) same error occurs. TableName : User Field : UserID,UserName,PWord Values : 123,name,trial these are my input. there are...
  16. S

    HELP!! syntax error in INSERT INTO statement

    Thank you... i removed the dataadapter and dataset, but still the same error occurs. what should i do? has this something to do with the input values? (strings must have single quotations while integers just remains as is)
  17. S

    HELP!! syntax error in INSERT INTO statement

    hi. please help me!! i am trying to insert a new record into an access database, and the following keeps popping up: syntax error in INSERT INTO statement. however, i cannot find any error with my insert into statement. can anyone please help me? im desperateeeeeeeee. im so stuck!!!! PrivateSub...
Back
Top