Para aqueles que tem mini-DVD de 1.4Gb e não conseguem extrarir o vídeo gravado pela filmadora, o ISOBuster pode ser o programa ideal para resolver este problema.
Endereço: http://www.isobuster.com/
Postado por Cristiano - Xyber às 18:14 0 comentários
Marcadores: Novidades
1: <?
2: echo "Hello World";
3: ?>
Postado por Cristiano - Xyber às 10:25 0 comentários
Marcadores: PHP, programação
Postado por Cristiano - Xyber às 04:56 0 comentários
Marcadores: Photoshop
Postado por Cristiano - Xyber às 08:47 0 comentários
Marcadores: Novidades
Postado por Cristiano - Xyber às 08:42 0 comentários
Marcadores: Sony Vegas
1: Imports System
2: Imports System.Diagnostics
3: Imports System.IO
4: Imports System.Runtime.InteropServices
5:
6: Public Class Beep
7: <Flags()> _
8: Private Enum PlaySoundFlags
9: SND_SYNC = &H0 ' play synchronously (default)
10: SND_ASYNC = &H1 ' play asynchronously
11: SND_NODEFAULT = &H2 ' silence (!default) if sound not found
12: SND_MEMORY = &H4 ' pszSound points to a memory file
13: SND_LOOP = &H8 ' loop the sound until next sndPlaySound
14: SND_NOSTOP = &H10 ' don't stop any currently playing sound
15: SND_NOWAIT = &H2000 ' don't wait if the driver is busy
16: SND_ALIAS = &H10000 ' name is a registry alias
17: SND_ALIAS_ID = &H110000 ' alias is a predefined ID
18: SND_FILENAME = &H20000 ' name is file name
19: SND_RESOURCE = &H40004 ' name is resource name or atom
20: End Enum
21:
22: <DllImport("coredll.dll")> _
23: Public Shared Function PlaySound( _
24: ByVal szSound As String, _
25: ByVal hModule As IntPtr, _
26: ByVal flags As Integer) As Integer
27: End Function
28:
29: Public Shared Sub Play(ByVal fileName As String)
30: Try
31: PlaySound(fileName, IntPtr.Zero, PlaySoundFlags.SND_FILENAME Or _
32: PlaySoundFlags.SND_SYNC)
33: Catch ex As Exception
34: MessageBox.Show("Can't play sound file. " & ex.ToString)
35: End Try
36: End Sub
37: End Class
1: Beep.Play("\Windows\decode.wav")
Postado por Cristiano - Xyber às 06:14 0 comentários
Marcadores: programação, VB.NET
Postado por Cristiano - Xyber às 12:58 0 comentários
Marcadores: Photoshop
Postado por Cristiano - Xyber às 05:04 0 comentários
Marcadores: Novidades
Postado por Cristiano - Xyber às 16:20 0 comentários
Marcadores: Sony Vegas
1: Imports System.Runtime.InteropServices
2:
3: Public Class ExecutarProgramas
4: <DllImport("CoreDll.DLL", SetLastError:=True)> _
5: Private Shared Function CreateProcess(ByVal imageName As String, _
6: ByVal cmdLine As String, _
7: ByVal lpProcessAttributes As IntPtr, _
8: ByVal lpThreadAttributes As IntPtr, _
9: ByVal boolInheritHandles As Int32, _
10: ByVal dwCreationFlags As Int32, _
11: ByVal lpEnvironment As IntPtr, _
12: ByVal lpszCurrentDir As IntPtr, _
13: ByVal si() As Byte, _
14: ByVal pi As ProcessInfo) As Integer
15: End Function
16: <DllImport("CoreDll.dll")> _
17: Private Shared Function GetLastError() As Int32
18: End Function
19: Public Shared Function CreateProc(ByVal ExeName As String, _
20: ByVal CmdLine As String, _
21: ByVal pi As ProcessInfo) As Boolean
22: If pi Is Nothing Then
23: pi = New ProcessInfo
24: End If
25: Dim si(127) As Byte
26: Return CreateProcess(ExeName, CmdLine, IntPtr.Zero, _
27: IntPtr.Zero, 0, 0, _
28: IntPtr.Zero, _
29: IntPtr.Zero, si, pi) <> 0
30: End Function 'CreateProc
31: End Class 'Externals
32:
33: Public Class ProcessInfo
34: Public hProcess As IntPtr
35: Public hThread As IntPtr
36: Public ProcessId As Int32
37: Public ThreadId As Int32
38: End Class 'ProcessInfo
1: ExecutarProgramas.CreateProc("\Windows\ScanWedge.exe", "ScanWedge", Nothing)
Postado por Cristiano - Xyber às 04:32 1 comentários
Marcadores: programação, VB.NET
Postado por Cristiano - Xyber às 05:33 2 comentários
Marcadores: Photoshop
Postado por Cristiano - Xyber às 10:51 0 comentários
Marcadores: Novidades
Postado por Cristiano - Xyber às 17:05 4 comentários
Marcadores: Sony Vegas
Postado por Cristiano - Xyber às 04:27 0 comentários
Marcadores: Photoshop
Postado por Cristiano - Xyber às 04:02 0 comentários
Marcadores: programação, VB.NET
Endereço : http://www.astonshell.com/downloads.htm
Postado por Cristiano - Xyber às 13:23 0 comentários
Marcadores: Novidades