158 Posted Topics

Member Avatar for devika gadhavi

Creating a DLL? Well its just a Compiled Class... Try playing with this.. Create a New ActiveX Dll Project, then on the Menu > Click Add-Ins > Add-In Manager A window will show and Double Click VB 6 Class Builder Utility To use the Class Builder, in the Menu, Click …

Member Avatar for jhai_salvador
0
145
Member Avatar for Tank1970

Use the DateDiff Function to determine the interval between 2 dates or time. [CODE=vb] Dim Bday as Date Dim dVar as string, dAge as string dAge = DateDiff("yyyy",bDay,Date) 'Shows your Age dVar = DateDiff("d",bDay,Date) 'Shows # of Days between bDay and the Date [/CODE] Try it. Hope it works for …

Member Avatar for Tank1970
0
105
Member Avatar for santosh5471

Developinga Touch Screen application like a Touch Screen POS huh, you dont need anything (Except for the touch screen hardware).., Just build it like a normal application in VB6 and Thats it.

Member Avatar for jhai_salvador
0
175
Member Avatar for Bashir ahmad
Member Avatar for AndreRet
0
438
Member Avatar for 082100

On form 1 [CODE=vb] Public Sub Command1_Click() [/CODE] On form 2 [CODE=vb] Private Sub Command1_Click() [/CODE] just change it to public.... then call [CODE=vb] Form1.Command1_Click() [/CODE]

Member Avatar for abu taher
-1
270
Member Avatar for jhai_salvador

Yoe guys, need your help.. I want to know on how to setup my client computers and the server so they can connect to sql server 2005 Developer Edition. Client computers are Windows XP. Server is Windows Xp installed with a SQL Server 2005. They are on the same Workgroup. …

Member Avatar for AndreRet
0
1K
Member Avatar for bdell11
Member Avatar for jhai_salvador

Hello!.. I am a VB6 programmer and I want to learn basic of C# Programming. So can anyone help me out?.. I just want to learn on "How will I do this in Visual C#".. this is a sample code from VB6, now, how will I do this in C#? …

Member Avatar for jhai_salvador
0
118
Member Avatar for patrickm129

if you just need to open it, you can use SHELL in vb, something like this... [CODE=vb] Shell YourVBSFile, vbMaximizedFocus [/CODE]

Member Avatar for jhai_salvador
0
302
Member Avatar for Member 785216
Member Avatar for jhai_salvador
0
91
Member Avatar for indianpresley

hello... Try visiting my website and download some sample of my projects their, you might learn something there... I think i have some ado sample without sql...

Member Avatar for vb5prgrmr
0
177
Member Avatar for dannyo
Member Avatar for ibnui

Try searching BASS dll in google. You can use this to record / play music.

Member Avatar for jhai_salvador
0
43
Member Avatar for RanjithKumarMCA

Yeahh.. they are right.. but if your a totally noob in software development / game development, you can just google it or you can visit my website for some samples.

Member Avatar for jhai_salvador
0
82
Member Avatar for pardeep3dec

Well, first you need a Crystal Report. Their are different version of Crystal Report (Just search it on the internet). If you want a free one, I think you can search the older version of it version 4.5 i guess, This was release as an Add In in Visual Basic …

Member Avatar for jhai_salvador
0
67
Member Avatar for diegostix
Member Avatar for santosh5471

You need to get serial no of a specific drive right?... Here.. Add this reference "Microsoft Scripting Runtime" Then, to get Serial No of the drive, add this Function. [CODE=vb] Public Function GetDriveSerial(xDrive as string) as string Dim FSO As New FileSystemObject If FSO.GetDrive(xDrive).IsReady = True then GetDriveSerial = FSO.GetDrive(xDrive).SerialNumber …

Member Avatar for santosh5471
0
565
Member Avatar for patishere

[QUOTE=patishere;1235461]How to connect username and password in a database for more secure login?[/QUOTE] yeah.. your lucky.. hehe.. maybe you can use encryption method in your application for it if you want it secured.

Member Avatar for kinwang2009
0
528
Member Avatar for xirosen
Member Avatar for jhai_salvador
0
102
Member Avatar for VINOD_2553

Yeahh... post that project here.. [URL="http://www.rentacoder.com"]http://www.rentacoder.com[/URL] then look for me so i can participate in the bid. hehe

