Showing posts with label Inkjet. Show all posts
Showing posts with label Inkjet. Show all posts

Monday, 4 February 2013

HD - 2010 Gaming Computer Build (Part 2)

HD - 2010 Gaming Computer Build (Part 2) Tube. Duration : 9.40 Mins.


Watch in HD for best picture. Also give me any tips on how to improve my build. This was my first build so I may have done something wrong. Thanks! A video detailing my computer setup I made in March 2010. Enjoy. Update 16/4/11 (Not shown in video): AUDIO: Logitech z906 - 0 (Replaced JBL Creature II) EXTERNAL HDD: Fantom G-Force II eSATA/USB - Update 23/8/10 (Not shown in video): AUDIO: X-Fi Titanium Fatal1ty Champion Series - 0 (w/ rebate) MOUSE PAD: SteelSeries QcK - Hardware: CPU: AMD Phenom II X4 965 Black Edition - 4.99 COOLING: XIGMATEK Dark Knight / 5 FANS - .96 + .99 (for extra fan) CONTROLLER: Scythe Fan Controller - MOTHERBOARD: GIGABYTE GA-790FXTA-UD5 - 4.99 RAM: CORSAIR XMS3 4GB DDR3 1600 - 9.99 GPU: HIS ATI Radeon HD 5850 - 9.99 HDD: Western Digital Caviar Black 640 GB x2 (in Raid 0) - $ 74.99 each EXTERNAL HDD: Western Digital My Book 500 GB - + Segate 1 TB - 5 DRIVES: Asus Dvd Burner - NETWORKING: Edimax Ew-7728ln - CASE: Lian-Li Lancool PC-K62 - 9.99 PSU: CORSAIR 750W Modular - 9.99 OS: Windows 7 Ultimate 64 bit - 9.99 LIGHTS: Cold Cathode - Peripherals: MONITOR: Samsung Syncmaster P2370 1080p - 0 SPEAKERS: JBL Creature II / JVC RX-1 / Sennheiser HD-555 - 0 (Creatures) + 0 (RX-1) + 0 (HD-555) MOUSE: Razer Mamba - 5 KEYBOARD: Logitech Illuminated Keybaord - Thanks for watching

Thursday, 10 January 2013

How to make a sound recorder in VB 2008/2010

How to make a sound recorder in VB 2008/2010 Video Clips. Duration : 6.58 Mins.


in this tut i will show you How to make a sound recorder in VB 2008/2010. this will record sound ur mic hears when started. NOTE(READ THIS)- if you want this to save the sound recording direcly into the c drive like in the code you MUST...MUST....MUST have UAC disabled or use XP-If you dont want to disable UAC then you must change the file to were it saves to your User file folder and also the Audio Play: So Button 2 would be: Button1.Enabled = True Button2.Enabled = False Button3.Enabled = True mciSendString("save recsound c:\Users\Jeff\RECSOUND1.wav", "", 0, 0) mciSendString("close recsound", "", 0, 0) MsgBox("File Created: C:\recsound.wav") Label1.Text = "Stopped..." Label1.Visible = False My.Computer.Audio.Stop() And Button 3 would be: Label1.Text = "Playing..." Label1.Visible = True My.Computer.Audio.Play("c:\Users\Jeff\RECSOUND1.wav", AudioPlayMode.Background) All the code can be downloaded from: www.mediafire.com Or it is right Here :) : Public Class Form1 Private Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, ByVal uReturnLength As Integer, ByVal hwndCallback As Integer) As Integer Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Button1.Enabled = False Button2.Enabled = True mciSendString("open new Type waveaudio Alias recsound", "", 0, 0) mciSendString("record recsound", "", 0, 0) Label1.Text = "Recording..." Label1 ...