Jump to content
Xtreme .Net Talk

coco_3010

Members
  • Posts

    9
  • Joined

  • Last visited

About coco_3010

  • Birthday 06/04/1988

Personal Information

  • Occupation
    Student
  • Visual Studio .NET Version
    .NET Professional
  • .NET Preferred Language
    VB.NET

coco_3010's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. hey i was wonderin how i would get windows media into .net /// i have done it in VB6 but its different in .net , so if anyone could help !!!!
  2. here is 1 more for the .uload put Me.close() 'instead of End (End causes memory leaks)
  3. here is another one Me.close()
  4. well, yes but you should put a better ending to ur program , instead of using End, this can cause memory leaks!!!!! try to use Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click Me.close () End Sub
  5. just do this Private Declare Function Beep Lib "kernel32" (ByVal dwFreq As Integer, ByVal dwDuration As Integer) As Integer ' in the actuall event put this, beep (100, 100) ' the first 100 represents the pitch (how high or low the beep sounds) and the second represents how long it is (100 a good length)
  6. coco_3010

    beepin

    hi im tryin to make the internal speaker beep, Private Declare Function Beep Lib "kernel32" (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long beep (100 , 100)
  7. 'post it like this so we can read easily if command1.click then End If
  8. Hey, im pretty new to .net but i am learning quick, and i have built an loan calculator that works but i want to use a safe way for unloading my project - vb6.0 is jsut unload me but in .NET its different so plz help thanks
×
×
  • Create New...