Search results for query: *

  • Users: liam
  • Order by date
  1. L

    Closing forms

    code If TRANSrem Is Nothing OrElse TRANSrem.IsDisposed Then TRANSrem = New frmTRANSrem TRANSrem.MdiParent = Me TRANSrem.Show()
  2. L

    Closing forms

    dispose first form... create a code that will dispose the first form then create a new instance of the form.
  3. L

    DataSets

    cleaning the dataset will ensure that no duplications and overwriting of data will occur and yes it's just like washing off your hands.. heheheh...
  4. L

    Data Relation Problem

    I'm currently stucked in one of my apps. I hope someone could help me. I've searched some books already but just couldn't find the right solution. I have 4 tables in MS ACCESS They are all related to on PROVIDER ID However when I relate two tables, I receive the message that the OBJECT...
  5. L

    Let's share stuff

    Don't you think that we will be more productive if we will be able to share simple programs to help other users of this forum?
  6. L

    showing forms in panel

    i've got the code for showing forms in panel but the problem is i want the form to appear only once even if the button is clicked many times. here's the code.. hope someone could help me... Sub LoadFormsInPanel(ByVal container As Panel, ByVal formType As Type) Dim ypos As Integer = 0...
  7. L

    search to the datagrid w/ the use of textbox value.

    hey how do you that in listview?
  8. L

    LOGIN Problems

    how can i count the number of failed logins? where do i put the code.. thanks... Private Sub btnSOk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSOk.Click If lblPassword.Text = tbPassWord.Text Then m.logged = True m.Show() Else Dim ctr As Integer m.logged =...
  9. L

    progress bar in the status bar

    and then? sorry... it doesn't work
  10. L

    progress bar in the status bar

    can anyone help me on how i can put my progress bar inside the status bar... thanks...
  11. L

    Another problem... Binding

    I have already populaed my combobox with the account names. I need to do this because i want the user to choose the name from the combobox then information with regard to the account name will appear below in textboxes. I have already bounded the textboxes with their respective fields BUT...
  12. L

    New TabPage

    I'm creating a program where I need to create new tabpages containing the controls of a pre-designed tabpage and I can't figure out what to do. 1) I can already make new instances of a tabpage using this command... Private Sub btnNewProvider_Click(ByVal sender As System.Object, ByVal e As...
  13. L

    I'm sorry.. i'm just a newbie..

    Can anyone show me how to create a database program.. from connecting to the database which is access to adding records, editing, deleting, saving changes, and binding data... Thanks...
  14. L

    Compute age using dtpicker transfer result to textbox

    here's my code but it doesn't work.. hope someone can help me out... Private Sub dtpBDate_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles dtpBDate.ValueChanged Dim a As Date = Date.Today.ToShortDateString Dim b As Date = dtpBDate.Value.ToShortDateString...
  15. L

    MDI Problem

    I'm having a problem showing a form coming from an mdichild. How can I make that new form open also inside the MDI form? The problem is when I click the New Account menuitem an mdichild is opened and when the mdichild is opened i have an ok button there when it is clicked it should open...
  16. L

    User Restriction

    How do I set user restrictions in a network with the software I am developing?
  17. L

    Installer Type and Platform Independent

    How do I create an installer for my software package? and How can I be assured it is platform independent?
  18. L

    putting data from an access database using list view

    Thanks a lot! Hope I could be help if anytime you too have questions. Cheers! Are you working for a company or a freelance software developer?
  19. L

    putting data from an access database using list view

    Yes that's it I need codes for reading data and records from access database to the list view.
  20. L

    VS.Net 2002 or VS.Net 2003?

    I think so coz it is almost the same as the 2002 version. I was using 2002 before and it's almost the same.
Back
Top