2,383 Posted Topics
Re: make a public shared variable to accomodate your item and you can call it in other form. | |
Re: [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 … | |
Re: 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 … | |
Re: Hi... Welcome to Daniweb Friend :) you should to see [URL="http://www.daniweb.com/forums/forum58.html"]VB.NET Forum[/URL] | |
Re: well, i don't know what i have to say. but maybe i can say "Nice to Know you Friend"...:D | |
Re: 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. :) | |
Re: 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] | |
Re: 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 = … | |
Re: [URL="http://www.google.co.id"]google[/URL], search for enterprise edition | |
Re: [URL="http://support.microsoft.com/kb/106553/en-us"]see this link[/URL] | |
Re: [URL="http://www.daniweb.com/forums/showthread.php?t=40204&highlight=dll"]see this thread[/URL] | |
Re: 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 … | |
Re: 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) < … | |
Re: 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] | |
Re: 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. | |
Re: [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 … | |
Re: i think crystal report have a function for sum or avg. | |
Re: [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. | |
Re: [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.:) | |
Re: - divided in module/function, so u just call the function or module. - Reusability - Resilience to change - Encapsulation, Abstraction, Inheritance and Polymorphism | |
| |
The End.