Forum: Visual Basic 4 / 5 / 6 Apr 18th, 2008 |
| Replies: 20 Views: 1,936 |
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008 |
| Replies: 4 Views: 6,931 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 Apr 1st, 2008 |
| Replies: 3 Views: 2,014 Crystal report is proprietary,which means it is sold separately while data report is included in your vb. |
Forum: Visual Basic 4 / 5 / 6 Mar 31st, 2008 |
| Replies: 6 Views: 5,681 Otherwise, use third party software like Installshield for this kind of stuff. |
Forum: Visual Basic 4 / 5 / 6 Mar 12th, 2008 |
| Replies: 9 Views: 2,558 try removing the Exit Sub |
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2008 |
| Replies: 9 Views: 2,558 Look at the tab index property of them at the properties window,ok? |
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2008 |
| Replies: 4 Views: 658 post it in vb.net forum.Anyway here's the code:
//open notepad...
put this in your command button event...
x = Shell("NOTEPAD.EXE", AppWinStyle.NormalFocus)
AppActivate(x)
replace... |
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2008 |
| Replies: 4 Views: 658 Are you working with vb2008?or vb6? |
Forum: Visual Basic 4 / 5 / 6 Feb 28th, 2008 |
| Replies: 2 Views: 1,215 you must place your database on the web server online and access it via ODBC.
P.S. Is your system a library system?Because I have made one like that before. |
Forum: Visual Basic 4 / 5 / 6 Feb 22nd, 2008 |
| Replies: 11 Views: 6,001 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 12th, 2008 |
| Replies: 2 Views: 520 I think that's always the problem in that package and deployment wizard in vb.Always happen to me also.Best way to do this is to use another software like Installshield.It is better and easier to... |
Forum: Visual Basic 4 / 5 / 6 Feb 11th, 2008 |
| Replies: 5 Views: 1,694 use the shell() function to run windows programs in your application. |
Forum: Visual Basic 4 / 5 / 6 Feb 8th, 2008 |
| Replies: 4 Views: 557 type this code in your command button click event:
Form2.Show |
Forum: Visual Basic 4 / 5 / 6 Feb 1st, 2008 |
| Replies: 8 Views: 1,126 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 Feb 1st, 2008 |
| Replies: 6 Views: 1,261 Or otherwise,use another software like Installshield to do this stuff. |
Forum: Visual Basic 4 / 5 / 6 Jan 29th, 2008 |
| Replies: 6 Views: 2,800 http://www.flashmove.com/board/showthread.php?t=11382 |
Forum: Visual Basic 4 / 5 / 6 Jan 29th, 2008 |
| Replies: 11 Views: 2,080 Hey,You're from the Philippines also eh! |
Forum: Visual Basic 4 / 5 / 6 Jan 29th, 2008 |
| Replies: 11 Views: 2,080 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: 765 try replacing rsemployee.Update with
rsemployee.Save |
Forum: Visual Basic 4 / 5 / 6 Jan 22nd, 2008 |
| Replies: 4 Views: 3,387 use adodc control then bind the textboxes to their desired field.so everytime you switch rows it also switches in the textboxes. |
Forum: Visual Basic 4 / 5 / 6 Dec 22nd, 2007 |
| Replies: 5 Views: 2,392 try to use a third party software like Installshield.It helps a lot when creating setup files. |
Forum: Visual Basic 4 / 5 / 6 Dec 11th, 2007 |
| Replies: 2 Views: 982 Hey dude,you can use a different software for this installation thing,try to search about Installshield.I think their latest version is 10.5 . there is this installation thing in the vb itself I have... |
Forum: Visual Basic 4 / 5 / 6 Dec 8th, 2007 |
| Replies: 3 Views: 1,795 you must set your ID to primary key,auto increment in your MS Access.The ID field will automatically increase by one everytime you add a record. |
Forum: Visual Basic 4 / 5 / 6 Dec 4th, 2007 |
| Replies: 1 Views: 1,220 I think you can post it better at vb.net forum... |
Forum: Visual Basic 4 / 5 / 6 Nov 26th, 2007 |
| Replies: 2 Views: 902 query=SELECT * FROM <query name>
WHERE <query.name> like '%textbox1.text%';
use the like condition then concat from where do you want the comparison from.(in this example its textbox1.text. |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2007 |
| Replies: 1 Views: 1,951 Please post your post to the vb.net forum.People can help you there,ok? |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2007 |
| Replies: 3 Views: 633 you must use the winsock component for this stuff.Go check it out. |
Forum: Visual Basic 4 / 5 / 6 Nov 21st, 2007 |
| Replies: 2 Views: 700 |
Forum: Visual Basic 4 / 5 / 6 Nov 15th, 2007 |
| Replies: 2 Views: 681 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 14th, 2007 |
| Replies: 4 Views: 2,982 A shell function is a function that calls another program to be executed.Like foe example shell(calc.exe),it calls the calculator to be opened.In your case,You can shell like this: shell(*path of... |
Forum: Visual Basic 4 / 5 / 6 Nov 14th, 2007 |
| Replies: 4 Views: 2,982 You can use the shell() function to open your mp3 file at 30 seconds. |
Forum: Visual Basic 4 / 5 / 6 Nov 12th, 2007 |
| Replies: 7 Views: 3,960 oh i'm sorry,it isn't supposed to be there,just delete it. |
Forum: Visual Basic 4 / 5 / 6 Nov 9th, 2007 |
| Replies: 2 Views: 1,026 I think the best way you can do is reinstall your .exe and db on the client machine the export all data to your new db.Once an exe has been creates it cannot be modified again. |
Forum: Visual Basic 4 / 5 / 6 Nov 7th, 2007 |
| Replies: 10 Views: 6,963 What do you exactly mean? |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007 |
| Replies: 6 Views: 995 try list1.refresh after the updating part,
but sometimes this does not work.
Best way,after updating,close the connection then open it again,ok? |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007 |
| Replies: 13 Views: 2,063 How come you want to be famous when you cannot spell correctly the spelling of your country? |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007 |
| Replies: 3 Views: 3,265 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: 2 Views: 554 you can use the isnumeric function like this
if IsNumeric(Amount)=True Then
error="false"
else
error="true"
end if |