Search Results

Showing results 1 to 40 of 62
Search took 0.10 seconds.
Search: Posts Made By: kehar ; Forum: Visual Basic 4 / 5 / 6 and child forums
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2009
Replies: 3
Views: 912
Posted By kehar
Hi, I have completed my software but I would like to create Keygen to it so that the software should ask for Serial No., 15 days after it is installed.

Pl help me

(Kehar)
Forum: Visual Basic 4 / 5 / 6 Aug 10th, 2009
Replies: 3
Views: 457
Posted By kehar
rs. open " Select * from <table name> where name ='" & list1.text & "'",cn, adopenstatic, adlockoptimistic

and suppose the list box items are
-1. Mohan
2. Sohan
3. Rohan
When I click on...
Forum: Visual Basic 4 / 5 / 6 Jul 26th, 2009
Replies: 3
Views: 457
Posted By kehar
Hello, My problem is that when i try to see other datails of the person names selected in the list box, i can see the details of the firstname (first item) of the list box only and not the second...
Forum: Visual Basic 4 / 5 / 6 Jul 8th, 2009
Replies: 6
Views: 501
Posted By kehar
It passes the statement thinking that dt.text is not null because of forwardslash in the text.
Pl. suggest any other way

(keshar)
Forum: Visual Basic 4 / 5 / 6 Jul 7th, 2009
Replies: 6
Views: 501
Posted By kehar
Hi everybody,
I have used one textbox to accept date say (dt.text) in which during form load two forwardslash will appear to accept DD/MM/YYYY type date.
Now when I click a Save command box and if...
Forum: Visual Basic 4 / 5 / 6 Jul 6th, 2009
Replies: 3
Views: 777
Posted By kehar
Yes, the moment the text box get focus an underscore is coming in it though it is responding the date. But how to prevent the underscore from being appeared ?

(Kehar)
Forum: Visual Basic 4 / 5 / 6 Jul 4th, 2009
Replies: 3
Views: 777
Posted By kehar
Hi,
I would like to use textbox to accept date in VB 6 instead of using dtpicker. The text box should contain oblique sign like ( / / ) to enter dd/MM/YYYY type date during form load.
I...
Forum: Visual Basic 4 / 5 / 6 Jul 3rd, 2009
Replies: 4
Views: 555
Posted By kehar
Add MS Mask Edit control in your form and under its Property go to
mask and enter ##/##/#### then
run the programme and give focus. you can enter your own date without using dtpicker.
Forum: Visual Basic 4 / 5 / 6 Jun 11th, 2009
Replies: 4
Views: 454
Posted By kehar
Hi,
Oh sorry. I am using Access as backend and VB6 as frontend.
and using ADO connection.
Pl write comprehensive code for the problem.

(Kehar)
Forum: Visual Basic 4 / 5 / 6 Jun 7th, 2009
Replies: 4
Views: 454
Posted By kehar
Hi,
I have completed one project but I would like that on every 1st April when I click copytable command botton from VB6, a copy of the table with blank records under the same database should be...
Forum: Visual Basic 4 / 5 / 6 Apr 13th, 2009
Replies: 8
Views: 981
Posted By kehar
My entire code is as under :

Dim cn As New ADODB.Connection ' in General declaration


Private Sub cmdaddnew_Click() ' This is working fine
Adodc1.Recordset.AddNew
Adodc1.Recordset!ono =...
Forum: Visual Basic 4 / 5 / 6 Apr 13th, 2009
Replies: 8
Views: 981
Posted By kehar
adodc1.recordsource = "Select name from emp where name='" & Text2.Text & "'"
Adodc1.Refresh
text1.text =adodc1.recordset.Fields(0)

What does Fields(0) stand for in above code ? Does it mean I...
Forum: Visual Basic 4 / 5 / 6 Apr 13th, 2009
Replies: 8
Views: 981
Posted By kehar
Hi
Although I have written the connection string in Form load view.
and even the ADODC has been connected to the database using DSN in its property window.
Earlier when I did not use ADODC control...
Forum: Visual Basic 4 / 5 / 6 Apr 12th, 2009
Replies: 8
Views: 981
Posted By kehar
Hi everbody,
I have used one ADODC control in my VB6 prog with SQL 2000 as backend. I have completed the connection of ADODC using UDL file and it's working fine
But when i write the following...
Forum: Visual Basic 4 / 5 / 6 Apr 11th, 2009
Replies: 6
Views: 1,196
Posted By kehar
I am using code like this
Under General tab
Dim cn as new ADODB. Connection
Dim rs as new ADODB. recordset
code to Select database is
rs.open "Select * from <table name>",cn,adopenstatic,...
Forum: Visual Basic 4 / 5 / 6 Apr 11th, 2009
Replies: 6
Views: 1,196
Posted By kehar
Hi,
Presently I am using Access as backend.
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2009
Replies: 6
Views: 1,196
Posted By kehar
Hi,
Pl tell me the code to copy the existing table of Access or SQL and give the new file name to it from VB6 at Run time without changing the field name.

(k. S)
Forum: Visual Basic 4 / 5 / 6 Apr 9th, 2009
Replies: 4
Views: 795
Posted By kehar
Hi, I would like to install SQL Server 2000 Enterprise Edition in my PC having Vista OS. Pl explain me the step by step process to
install SQL as both Server & Client.

