Moogoo's Profile User Rating: -----

Reputation: 10 Tradesman
Group:
Contributors
Active Posts:
79 (0.06 per day)
Joined:
06-January 10
Profile Views:
7,822
Last Active:
User is offline Apr 21 2013 05:15 PM
Currently:
Offline

Previous Fields

Country:
US
OS Preference:
Linux
Favorite Browser:
FireFox
Favorite Processor:
AMD
Favorite Gaming Platform:
PC
Your Car:
Who Cares
Dream Kudos:
100

Latest Visitors

Icon   Moogoo has not set their status

Posts I've Made

  1. In Topic: Media Player Play Next Song

    Posted 22 Aug 2012

    Hey, I know this about a year too late, but for anyone looking up this section of code, here is a solution for you:
    Private Sub WMPWindow_PlayStateChange(ByVal sender As Object, ByVal e As AxWMPLib._WMPOCXEvents_PlayStateChangeEvent) Handles WMPwindow.PlayStateChange  
    
            Static Dim PlayMe As Boolean = True
            Select Case WMPwindow.playState
                Case 10
                    If PlayMe Then
                        WMPwindow.Ctlcontrols.play()
                    End If
                Case 8
                    If SongsListBox.SelectedIndex = SongsListBox.Items.Count - 1 Then
                        PlayMe = False
                    Else
    
                        SongsListBox.SelectedIndex = SongsListBox.SelectedIndex + 1
                        PlayMe = False
                        WMPwindow.URL = "C:\Users\SamLemx\Desktop\Music\" & SongsListBox.SelectedItem.ToString 
                        WMPwindow.Ctlcontrols.play()
                        PlayMe = True
                    End If
            End Select
       End Sub 
    
    
    


    This will handle the PlayStateChanges that happen, and there are a few between each song (7!). I'm sorry this probably doesn't help the original requestor, but hopefully it's useful to someone in the future!!
  2. In Topic: css image not rendering after SelectedIndex event

    Posted 18 Aug 2011

    I know this is a tricky one, I've had three developers on my team look at this with me, and the Google Admin isn't bringing up any references to this, so any help that I could get would be appreciated.
  3. In Topic: Checkbox not working in Gridview in UpdatePanel

    Posted 15 Jul 2011

    PreRender works!! Thank you so much for helping me on this topic. I told my boss that I was going to give up on this and just validate all the checkboxes upon submit, but you saved that application! I suppose I owe you a portion of my paycheck now? :smile2:
  4. In Topic: Checkbox not working in Gridview in UpdatePanel

    Posted 14 Jul 2011

    I tried using the RowDataBound event and I get the same results. You mentioned using the PreRender event, which I have never used. I looked it up on MSDN, but not sure how or where to implement that event. Any help on that method?
  5. In Topic: ASP.Net/C# - Are you missing a using directive or an assembly referenc

    Posted 30 Jun 2011

    You declare a mas_list(), but on your code I don't see any Class for mas_list, so that may be the problem, that it doesn't exist.

My Information

Member Title:
D.I.C Head
Age:
Age Unknown
Birthday:
Birthday Unknown
Gender:
Years Programming:
2

Contact Information

E-mail:
Click here to e-mail me
Website URL:
Website URL  http://

Friends

Comments

Moogoo has no profile comments yet. Why not say hello?