Forum: Visual Basic 4 / 5 / 6 1 Day Ago |
| Replies: 3 Views: 437 |
Forum: Visual Basic 4 / 5 / 6 2 Days Ago |
| Replies: 1 Views: 64 |
Forum: Visual Basic 4 / 5 / 6 3 Days Ago |
| Replies: 2 Views: 141 |
Forum: Visual Basic 4 / 5 / 6 3 Days Ago |
| Replies: 7 Views: 223 |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 3 Views: 91 Re: How to add row and col into MsFlexGrid1 hi,
Simply you like to add rows and columns means you can use below code otherwise explain clearly what is ur need.
Private Sub Command1_Click()
MSFlexGrid1.Rows = 4
MSFlexGrid1.Cols... |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 3 Views: 437 |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 1 Views: 110 |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 7 Views: 223 Re: Using array like pattern matching? hi,
Array can be used only by loops and that could be very if u understand wel.
Try the below coding and if you have any doubts in below codings you can ask me i will explain u in detail.
In... |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 2 Views: 173 |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 7 Views: 223 |
Forum: Visual Basic 4 / 5 / 6 9 Days Ago |
| Replies: 5 Views: 307 |
Forum: Visual Basic 4 / 5 / 6 9 Days Ago |
| Replies: 7 Views: 223 Re: Using array like pattern matching? Hi,
You can use Like Operator or StrComp Function for Pattern Matching in Array Variable or any other Variable. You can compare the Values like below Given:
1) Bring the Array Values in loop... |
Forum: MS SQL May 6th, 2008 |
| Replies: 1 Views: 278 Re: Simple query hi,
Try the Below Query:
select c.cat_name,sum(pi.item_price * pi.item_qty) as total, c.c_vat_rate * total
from category c , purchase p,puchase_item pi,country co,seller s
where p.p_id=pi.p_id and... |
Forum: MS SQL Apr 10th, 2008 |
| Replies: 1 Views: 355 Re: Urgent Help Needed hi,
Try the below Query:
UPDATE EMPLOYEE_DISTRIBUTIONS SET ED.DISTRIBUTION_GROUP = PH.DISTRIBUTION_GROUP FROM
PAYS_HISTORY PH ,ACCOUNT_HISTORY AH,
EMPLOYEE_DISTRIBUTIONS ED
WHERE... |
Forum: MS SQL Apr 10th, 2008 |
| Replies: 1 Views: 997 |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 3 Views: 267 Re: query to select a range of transactions from mutiple tables respect to date?? hi,
Try to avoid Posting the same.
Try Below query:
Select CI.name,I.ServiceID,P.packagename,P.duration,sum(p.price),P.price,I.date,I.timeIn,I.timeOut
From CustInfo CI, InDate I, PakInfo P... |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 1 Views: 150 Re: Brianstorm if it can help :) Hi,
Try the below coding:
Sub attendance()
Dim i, j As Integer
Dim inp As Integer
For i = 1 To 65536
If Sheet2.Cells(i, 1) = "" Then
i = i - 1 |
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2008 |
| Replies: 2 Views: 1,817 |
Forum: MS SQL Apr 8th, 2008 |
| Replies: 2 Views: 1,293 Re: Scalar Function hi,
First Example is wrkg well. Then why you geting the errors Check well. And then for functions owner name is not an optional one, You must define the function name with owner name to execute... |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2008 |
| Replies: 4 Views: 252 Re: calculate total hi,
CStr is used to Convert from other format to String Format then how can u add the values of the two variables. K. Anyway U can use Format function like below
MsgBox Format("32234324",... |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2008 |
| Replies: 4 Views: 635 Re: VB monthview control hi,
If the textbox control taking this format means "MM/DD/YYYY" check that textbox DataFormat property. Because if u set the DataFormat Property as "MM/DD/YYYY" then textbox takes format... |
Forum: Visual Basic 4 / 5 / 6 Mar 21st, 2008 |
| Replies: 2 Views: 699 |
Forum: Visual Basic 4 / 5 / 6 Mar 21st, 2008 |
| Replies: 1 Views: 170 Re: VB4 layers hi,
Actually Frame and picture control is said to "Container Control". Because we can place any controls within that controls. So u place the Image control in Picture Control.
Shailaja:) |
Forum: Visual Basic 4 / 5 / 6 Mar 21st, 2008 |
| Replies: 4 Views: 635 Re: VB monthview control hi,
Defaultly Monthview Control date format is "dd/mm/yyyy" then how u getting that format. If the format is like that mean no problem because vb convert the date to "dd/mm/yyy" and then... |
Forum: Visual Basic 4 / 5 / 6 Mar 14th, 2008 |
| Replies: 3 Views: 521 |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 0 Views: 488 |
Forum: VB.NET Nov 15th, 2007 |
| Replies: 3 Views: 1,707 Re: how do i save data in vb to access 07 hi,
Error 1 Name 'import' is not declared.
U have to write the namespace in the outside of the procedures that is it should be top of the coding in the form.
Error 2 'System.IO' is a namespace... |
Forum: VB.NET Nov 15th, 2007 |
| Replies: 8 Views: 1,194 Re: manipulate text files hi,
Try the below codings:
Dim con As SqlConnection = New SqlConnection("server=shailu;uid=sa;pwd=;database=pubs")
Dim cmd As SqlCommand = New SqlCommand
Dim fs As... |
Forum: VB.NET Nov 10th, 2007 |
| Replies: 8 Views: 1,194 Re: manipulate text files hi,
Use the below codings.
in my text file
01.08.2007
06:00 go to work
12:00 lunch
17:00 go home
19:00 dinner
21:00 go to bed
09:00 go to leisure centre |
Forum: VB.NET Nov 10th, 2007 |
| Replies: 1 Views: 500 |
Forum: VB.NET Nov 10th, 2007 |
| Replies: 1 Views: 527 |
Forum: VB.NET Nov 9th, 2007 |
| Replies: 3 Views: 1,707 |
Forum: VB.NET Nov 9th, 2007 |
| Replies: 2 Views: 353 Re: Plz Help me hurry! ' while form load bind the data in datagird control
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim con As SqlConnection = New... |
Forum: VB.NET Oct 25th, 2007 |
| Replies: 2 Views: 15,596 |
Forum: VB.NET Oct 25th, 2007 |
| Replies: 3 Views: 1,201 Re: login verification form hi,
Use the below coding
Sql Server Connection
Dim con As SqlConnection = New SqlConnection("server=shailu;uid=sa;pwd=;database=master")
Try
con.Open()
Dim cmd As... |
Forum: VB.NET Oct 25th, 2007 |
| Replies: 3 Views: 3,081 Re: connection string in vb.net 2003 hi,
Use below codings:
using ODBC
'Imports the ODBC Namespace
Imports System.Data.Odbc
'Declare the Connection
'Here i used the DSN
'To create DSN |
Forum: VB.NET Oct 25th, 2007 |
| Replies: 3 Views: 3,081 Re: connection string in vb.net 2003 hi,
Use below any of the codings:
using ODBC
'Imports the ODBC Namespace
Imports System.Data.Odbc
'Declare the Connection
'Here i used the DSN
'To create DSN
1. Start->Run-> ODBCAD32 |
Forum: Visual Basic 4 / 5 / 6 Oct 5th, 2007 |
| Replies: 3 Views: 1,467 Re: HELP pls, making a Login form. hi,
Follow the below instructions, if u hv any doubts u can ask me.
1) First set reference to use ADO Project Menu-> Reference-> Microsoft Activex Data Objects 2.6 Library
2) Create... |
Forum: Visual Basic 4 / 5 / 6 Aug 8th, 2007 |
| Replies: 2 Views: 967 Re: anybody can teach me how to open an image. hi,
To open or load an image to image or picture box by selecting the pictures try the below code.
'To include common dialog control to form
Project menu->Components->Microsoft Common Dialog... |
Forum: Visual Basic 4 / 5 / 6 Aug 8th, 2007 |
| Replies: 1 Views: 2,859 Re: time difference in vb6 hi,
u can find difference between date and time by using datetime function.
:-/
Try the below coding:
'To find Days
DateTime.DateDiff("d",Text1.Text,now) |