Search Results

Showing results 1 to 30 of 30
Search took 0.00 seconds.
Search: Posts Made By: kshrini ; Forum: Visual Basic 4 / 5 / 6 and child forums
Forum: Visual Basic 4 / 5 / 6 Nov 29th, 2008
Replies: 2
Views: 853
Posted By kshrini
Thanks Runion for reply,

I've developed an application in VB.net, using resource files I can get desired Chinese strings. But in VB6 application, in resource file it shows chinese strings as...
Forum: Visual Basic 4 / 5 / 6 Nov 28th, 2008
Replies: 2
Views: 853
Posted By kshrini
Hi All,

Can anyone upload a multilingual (English & Chinese) vb6 application? I've tried but in resource file it shows '???' for chinese strings.

Regards,
Shrini
Forum: Visual Basic 4 / 5 / 6 Jul 21st, 2008
Replies: 1
Views: 2,717
Posted By kshrini
Hi All,

Can anyone tell me , how to create subreport in Crystal report XI? Please give step by step procedure with example.

Thanks,
Shrini
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2008
Replies: 2
Views: 1,540
Posted By kshrini
Hi All,

I'm using MSFlexgrid in my program. I'm using Click event of it. But when I click on blank area after last row it still fires click event and focuses on a column. Is it possible to block...
Forum: Visual Basic 4 / 5 / 6 Nov 27th, 2007
Replies: 1
Views: 1,107
Posted By kshrini
Hi,

Try using Command().

In form load use

Dim v_strCmdArg as String

v_strCmdArg = Command()
Forum: Visual Basic 4 / 5 / 6 Nov 27th, 2007
Replies: 1
Views: 3,780
Posted By kshrini
Hi,

You can do this by setting the Style property to 2 - Dropdown List.

Regards,
Shrinivas
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007
Replies: 11
Views: 4,390
Posted By kshrini
Hi,
You need make your application's installable using Package & Deployment or InstallShield. Run the Setup of your application on another PC, it will work
Forum: Visual Basic 4 / 5 / 6 Oct 10th, 2007
Replies: 4
Views: 719
Posted By kshrini
Hi,

Try:

Text1.Text = DateDiff("d", DTPicker1.Value, DTPicker2.Value)

Regards,
Shrinivas
Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2007
Replies: 6
Views: 4,009
Posted By kshrini
This was the code in Form_Load that gives the error:

'Assign Report source & view
CrystalActiveXReportViewer1.ReportSource = m_CrRep

'For printing
If g_boolPrintReport Then...
Forum: Visual Basic 4 / 5 / 6 Sep 14th, 2007
Replies: 6
Views: 4,009
Posted By kshrini
Dear All,

I'm developing an application in visual basic 6.0. I'm using Crystal Report 11 developer. I've taken Report Viewer using which I can able to view the report but PrintReport method gives...
Forum: Visual Basic 4 / 5 / 6 Sep 6th, 2007
Replies: 1
Views: 3,430
Posted By kshrini
Hi All,

I want to access rptImageControl at runtime to change the image displayed in the control. Is it possible? I'm getting error "Object does not support this method". Also how to display the...
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
Hi,

In my DB Decimal places was Auto by default and the results stored are having 10 dec. places.
One more I observed - if I query the DB as

SELECT * FROM Results WHERE ...
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
Hi,

In database TestDateTime field has Auto decimal places.
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
Hi,

New problem. I'm unable to search date in database. In MS Access I've tried by creating query :

SELECT * FROM Results WHERE SettingsID=7 AND TestDateTime=39303.5539930556

This query...
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
Forum: Visual Basic 4 / 5 / 6 Aug 11th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
I got it. I have used CDbl instead of CLng.

RST("DateField") = CDbl(CDate(txtDate.Text))

Thanks for valuable information.
Forum: Visual Basic 4 / 5 / 6 Aug 10th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
It works fine. Is it possible to store Time also in the same filed i.e. Birth date & time in one database field using "Julian" style.
Thanks.
Forum: Visual Basic 4 / 5 / 6 Aug 10th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
Forum: Visual Basic 4 / 5 / 6 Aug 9th, 2007
Replies: 11
Views: 3,351
Posted By kshrini
Hi All,

I want to store Student Name & Birth date in the database. How should I store it into database so that I can retrieve it back evenif the system date format is changed(It should retrieve...
Forum: Visual Basic 4 / 5 / 6 Aug 9th, 2007
Replies: 5
Views: 3,226
Posted By kshrini
Hi,

I've done the same, backup option in seperate form. But on main form I've displayed the Datagrid which shows the contents of database and it is displayed continuously. So if I close the...
Forum: Visual Basic 4 / 5 / 6 Aug 9th, 2007
Replies: 5
Views: 3,226
Posted By kshrini
Thanks for reply. I'm taking backup of database using seperate form. On Main form I've ADODC & Datagrid. In datagrid I'm displaying contents. If I close the connection on main form then datagrid gets...
Forum: Visual Basic 4 / 5 / 6 Aug 7th, 2007
Replies: 5
Views: 3,226
Posted By kshrini
Hi All,

I've database application that uses an ADO & Datagrid control. This application has Backup button that should copy the database to another location. When I click on the button it gives me...
Forum: Visual Basic 4 / 5 / 6 Jul 5th, 2007
Replies: 23
Views: 14,114
Posted By kshrini
Hi,

You can use DateDiff function in which you can get difference in seconds multiply these seconds with 1000, you will get milliseconds.

Hope this is what you want.
Regards,
Shrinivas
Forum: Visual Basic 4 / 5 / 6 Jun 28th, 2007
Replies: 9
Views: 1,696
Posted By kshrini
Hello Veena,

Thanks for reply. I visisted the link and tried but it is clearly mentioned that design the form in 800X600 resolution. I've developed my application in 1024X768 resolution. It...
Forum: Visual Basic 4 / 5 / 6 Jun 28th, 2007
Replies: 9
Views: 1,696
Posted By kshrini
Dear AV Manoharan,

I can't tell to my users to switch to higher resolution, but my application should be such that it should work for all resolution. If you have any idea about it then please...
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2007
Replies: 9
Views: 1,696
Posted By kshrini
Hi All,

I've developed an application in VB6. All forms are designed at 1024X768 scren resolution. But when I open this application at lower or higher resolution all controls get disturbed. Any...
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2007
Replies: 4
Views: 1,746
Posted By kshrini
Hi DenisOxon,

Our R&D develops the systems, in which we require higher speed for communication. So sending data from H/W at higher speed is not constraint but receiving through serial port of PC...
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2007
Replies: 4
Views: 1,746
Posted By kshrini
Thanks for reply. But MSComm controls can go upto 256000bps. I want, if possible more than this b'cos the data I'm downloading from instrument is huge.
Forum: Visual Basic 4 / 5 / 6 Jun 26th, 2007
Replies: 1
Views: 2,460
Posted By kshrini
Hi,
You need to use SelectionFormula property of Crystal Report Control

crptCtl.SelectionFormula="{tablename.fieldname}>=#" & fromDate & "# AND {tablename.fieldname}<=#" & toDate & "#"

I have...
Forum: Visual Basic 4 / 5 / 6 Jun 26th, 2007
Replies: 4
Views: 1,746
Posted By kshrini
Is it possible to communicate with higher than 256000 bps in visual basic 6?
Showing results 1 to 30 of 30

 


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

©2003 - 2009 DaniWeb® LLC