Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008 |
| Replies: 4 Views: 7,205 variables and functions that are used throughout your program and on different forms can be stored in modules so that not to rewrite again each time the variables and functions when you need them in... |
Forum: Visual Basic 4 / 5 / 6 Feb 22nd, 2008 |
| Replies: 11 Views: 6,178 try to modify your code like:
If ComboBox1.Text = "Lastname, Firstname" Then
If RadioBtn1.Checked = True Then
Process.Start("C:\Employee... |
Forum: Visual Basic 4 / 5 / 6 Feb 1st, 2008 |
| Replies: 8 Views: 1,132 i think it is in your .update.you have less fields that you have updated.Please post your code. |
Forum: Visual Basic 4 / 5 / 6 Jan 29th, 2008 |
| Replies: 11 Views: 2,085 Hey,You're from the Philippines also eh! |
Forum: Visual Basic 4 / 5 / 6 Jan 29th, 2008 |
| Replies: 11 Views: 2,085 try to look for vbskinner ocx.It helps you tweak your design.There are many tutorials on how to do this. |
Forum: Visual Basic 4 / 5 / 6 Jan 28th, 2008 |
| Replies: 3 Views: 769 try replacing rsemployee.Update with
rsemployee.Save |
Forum: Visual Basic 4 / 5 / 6 Nov 15th, 2007 |
| Replies: 2 Views: 685 I think there is none, legally,because you know that that the visual studio is a commercial product,which means you have to buy it to use it.I think you can download visual studio in the microsoft... |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007 |
| Replies: 3 Views: 3,317 This is a guess:
(on Form_load event)
picture1.width=screen.width
picture1.height=screen.height
try it! |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007 |
| Replies: 3 Views: 969 Try this one:
Dim combotext as integer
combotext=val(Combo1.text)
Select case combotext
Case 1 |
Forum: Visual Basic 4 / 5 / 6 Oct 21st, 2007 |
| Replies: 2 Views: 1,702 if you want to use WORD or any application into your program,you can use the shell function.Try to search about this one.Maybe you get only the first line of what you are pasting because the... |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 2 Views: 806 what exactly do you want to do?
maybe this code will help you. |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 12 Views: 1,381 Try it directly:
curSalary= MsgBox (Name & "Salary would be:" & Format(curSalary, "$#,###0.00"))
Just add "#" sign if you need it. |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 12 Views: 1,381 it can also.try this:
money=Format(curSalary, "$##0.00")
curSalary= MsgBox (Name & "Salary would be:" & money) |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 12 Views: 1,381 just as simple as this:
curSalary= MsgBox (Name & "Salary would be: $" & curSalary) |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 12 Views: 1,381 You're welcome.just mark your thread as solved... |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 12 Views: 1,381 b=MsgBox(a & "Will have:") |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2007 |
| Replies: 12 Views: 1,381 a=InputBox("Enter name:")
b=MsgBox(a); |
Forum: Visual Basic 4 / 5 / 6 Oct 16th, 2007 |
| Replies: 9 Views: 8,381 adoreminder.RecordSource="INSERT INTO tblreminder(userid)(SELECT tbluser.id FROM tbluser WHERE tbluser.Name = '" & txtname.Text & "')";
if not put a duoblequote on the subquery,like this:
... |
Forum: Visual Basic 4 / 5 / 6 Oct 10th, 2007 |
| Replies: 3 Views: 711 try Between function...
instead of >=,<=... |
Forum: Visual Basic 4 / 5 / 6 Sep 22nd, 2007 |
| Replies: 3 Views: 2,008 and one more thing,you should post your question in the vb.net forum,this is for vb,4,5,6 only.there are more people that can help solve your problem there...... |
Forum: Visual Basic 4 / 5 / 6 Sep 22nd, 2007 |
| Replies: 3 Views: 2,008 use the "shell(name and location of the file)" function.
try to search about the function.... |
Forum: Visual Basic 4 / 5 / 6 Aug 24th, 2007 |
| Replies: 8 Views: 5,411 try crystalreport1.sqlquery instead of CrystalReport1.ParameterFields,
it can query the report in one line just like an ordinary sql statement in vb.
hope this helps....... |
Forum: Visual Basic 4 / 5 / 6 Aug 15th, 2007 |
| Replies: 2 Views: 739 yes it will work even if multiple users use your program,but the update of records will be quite slow if they update it all at the same time.Yes,they must have ms access to their computers if your... |