(K. S)
Forum: Visual Basic 4 / 5 / 6 Mar 21st, 2009
Replies: 1
Views: 1,193
Posted By kehar
Hi,
I would like to replace the ACCESS with SQL Server 2000 enterprise edition. But I have the following problems:
1. While installing SQL should I install as Server or Client.
2. How to connect...
Forum: Visual Basic 4 / 5 / 6 Jan 21st, 2009
Replies: 4
Views: 750
Posted By kehar
Hi
In vb6 I would like to display the contents of long message
in more than one line.
When I use the following command the entire message
display in single line only thereby making the message...
Forum: Visual Basic 4 / 5 / 6 Jul 25th, 2008
Replies: 2
Views: 2,715
Posted By kehar
Hi,
I would like to pass on a parameter from VB6 for the date.value from datepicker.
Pl help me how to convert date.value into string as the parameter I have created in
Crystal Report is string...
Forum: Visual Basic 4 / 5 / 6 Jun 13th, 2008
Replies: 1
Views: 794
Posted By kehar
Hi friends,
Pl tell me the method to use Num2Str with a simple example. I am using VB6 and
Crystal report 8.5

(K.S.)
Forum: Visual Basic 4 / 5 / 6 Jun 7th, 2008
Replies: 7
Views: 1,104
Posted By kehar
I myself got the idea of converting figures to words in Crystal report.
Under formula bar of Crystal report type "ToWord (field name , 0)" this field name is the
database field saved as currency....
Forum: Visual Basic 4 / 5 / 6 May 25th, 2008
Replies: 2
Views: 545
Posted By kehar
I know that but the problem is that under first colum first row and second colum first row of table Cheque no. and bill no is recorded respectively but for another bill no i.e under second
row of...
Forum: Visual Basic 4 / 5 / 6 May 23rd, 2008
Replies: 7
Views: 1,104
Posted By kehar
Hi,

I am using Crystal Report 8.5 to prepare my Report and I want to convert the figures under
currency to be converted automatically while printing the report. e.g If I enter 234 in my field ...
Forum: Visual Basic 4 / 5 / 6 May 23rd, 2008
Replies: 2
Views: 545
Posted By kehar
Hi,
with the help of VB 6 and Access I would like to make a software to enter Cheque No and its related bill no. I mean a Cheque could be the payment of number of bills of a firm which varies from...
Forum: Visual Basic 4 / 5 / 6 Mar 14th, 2008
Replies: 2
Views: 2,794
Posted By kehar
Hi,
I have completed my project in VB 6 and Access and Crystal Report 8.5 now I would like to
make setup file . So ple help me which software should I use and where I can get
its free copy. I...
Forum: Visual Basic 4 / 5 / 6 Mar 14th, 2008
Replies: 4
Views: 615
Posted By kehar
Hi,
Ok I made four different copies but how to give command to print all the four copies
from one print command. One print comand cannot be use for four different report file.
Give suggestion in...
Forum: Visual Basic 4 / 5 / 6 Mar 11th, 2008
Replies: 4
Views: 615
Posted By kehar
ok. but what is hard core. it is new concept for me. pl mention in detail.
(kehar)
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2008
Replies: 4
Views: 615
Posted By kehar
Hi,
I have prepared one report in Crystal Report 8.5 and the front end is VB 6. But the problem when I assigned number of copies to print as 4, in the title portion of the first copy it should show...
Forum: Visual Basic 4 / 5 / 6 Jan 10th, 2008
Replies: 5
Views: 1,613
Posted By kehar
Hi,
I still could not understand. Where to type arp-a in which application. VB6 or what?
Shall be grateful if you give me the step -by step process.
Thanks
Shall share the code when I solve this...
Forum: Visual Basic 4 / 5 / 6 Jan 9th, 2008
Replies: 5
Views: 1,613
Posted By kehar
Ok. but what is mac address. Should I pay for this and where to contact. Pl give in detail.
Forum: Visual Basic 4 / 5 / 6 Jan 8th, 2008
Replies: 5
Views: 1,613
Posted By kehar
Hi,
I have almost completed my project but I want to let the software on trial period for one month from the date of installation. After which it should cease to open MDI form unless I give...
Forum: Visual Basic 4 / 5 / 6 Dec 24th, 2007
Replies: 5
Views: 2,435
Posted By kehar
Will you pl help me where can I find its freeware download ?
Forum: Visual Basic 4 / 5 / 6 Dec 22nd, 2007
Replies: 5
Views: 2,435
Posted By kehar
Hi,
I have completed my project in all respect but I would like to include all
table and report of Access and Crystal Report respectively in my VB 6 project SETUP FILE.
So. pl help me to include...
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2007
Replies: 3
Views: 2,241
Posted By kehar
Hi,

My database in Access contains record since 2005 and it is not required for frequent use unless the Audit ask for.
So I would like to take the backup of the data through VB6 by writing code...
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2007
Replies: 2
Views: 908
Posted By kehar
Thanks, it work fine. Apart from above pl suggest the technique to shift the long line inserted below a field to seperate each record when the text of a field is wrap up by selecting CAN GROW from...
Forum: Visual Basic 4 / 5 / 6 Nov 26th, 2007
Replies: 2
Views: 908
Posted By kehar
Hi,
I have entered names of student under field NAME in Access, the names are like;-
Mohan Chaturvedi,
Deepa Agarwal,
Mona Agarwal,
Sohan Chaturvehi
etc
With the help of VB6 and Crystal...
Forum: Visual Basic 4 / 5 / 6 Nov 26th, 2007
Replies: 3
Views: 806
Posted By kehar
Pl. mention the exact site from where I can download the said software. Is this freeware or shareware?

(Kehar)
Forum: Visual Basic 4 / 5 / 6 Nov 20th, 2007
Replies: 3
Views: 806
Posted By kehar
Hi,
I have downloaded data recovery software to recover my deleted data from Hard disk from www.softperfect.com but when I try to open the recoverd file both by double click method and from file...
Showing results 1 to 40 of 62

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC