2,383 Posted Topics

Member Avatar for _::suhanna::_
Member Avatar for SolTec
0
1K
Member Avatar for Mikecc2691

[code=vb]Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long Const SND_ASYNC = &H1 Const SND_LOOP = &H8 Const SND_MEMORY = &H4 Const SND_NODEFAULT = &H2 Const SND_NOSTOP = &H10 Const SND_SYNC = &H0 Private Sub cmdPlay_Click() Dim Result As Long Dim …

Member Avatar for Jx_Man
0
108
Member Avatar for miss.A

first you must know the type and patern of prime number : Hope the following code is solved your problem : [CODE=vb.net]Private Sub PrimeNumber(ByVal Low As Integer, ByVal Up As Integer) Dim i As Integer For i = Low To Up If (i = 2) Or (i = 3) Or …

Member Avatar for Jx_Man
0
162
Member Avatar for LeBurt
Member Avatar for Folake
Member Avatar for peter bertolino
Member Avatar for midimatt
Member Avatar for zandiago
0
52
Member Avatar for poizn
Member Avatar for zandiago
0
97
Member Avatar for RacingRuso
Member Avatar for zandiago
0
14
Member Avatar for highspeedhook

Hi... Welcome to Daniweb Friend :) you should to see [URL="http://www.daniweb.com/forums/forum58.html"]VB.NET Forum[/URL]

Member Avatar for zandiago
0
78
Member Avatar for csfisher
Member Avatar for JoeMayo
Member Avatar for alnj
Member Avatar for ithelp

well, i don't know what i have to say. but maybe i can say "Nice to Know you Friend"...:D

Member Avatar for zandiago
0
100
Member Avatar for softlysoar

hi...welcome to Daniweb friend :) there are many people who start to write program this week.so feel free to post. and maybe we need your help. :)

Member Avatar for zandiago
0
48
Member Avatar for devarajm
Member Avatar for zandiago
0
56
Member Avatar for Al-Saeed
Member Avatar for Joatmon
Member Avatar for activex786
Member Avatar for drkdragonlord
Member Avatar for nav33n
0
268
Member Avatar for Time Indicator

as rahmy said : add selected file on first list to second list and remove item from first list. [code=vb.net]Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click list2.Items.Add(list1.SelectedItem) list1.Items.Remove(list1.SelectedItem) End Sub[/code]

Member Avatar for Jx_Man
0
93
Member Avatar for Asad__

you must to declare what is SW_SHOWNORMAL. [code=vb]Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long Private Const SW_HIDE = 0 Private Const SW_MAXIMIZE = …

Member Avatar for Jx_Man
0
172
Member Avatar for Vega_Knight
Member Avatar for maharajakecil
Member Avatar for maharajakecil
0
64
Member Avatar for shinoske
Member Avatar for Jx_Man
0
84
Member Avatar for prachi malpure

[URL="http://www.daniweb.com/forums/showthread.php?t=40204&highlight=dll"]see this thread[/URL]

Member Avatar for Jx_Man
0
228
Member Avatar for evios

try this code : [code=vb]Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long Const SND_ASYNC = &H1 Const SND_LOOP = &H8 Const SND_MEMORY = &H4 Const SND_NODEFAULT = &H2 Const SND_NOSTOP = &H10 Const SND_SYNC = &H0 Private Sub cmdPlay_Click() Dim …

Member Avatar for Jx_Man
0
109
Member Avatar for wawaron
Member Avatar for CyberAngel
Member Avatar for zandiago
0
62
Member Avatar for allanrm
Member Avatar for the_Grinch
Member Avatar for peterpollen
Member Avatar for C. A. Cross
Member Avatar for barbiegirl
Member Avatar for zandiago
0
51
Member Avatar for Pilate
Member Avatar for zandiago
0
63
Member Avatar for vinayj
Member Avatar for zandiago
0
38
Member Avatar for shannonpaul

i was modified your code, i add two event handling in keypress event : [code]Public Class Form1 [COLOR="Red"]'This code not allowed you entered numeric input Private Sub txtFirstName_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtFirstName.KeyPress If (Microsoft.VisualBasic.Asc(e.KeyChar) < 65) _ Or (Microsoft.VisualBasic.Asc(e.KeyChar) > 90) _ And (Microsoft.VisualBasic.Asc(e.KeyChar) < …

Member Avatar for bwkeller
0
155
Member Avatar for SubProf

Hi SubProf... Welcome to Daniweb friend :) i think you post thread in wrong forum.. this forum for vb not for c#... [URL="http://www.daniweb.com/forums/forum61.html"]please post in current forum -> C#[/URL]

Member Avatar for SubProf
0
88
Member Avatar for hawada99

use package & deployment wizard on microsoft visual studio tools. start program -> Microsoft Visual Studio 6.0 -> Microsoft Visual Studio 6.0 tools -> Package & Deployment wizard.

Member Avatar for Jx_Man
0
80
Member Avatar for sk8ndestroy14

[code=vb]'5 command buttons: 'cmdRestart; cmdLogOff; cmdForceLogOff; cmdShutdown; cmdForceShutdown Option Explicit Private Const EWX_LogOff As Long = 0 Private Const EWX_SHUTDOWN As Long = 1 Private Const EWX_REBOOT As Long = 2 Private Const EWX_FORCE As Long = 4 Private Const EWX_POWEROFF As Long = 8 Private Declare Function ExitWindowsEx Lib …

Member Avatar for Jx_Man
0
168
Member Avatar for sbv
Member Avatar for sneekula

[QUOTE=Jicky;493938]people smoking makes me irritated[/QUOTE] yes i dont like too... i m always tried to avoid them but i cant do anything if they smoking on the bus.

Member Avatar for reddawg
0
1K
Member Avatar for -mk-

[QUOTE=RamyMahrous;555515]Manually you can stop the server copy the data files and then restart the server..[/QUOTE] yeah, i do this way if i want to backup my database. i think this is a simple way.:)

Member Avatar for AaronASterling
0
631
Member Avatar for reddawg
Member Avatar for shinoske

- divided in module/function, so u just call the function or module. - Reusability - Resilience to change - Encapsulation, Abstraction, Inheritance and Polymorphism

Member Avatar for Jx_Man
0
130
Member Avatar for Franco22
Member Avatar for gburya
Member Avatar for bobbytheshat
Member Avatar for Monica Orwig
Member Avatar for d.adriel

The End.