Technology and Online Community For All
welcome JOIN US NOW AND FEEL THE DIFFERENCE headbang
Technology and Online Community For All
welcome JOIN US NOW AND FEEL THE DIFFERENCE headbang

Technology and Online Community For All

What You See Is What You Get
 
HomeGalleryLatest imagesSearchRegisterLog in
May 2024
SunMonTueWedThuFriSat
   1234
567891011
12131415161718
19202122232425
262728293031 
CalendarCalendar
Latest topics
» Uniblue PowerSuite
Visual Basic 6/VB.NET Icon_minitimeMon Apr 09, 2012 7:27 pm by BlitzKrieG

» Ova Drive Hider
Visual Basic 6/VB.NET Icon_minitimeFri Mar 02, 2012 8:48 am by CodeWarrior

» Ova Folder Security
Visual Basic 6/VB.NET Icon_minitimeMon Feb 27, 2012 5:06 pm by CodeWarrior

» SPSBox
Visual Basic 6/VB.NET Icon_minitimeSun Feb 26, 2012 4:24 am by CodeWarrior

» Norton [all here]
Visual Basic 6/VB.NET Icon_minitimeThu Feb 23, 2012 8:01 am by BlitzKrieG

» OvaSystemSolution CVRS System
Visual Basic 6/VB.NET Icon_minitimeSat Feb 18, 2012 6:06 am by CodeWarrior

» Avril Lavigne - Smile
Visual Basic 6/VB.NET Icon_minitimeSat Jan 28, 2012 7:14 am by ^PiNKHeRMioNe

» Hot N Cold- Katy Perry
Visual Basic 6/VB.NET Icon_minitimeSat Jan 28, 2012 7:11 am by ^PiNKHeRMioNe

» America's next top model (All Stars) Lisa D'Amato
Visual Basic 6/VB.NET Icon_minitimeSat Jan 28, 2012 6:55 am by ^PiNKHeRMioNe

Search
 
 

Display results as :
 
Rechercher Advanced Search
Who is online?
In total there are 2 users online :: 0 Registered, 0 Hidden and 2 Guests :: 1 Bot

None

Most users ever online was 265 on Wed Sep 22, 2021 9:02 pm
Top posters
trekyboy
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
BlitzKrieG
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
ZNABiRA
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
EDI`STEALTH
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
*B o R g Z
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
SHY
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
CodeWarrior
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
^PiNKHeRMioNe
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
RaiJin
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
chaotic`
Visual Basic 6/VB.NET Vote_lcap2Visual Basic 6/VB.NET Voting_bar2Visual Basic 6/VB.NET Vote_rcap2 
Statistics
We have 239 registered users
The newest registered user is Hellraiser666

Our users have posted a total of 948 messages in 662 subjects

 Topics 
20120102

Sample you have an database with field name of Total

For Database get value of total sum for the cell
The "TotalAmount" is my Database Field

Code:

Private Sub btnTotal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTotal.Click

        Try
            Dim totalSum As Integer

            For i As Integer...
 
by CodeWarrior - Comments: 0 - Views: 923
20111228

Basic TUT for Login Website and Post Using your Own Application

1. Open Your VBNet 2005 or 2008 or 2010 gamit ko 2010
2. Create New Project
3. Select Window Form Application
3. You Need to Add 3 TextBox, 2 Buttons and 1 Browser

Watch this Video



Code:
 
by CodeWarrior - Comments: 0 - Views: 401
20111228

Simple tutorial for connecting vb6 to microsoft Access 2007 Database

1. First create database using miscrosoft access 2007 and name it wat you want.

2. In the microsoft Access 2007 Creat table name it wat you want.

3. In the table first field create Name in second field create LastName third field create
MaternalName. then save

4. Open your vb6 create new project and add in the form Label 1 to 3 or Text1 to 3

5. Then open components by pressing Ctrl+T in components list select the
Microsoft ADO Data Control 6.0 (SP6)(OLEDB) then Click...
 
by CodeWarrior - Comments: 0 - Views: 389
20111228

Creat a New Project in VB6

Put 1 Text at 1 Command

Double Click the Command Button and Paste This Code
Form MessageBox using Command Button Click

Code:

Option Explicit

Private Sub Command1_Click()
Dim ans As String
If Text1.Text = "" Then
  Exit Sub
End If
If Text1.Text = 1 Then
ans = MsgBox("Exit Application?", vbInformation + vbYesNo)
If ans = vbYes Then
 
by CodeWarrior - Comments: 0 - Views: 551
20111228

Tutorial For Sub Form

First Set New Project then you need 2 Form

In Form1 and Form2 you need Two TextBox and 5 Command Button

In Form1 Paste this Sample Code

Form1
Code:

Option Explicit

Private Sub Command1_Click()
Form2.Text1 = Text1.Text
End Sub

Private Sub Command2_Click()
Form2.Text2 = Text1.Text
End Sub

Private Sub Command3_Click()
Form2.Show
End...
 
by CodeWarrior - Comments: 0 - Views: 402
20111228

This is a simple Tutorial for TabStrip in VB6 Code

Open New Project using VB6 Language
Then you must need
1. One TabStrip
2. One Texbox for the name of tab you want to add
3. Two Command Button for Adding and Removing Tab

First Press Crtl + T to Open Components
Then Add the Components Microsoft Windows Common Controls 6.0 (SP6) then Click Ok
Now you have the Microsoft Windows Common Controls 6.0 on your Project

Double Click the Command1 Button and Put This Code
Code:
 
by CodeWarrior - Comments: 0 - Views: 419
20111228

This is the sample RSC of my Basic Talking Alar Clock

Ok First Search kayo nito then Install mo.. ==> spchapi.exe then pag na install mo na..
Open mo ang VB6 Then Creat an new Project ka... then Import mo sa Reference ang
Microsoft Speech Object Library then pag Ok na sa Form na tayo..

1. Need nyo ng Two Label Label1 and Label2. Ang Label1 for 12 Hrs Format Time
ang Label2 For 24 Hrs Format time...
2. Need nyo ng Three Text Box para sa Set Alarm at Nick at Message na Gusto mo sa Talking Alarm Clock nyo..
3. One CheckBox
4. and One Timer
 
by CodeWarrior - Comments: 0 - Views: 433
20111228

Ok First Search kayo nito if wala pa kayo then Install nyo.. ==> spchapi.exe then pag na install mo na..
Open mo ang VB6 Then Creat an new Project ka... then Import mo sa Reference ang Microsoft Speech
Object Library then pag Ok na sa Form na tayo..

1. First put 1 Button. the first button name is Digit. then set the index property of 1
then Copy and Past until Index 9.
2. You Need 7 Button for Clear, Point, Minus, Plus, Times, Divide and Equal

3. Put 1 Label and the label name is Display

Now lets Start for the Code

Copy and Paste...
 
by CodeWarrior - Comments: 0 - Views: 400
 Back to top 
Users browsing this forum: None
Moderators:Moderators, Global Moderators, Code Masters
Permissions in this forum:You cannot post new topics in this forum
You cannot reply to topics in this forum
-
Sort by:  
Jump to:  
New posts New posts
New posts [ Popular ] New posts [ Popular ]
New posts [ Locked ] New posts [ Locked ]
No new posts No new posts
No new posts [ Popular ] No new posts [ Popular ]
No new posts [ Locked ] No new posts [ Locked ]
Announcement Announcement
Global announcement Global announcement
Sticky Sticky