-
Replied To a Post in How do I make a MMControl to decrease the Volume and Increase volume
Here you find a lengthy article about some of these eroors and how to fix these. Good luck http://pcsupport.about.com/od/findbyerrormessage/a/mmsystem-dll-not-found-missing-error.htm -
Began Watching How do I make a MMControl to decrease the Volume and Increase volume
-->>I'm trying to make a simple Audio player and so far I'm good. -->>The problem I'm facing is redusing and increasing the Volume. -->>Any ideas please... -->>Thak you. -
Replied To a Post in How do I make a MMControl to decrease the Volume and Increase volume
You will find an example with explanations here: http://support.microsoft.com/kb/118377 -
Began Watching backup database
hi good afternoon, hi good afternoon, am creating one point of sale software in vb.net ,today only i realize that i need a backup for the database i have attached … -
Replied To a Post in backup database
O.K. You can't just have one button to do the backup and restore at the same time. This doesn't make sense. So you need either 2 buttons, one to backup … -
Began Watching how to draw two parallel line in picture box which have same height
how to draw 2 parallel line in visual baisc 6.0 which have same height.. suppose picture box height is 200 then first line starting cordinate is 0,100 and second line … -
Replied To a Post in how to draw two parallel line in picture box which have same height
Private Sub Command1_Click() Picture1.Line (200, 0)-(200, Picture1.Height), vbBlue Picture1.Line (500, 0)-(500, Picture1.Height), vbBlack End Sub Private Sub Form_Load() Picture1.DrawWidth = 5 End Sub -
Began Watching How can I check whether the quiz answer was correct?
I am making a quiz for my computer science class and the basic concept is that you have 15 keywords and 15 definitions. All need to be randomly displayed and … -
Replied To a Post in How can I check whether the quiz answer was correct?
O.K I didn't undestand what your code is doing, considering what you want to achieve. So I whipped up a small program to do more or less what you waanted … -
Replied To a Post in Many Labels in an Event Handler
Well that would take too long. Look at the imports. Look what you need to put into the eventhandlers and what the events are.Example: Detect on the label that the … -
Replied To a Post in Many Labels in an Event Handler
O.K. You got the addhandler and an event. There is more to it. I have whipped up some minimal code you can start a new project,copy it in, put a … -
Began Watching Many Labels in an Event Handler
I'm writing a program that generates labels at runtime, and then has them be "dragged and dropped" by the user. I have the drag and drop code working, but right … -
Replied To a Post in Many Labels in an Event Handler
Static x As Integer = 100 or whatever -
Began Watching Add two numeric up down
take two numeric up down and add them quantity to text box -
Replied To a Post in Add two numeric up down
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim intSum As Integer = 0 Dim Int1 As Integer = CInt(NumericUpDown1.Value) Dim Int2 As Integer = CInt(NumericUpDown2.Value) TextBox1.Text = … -
Began Watching use windows form created keyboard with toolstriptextbox
I have created a windows form keyboards that pops up when a button is pressed on the form. when i write from the keyboard and ok is pressed i want … -
Replied To a Post in use windows form created keyboard with toolstriptextbox
check this info out. At the bottom is an example of how to use the toolstriptextbox: http://msdn.microsoft.com/en-us/library/system.windows.forms.toolstriptextbox(v=vs.110).aspx -
Replied To a Post in Combobox Add items from database
O.K., using the examples from vb.net it is very easy to format columns, but you need to set the font of the combobox to a mono spaced font. I used … -
Replied To a Post in Combobox Add items from database
If your code worked well in vb6 than it means you would have used a mono spaced font, otherwise you would not have been able to line colums as you … -
Replied To a Post in Combobox Add items from database
Position 25 is either the last letter of the first string or an empty space. Starting with the next string at position 25 gives you either the last letter of … -
Began Watching VB.NET : List If Closer To A Number
Hi, I need to List a number in a listbox if the number is closer to another number. Eg. Num1 = 98 Num2 =100 If 'num1 is close to num2' … -
Replied To a Post in VB.NET : List If Closer To A Number
closer compared to what? -
Replied To a Post in Combobox Add items from database
First you should clear your combo: CmbBank.Items.clear Than you build your string: str = ((DS.Tables("Deposit").Rows(Iint).Item("Bank")) & " " & DS.Tables("Deposit").Rows(Iint).Item("Acno")) than you add this to your combo: CmbBank.Items.Add(str) Also I … -
Replied To a Post in Combobox Add items from database
Obviously you just can't post my code into ypur program. You need to modify it so it does suit your databse. O.K. I give it shot. If it works it … -
Replied To a Post in Finding Cursor Position
Additional info: The addhandler handles events during runtime for my labels I have created during runtime. See also the following link: http://msdn.microsoft.com/en-us/library/7taxzxka.aspx -
Replied To a Post in Finding Cursor Position
Thats how I handle some of the Addhanlers: AddHandler lab.Click, AddressOf labMouseClick AddHandler lab.DragEnter, AddressOf labDragEnter AddHandler lab.MouseDown, AddressOf labMouseDown AddHandler lab.DragDrop, AddressOf labDragDrop AddHandler lab.MouseUp, AddressOf labMouseUp AddHandler lab.MouseMove, … -
Replied To a Post in Combobox Add items from database
O.K here are 2 different approaches: The first from the last link: Dim rdr As OleDbDataReader = cmd.ExecuteReader() Do While rdr.Read lvwResults.Items.Add(New ListViewItem({rdr("au_lname"), rdr("au_fname"), rdr("phone")})) Loop and the other I … -
Replied To a Post in Combobox Add items from database
Well, try the same loop as before and see if it works. -
Began Watching Combobox Add items from database
I have gone through the articles appeared in this forum on the above Area.But it didn't helped me much,As I am new to VB.net. In VB6 I have the following … -
Replied To a Post in Combobox Add items from database
You do need to learn the syntax of the net framework. Here is good start of how to handle the combobox methods: http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox(v=vs.110).aspx -
Began Watching Finding Cursor Position
I'm writing a program where I need to "click and drag" labels across the form. I'm planning on doing this by moving them to the position of the cursor. However, … -
Replied To a Post in Finding Cursor Position
This might be what you are looking for: http://vbcity.com/forums/t/103763.aspx -
Replied To a Post in Using Adodc control to subtract Queries Result
I don't think my advise was any good with your queries. Better have look at: http://technet.microsoft.com/en-us/library/cc966377.aspx and take it from there. -
Replied To a Post in Using Adodc control to subtract Queries Result
Well, do you know what is returned? -
Replied To a Post in Using Adodc control to subtract Queries Result
Well I would put some error checking in. After each select statement use debug.print() to see if your selects return what you expect. MAybe googlee for some select statement code … -
Replied To a Post in Return program to TopMost with keys
Yes you can - To have these keys raise the KeyDown event, you must override the IsInputKey method in each control on your form. Read the link. Since your code … -
Replied To a Post in Using Adodc control to subtract Queries Result
Your select statements could be also wrong. May be try: "SELECT Sum((Quantity)*12) FROM Sell_Detail Where Cateogry=" & "'" & Large & "'" and I am not sure if you have … -
Began Watching Vb.net SMS application
Hey guys, I have Huawei Modem, which has predloaded SMS send/receive facility. I want to develope a same application which could send/receive messeges. Can anyone tell me where should i … -
Replied To a Post in Vb.net SMS application
Well, I haven't worked with com ports since dos6 and commit but you might find eberything you need to get started here: http://www.codeproject.com/Articles/16648/NET-Phone-Communication-Library-Part-I-Retrieve-P http://www.codeproject.com/Articles/16727/NET-Phone-Communication-Library-Part-IV-Receive-S -
Began Watching Hi can someone solve my problem?
hi can someone answer my problem , at first my vb6 is working with my windows 7 32bit but i need to create a project now , everytime i copy … -
Replied To a Post in Hi can someone solve my problem?
Did you install all the sevice packs for vb6? http://www.microsoft.com/en-us/download/details.aspx?id=5721 Also check this website for answers. -
Began Watching Using Adodc control to subtract Queries Result
i want to run this Query with **ADODC control** and show result in **Datagird View** Private Sub Command1_Click() Dim Sell_tbl, Stock_Bottle, res As String Sell_tbl = "SELECT Sum((Quantity)*12) FROM Sell_Detail … -
Replied To a Post in Using Adodc control to subtract Queries Result
Only glancing at it, you declared your variables as string but then try to do some calculation with these in line 8. Need to change into some number type, int, … -
Began Watching Return program to TopMost with keys
I'm trying to create a program which will work in the background and can be brought back to the topmost upon a keyboard shortcut. I got stuck when creating the … -
Replied To a Post in Return program to TopMost with keys
The LWin and RWin keys are modifier keys with some extra functionallity. It is easier to use the Alt or Control keys. Private Sub TextBox1_KeyDown(sender As Object, e As KeyEventArgs) … -
Replied To a Post in Arrays
If you just use: ReDim TheArray(num) you would loose all the values entered previously. To keep these you need to use: ReDim Preserve TheArray(num) where num can be num+1. -
Began Watching VB6 for beginners
Can anyone pls refer any link to learn VB6 , bcoz im a beginners for vb6 -
Replied To a Post in VB6 for beginners
http://www.vbtutes.com/2013/01/vb6-source-code.html -
Began Watching Pop up alert
Can someone help me?.How to alert data in Form automatically without clicking into the datagrid.I need to pop up the message box when the medicines expired without clicking in the … -
Replied To a Post in Pop up alert
Maybe use a timer event to fire the alert.
The End.