Search results for query: *

  • Users: liam
  • Content: Threads
  • Order by date
  1. 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...
  2. 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?
  3. 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...
  4. 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 =...
  5. L

    progress bar in the status bar

    can anyone help me on how i can put my progress bar inside the status bar... thanks...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. L

    User Restriction

    How do I set user restrictions in a network with the software I am developing?
  12. 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?
  13. L

    Uploading Data from an Excel File

    I'm developing a software for an insurance broker. They have existing excel files and they required me to upload excel files into the software i'm developing. Is that possible? If so, can anyone guide me into this... Thanks in advance.
  14. L

    VS.Net 2002 or VS.Net 2003?

    I'm wondering which is better to use and what's the difference between the two... Can anybody help me out with this? All I know is that the framework version is one of the differences. Thanks.
  15. L

    putting data from an access database using list view

    I'm using list view to display data coming from an Access database. Haven't tried it though. Anybody who could unburden me with thinking what to do? Thanks.
Back
Top