Search:

Type: Posts; User: Simply Me

Page 1 of 13 1 2 3 4

Search: Search took 0.24 seconds; generated 59 minute(s) ago.

  1. Replies
    10
    Views
    567

    VS 2022 Re: [RESOLVED] Timer Plus Sound (.wav)

    Got it sorted out already. Thanks everyone.
  2. Replies
    10
    Views
    567

    VS 2022 Re: Timer Plus Sound (.wav)

    That's what I want to happen except that every tick of a second, there should be a ticking sound or .wav that will play. I have attached a sample program which is already doing what I want to do...
  3. Replies
    10
    Views
    567

    VS 2022 Re: Timer Plus Sound (.wav)

    Below is a completely new code minus the other buttons as shown in my screenshoot in the first post. This only includes, a label, button and a textbox. The sound files are already playing okay but...
  4. Replies
    10
    Views
    567

    VS 2022 Re: Timer Plus Sound (.wav)

    this is an Excel file
  5. Replies
    10
    Views
    567

    VS 2022 Re: Timer Plus Sound (.wav)

    it's an Excel file
  6. Replies
    10
    Views
    567

    VS 2022 Re: Timer Plus Sound (.wav)

    Tried the code and the sonar will play on form load and after 10 seconds.
    What I want is that every second, the sonar will play and after 10 seconds, the chime.wav will play indicating that time is...
  7. Replies
    10
    Views
    567

    VS 2022 [RESOLVED] Timer Plus Sound (.wav)

    Hello everyone.

    I am working on a timer which can be used as a quiz bee timer, count down, count up timer, and stopwatch. Right now, I am having a problem playing a .wav playing while timer is...
  8. Re: Number of query values and destinations are not the same

    i tried the replace but it's not working...I guess I just have to remove the formatting. Thanks you very much for your help.
  9. Re: Number of query values and destinations are not the same

    here's the original formatting code
    Set lst = lstStocks.ListItems.Add(, , txtCode.Text) 'DISPLY IN LISTVIEW
    lst.SubItems(1) = txtDesc.Text
    lst.SubItems(2) = txtQty.Text
    ' ...
  10. Re: Number of query values and destinations are not the same

    Field type is currency
  11. Re: Number of query values and destinations are not the same

    for display purposes so that the user is guided.
  12. Re: Number of query values and destinations are not the same

    for display purposes so that the user is guided.
  13. Re: Number of query values and destinations are not the same

    yes it will work it formatted without the comma... is no other way of doing with but still use the comma?
  14. Re: Number of query values and destinations are not the same

    yes it will work if formatted without the comma... is no other way of doing with but still use the comma?
  15. Re: Number of query values and destinations are not the same

    yes it is formatted like 1,000.00
  16. Number of query values and destinations are not the same

    Hello!

    I am wondering why I am getting this error. If I enter less that 1000 in my Item price textbox the program will run without error, the transaction will be saved in the my access database,...
  17. VS 2005 Update record if already exist else Insert it

    Hi!

    I been trying to use the code below. The update portion just save the last record. what am i missing?

    If SecID() = True Then
    'MessageBox.Show("Already Existing.",...
  18. Re: Insert records if not exist only

    Thanks techgnome...it worked perfectly.
  19. [RESOLVED] Insert records if not exist only

    Hi!

    I would like to insert records from one table to another table only if the records does not exist. I have tblmaster and tblenrol and this is my code right now
    insert into tblmaster
    select...
  20. Replies
    8
    Views
    1,229

    Re: Tabulation Program

    its a scoring system. Instead of the manually tabulating the results of a contest, judges would enter their scores and automatically the results will be tabulated.
  21. Replies
    8
    Views
    1,229

    Re: Tabulation Program

    anyone with suggestions here?
  22. Replies
    8
    Views
    1,229

    Re: Tabulation Program

    Hey bro.

    I need two actually, one for a beauty contest and one for a socio-cultural contest (solo, duet, hip-hop and the like)
  23. Replies
    8
    Views
    1,229

    Tabulation Program

    Hi!

    I know that my need is very basic to all....I would like to solicit your suggestions as to the best possible way how to create a flexible network based tabulation program or you can point me...
  24. Replies
    5
    Views
    773

    VS 2005 Re: Update records

    Initially I have this code...but its not working...My code will update all the students detail supposedly, I just want to update the subjects registered to a certain student. Frankly speaking, I...
  25. Replies
    5
    Views
    773

    VS 2005 Re: Update records

    Oh, I'm sorry jmcilhinney, my bad. I posted the old code. Rest assured jm I am already using parameterized query.
    Thanks for pointing it out.
  26. Replies
    5
    Views
    773

    VS 2005 Update records

    Hi!

    I have this code to insert records
    'insert all selected subjects
    y = Me.BindingContext(dsSub.Tables("tblSubjects")).Count - 1
    ...
  27. Replies
    2
    Views
    705

    Re: SQL Server Database location

    Thanks for the quick reply jmcilhinney...
  28. Replies
    2
    Views
    705

    SQL Server Database location

    Hi!

    I have a couple of questions...
    1. Is it a good idea to put the database in same folder with the application? any advantages and disadvantages?
    2. How would the connectionstring look like?
    ...
  29. Re: Cannot bind to the property or column problem

    Thanks for the explanation dunfidlin
  30. Re: Cannot bind to the property or column problem

    I tried putting the condition in FormClosed instead. I dont get the error when I click the [x] button.

    Private Sub frmAssignSubjects_FormClosed(ByVal sender As Object, ByVal e As...
  31. Re: Cannot bind to the property or column problem

    I saw a problem with it while testing the app. Values in my textboxes no longer displays when I select a record in the combobox.
  32. Re: Cannot bind to the property or column problem

    I saw a code snippet from here and I tried it in my work like this:

    Private Sub cboFullName_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  33. Re: Cannot bind to the property or column problem

    I used nvarchar(MAX)
  34. Re: Cannot bind to the property or column problem

    its not autonumber because I just increase it through my code...and no i don't have primary key...I am using sql sever 2005
  35. Re: Cannot bind to the property or column problem

    no its not autonumber
  36. Re: Cannot bind to the property or column problem

    ons
    If I do it like what you said, I get this error "DataMember property 'tblMaster' cannot be found on the DataSource." when I select any of the radio buttons.

    I have the following code:...
  37. Cannot bind to the property or column problem

    Hi!
    I have this code below and it gives me this error "Cannot bind to the property or column IDNO on the DataSource.
    Parameter name: dataMember" everytime I close my form and the error is pointing...
  38. Replies
    3
    Views
    654

    Re: Display records in combobox

    Got it working already... I used BindingSource to the Form instead but there came up a problem with regards to displaying the detail of the selected Name (FullName) in different textboxes.

    I...
  39. Replies
    3
    Views
    654

    Re: Display records in combobox

    thanks for the quick reply .paul.

    I tried your code when I clicked the HS radio button it populate the combobox with High school records but when i clicked the Elem radio button, it hanged on me....
  40. Replies
    3
    Views
    654

    [RESOLVED] Display records in combobox

    Hi!

    I have two radio buttons, and two comboboxes and one textbox. On load of the form, I can display the records of students belonging to highschool, but when I click the other radio button for...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width