Member Avatar for jhai_salvador
0
643
Member Avatar for navaidstech
Member Avatar for yakshasa
Member Avatar for yakshasa
0
117
Member Avatar for goumang

if your new to VB6, then visit my website, there are lots of sample about database management that I created. You might learn something there. Just download the project you like, then learn from it. [URL="http://www.silentproject.tk"]SilentProjectâ„¢ Softwares[/URL]

Member Avatar for jhai_salvador
0
113
Member Avatar for kigams

Im a freelance programmer, maybe i can help you, as long as you pay through Western Union.. :) haha.. if your interested, PM me, or visit my website... :)

Member Avatar for jhai_salvador
0
172
Member Avatar for cabsjonel

Ok here is an example.. [CODE=vb]Private Sub ListView1_Click() Text1.Text = ListView1.SelectedItem.Text End Sub [/CODE] This is on ListView1_Click event, this will Display the selected text of listview in the Textbox.

Member Avatar for jhai_salvador
0
106
Member Avatar for jhai_salvador

Hello!.. Its me again.. I Just want to know that, is it possible to Disable a user from copying a file from computer to another device like USB Drive? I want to Disable Copying of files by; Disabling CTRL+C, Removing Copy from Right Click or Move (when dragging the file …

Member Avatar for jhai_salvador
0
135
Member Avatar for Melechesh
Member Avatar for jhai_salvador
0
82
Member Avatar for Thaddeus_03

if you are going to connect it from a remote server. Here is the connection string.. "Driver={MySQL ODBC 5.1 Driver};Server=servername;Port=3306;Database=database;User=username; Password=password;Option=3;" you must also have MySQL connector driver.. just google it then download the driver...

Member Avatar for jhai_salvador
0
72
Member Avatar for Sonic42

Here.. try this.. [CODE=vb] Private Declare Function InternetGetConnectedStateEx Lib "wininet.dll" (ByRef lpdwFlags As Long, ByVal lpszConnectionName As String, ByVal dwNameLen As Integer, ByVal dwReserved As Long) As Long Dim sConnType As String * 255 Sub CheckNetCon() Dim Ret As Long Ret = InternetGetConnectedStateEx(Ret, sConnType, 254, 0) If Ret = 1 …

Member Avatar for dwel
0
2K
Member Avatar for leverin4

See DataFormat of the TextBox in Property Window, maybe there is something useful there.. Goodluck..

Member Avatar for jhai_salvador
0
189
Member Avatar for ogundile

[QUOTE=ogundile;1208498] Note: Divide yourselves into groups [/QUOTE] Your funny... lol.. if you are just starting database management in visual basic then visit my website @ [URL="http://silentproject.tk"]http://silentproject.tk[/URL] Download some of my projects there and start learning..

Member Avatar for abu taher
0
137
Member Avatar for jemz

[CODE] Copy your exe and Database in one folder change the database path in your code and use; App.Path & "\project.mdb" [/CODE]

Member Avatar for jemz
0
228
Member Avatar for prabooh

Oracle9i database... Goto my website at [URL="http://www.silentproject.tk"]http://www.silentproject.tk[/URL] and browse to My Project > 2nd Year 2nd Semester download one of my project and you can see how did i connect it to oracle database...

Member Avatar for jhai_salvador
0
86
Member Avatar for joefaries

[CODE=vb] Private Sub Form_Load() 'Add ITems in the List List1.AddItem "One" List1.AddItem "Two" List1.AddItem "Three" List1.AddItem "Four" List1.AddItem "Five" List1.AddItem "Six" List1.AddItem "Seven" List1.AddItem "Eight" List1.AddItem "Nine" List1.AddItem "Ten" End Sub Private Sub List1_Click() MsgBox "youve selected: " & List1.List(List1.ListIndex) & vbCrLf & "with an Item Index of: " & …

Member Avatar for kinwang2009
0
99
Member Avatar for mjltech

[QUOTE=mjltech;1173373][CODE]Private Sub btnBill_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnBill.Click item = txtItem.Text duration = txtduration.Text Dim fmtstr As String = "{0, -15} {1, 17:c2}" '----------------------------------------------------------------------------------------------- lstResult2.Items.Add(" Receipt from Eddie's Equipment Rental") Select Case item.ToUpper & duration.ToUpper Case "1", "h" lstResult2.Items.Add(String.Format(fmtstr, "Rug cleaner", 16)) Case "2", "h" lstResult2.Items.Add(String.Format(fmtstr, …

Member Avatar for jeffreyk16
0
103
Member Avatar for Simple

Downlowd a SETUP FACTORY from INDIGO ROSE... just google it... the use it to created a setup for your visual basic project..

Member Avatar for kinwang2009
1
911
Member Avatar for needHelpVBA
Member Avatar for Ryukendo

[QUOTE=Ryukendo;1168833]I need to know about Add Edit Delete on VB v6. code form and desin sample as a Company record or class student record! Visual Basic v6.[/QUOTE] If you are new to visual basic or you want to learn simple database management in vb6. You can visit my website and …

Member Avatar for vb5prgrmr
0
68
Member Avatar for tikpat

Here you can use this connection.. [CODE=vb] Public cn as New ADODB.Connection Public Sub Con(DBPath as String, optional DBPass as string) cn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & DBPath & ";Jet OLEDB:Database Password=" & DBPass & ";" end Sub [/CODE]

Member Avatar for jhai_salvador
0
185
Member Avatar for kavya_nayak7

Heres a sample... I have created 3 buttons for my toolbar... The event is Toolbar1_ButtonClick... [CODE=vb] Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button) Select Case Button.Index Case 1 'This is the first button 'Your code goes here.... 'Do somthing here... ' Case 2 'This is my second button 'Your code goes …

Member Avatar for jhai_salvador
0
73
Member Avatar for Sarama2030

Hello... i have created this thing... but the code was lost.. hehe... You can Try This thing that i did to make a cyber cafe software: Just visuallize it... hehe.. [CODE] You will need: Use Winsock on Client and in your Server Form. Separate database for your client - Client …

Member Avatar for kinwang2009
0
102
Member Avatar for regalla

Use ADODB.Connection Use ADODB.Recordset [CODE=vb] rc.AddNew 'Where rc ADODB RecordSet [/CODE]

Member Avatar for jhai_salvador
0
104
Member Avatar for jhai_salvador

Hello!... Can anyone help me on this project? I already have created a simple program called Website manager and ive already release it on my website [URL="http://www.silentproject.tk"]http://www.silentproject.tk[/URL] i want to improve it by adding an Auto login feature for websites like yahoo mail..etc.. does anyone of you know how to …

Member Avatar for jhai_salvador
0
277
Member Avatar for roxxy_boiz14

try browsing my website... you can find some downloadable vb6 projects and apps there made by me... [URL="http://www.silentproject.tk"]http://www.silentproject.tk[/URL] PS: Some of my files and projects there are maybe outdated.. LOL!...

Member Avatar for jhai_salvador
0
283
Member Avatar for titansrealm

try and browse my website [URL="http://www.silentproject.tk"]http://www.silentproject.tk[/URL] My Projects > 1st Year - 2nd Semister download the Student Grades project.. i hope it will help you...

Member Avatar for jhai_salvador
0
90
Member Avatar for mpande
Member Avatar for mpande
1
694
Member Avatar for jhai_salvador

hey guys.... does anyone here knows how to disable and enable CTRL, Alt, windows keys, or Tab key in keyboard?... because im going to use it in my time cafe client project in vb...

Member Avatar for omoridi
0
1K
Member Avatar for abu taher

hmmm... data report with condition?... try browsing to my site > Downloads > AE4AA Projects > Computer Shop... [URL="www.silentproject.cjb.net"]www.silentproject.cjb.net[/URL] ..That project my solve your problem... ..its free.. USE IT FOR YOUR PRIVATE STUDY... ..but any Donation would be apreciate... hehehe.. ..HOPE YOU WILL LOOK FOR IT... THANKS..

Member Avatar for jhai_salvador
0
127
Member Avatar for Ricky80

hmmmm.... Why dont you create a Queery in the database then connect that quiry in the CR Then use SQL command in deleting and recreating that quiry in your vb app. In that way you can customize (using the sql command in creating a query view) what will be shown …

Member Avatar for jhai_salvador
0
161
Member Avatar for deep24_kamal23

why dont you just use a Setup Maker Program or Setup Factory by Indigo Rose, it can generate serial key or password for the installation software...

Member Avatar for vb5prgrmr
0
168

The End.