Showing results 1 to 40 of 44
Search took 0.01 seconds.
Posts Made By: kshrini
Forum: Visual Basic 4 / 5 / 6 Nov 29th, 2008
Replies: 2
Views: 287
Posted By kshrini
Re: Multilingual VB6 application sample

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: 287
Posted By kshrini
Multilingual VB6 application sample

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: VB.NET Nov 28th, 2008
Replies: 0
Views: 147
Posted By kshrini
Localization of MSFlexgrid

Hi All,

I've developed an application which I've made localized (English & Chinese(simplified)) using resource files (resx). One of the form contains MSFlexgrid. I've given strings in resource files...
Forum: Visual Basic 4 / 5 / 6 Jul 21st, 2008
Replies: 0
Views: 1,003
Posted By kshrini
How to create Subreport in crystal report XI

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: MS SQL May 21st, 2008
Replies: 3
Views: 897
Posted By kshrini
Re: BETWEEN in WHERE Clause

Thanks for reply.
I did it this way:
SELECT * FROM Results
WHERE STID=111 AND (CASE WHEN (ISNUMERIC(ActualValue)=1) THEN CAST(ActualValue AS FLOAT) ELSE 0 END) NOT BETWEEN LowerLimit AND HigherLimit
Forum: MS SQL May 20th, 2008
Replies: 3
Views: 897
Posted By kshrini
BETWEEN in WHERE Clause

Hi All,

SELECT * FROM Results WHERE ActualValue NOT BETWEEN Lowerimit AND UpperLimit

In my query ActualValue is VARCHAR field. How can I get Results that are out of limit?

Shrinivas
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2008
Replies: 2
Views: 866
Posted By kshrini
MSFlexgrid Click event

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 the...
Forum: Visual Basic 4 / 5 / 6 Nov 27th, 2007
Replies: 1
Views: 758
Posted By kshrini
Re: Exe with inline parameters

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: 2,497
Posted By kshrini
Re: locking combo box in visual basic 6

Hi,

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

Regards,
Shrinivas
Forum: HTML and CSS Nov 22nd, 2007
Replies: 6
Views: 1,030
Posted By kshrini
Re: Scrolling clientele list

Thanks it works. But how to scroll multiple logos?
Forum: HTML and CSS Nov 21st, 2007
Replies: 6
Views: 1,030
Posted By kshrini
Re: Scrolling clientele list

Thanks for reply. But I want to display the Logo of clients.
Forum: HTML and CSS Nov 20th, 2007
Replies: 6
Views: 1,030
Posted By kshrini
Scrolling clientele list

Hi All,

Is it possible to have scrolling images without scripting (by using html only)?

Regards,
Shrinivas
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007
Replies: 11
Views: 2,942
Posted By kshrini
Re: Problem in Running application on another computer

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: 531
Posted By kshrini
Re: date problem

Hi,

Try:

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

Regards,
Shrinivas
Forum: MS Access and FileMaker Pro Oct 5th, 2007
Replies: 1
Views: 7,265
Posted By kshrini
Re: Maximum record limit

Hi All,

I got the answer.
MS Access table can have size :
2 gigabyte minus the space needed for the system objects - MS Access 2003
2 gigabytes - MS Access XP
1 gigabytes - MS Access 2000...
Forum: MS Access and FileMaker Pro Oct 5th, 2007
Replies: 1
Views: 7,265
Posted By kshrini
Maximum record limit

Hi All,

I'm developing an application using VB 6.0 & using MS Access 2000 as backend. How many records can I store in a table? Is there any such limit?
Forum: MS SQL Sep 26th, 2007
Replies: 0
Views: 627
Posted By kshrini
Reporting Services

Hi,

I've installed Reporting services developer. When I browse Reports folder in IIS, I get:

The request failed with HTTP status 400: Bad Request.

error. What's the reason? Can anyone help me...
Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2007
Replies: 6
Views: 2,702
Posted By kshrini
Re: PrintReport method of Crystal Report viewer 11 failed

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: 2,702
Posted By kshrini
PrintReport method of Crystal Report viewer 11 failed

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: 2,178
Posted By kshrini
How to access rptImage Control of data report runtime?

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: 2,380
Posted By kshrini
Re: How to store & retrieve dates from MS access databse

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: 2,380
Posted By kshrini
Re: How to store & retrieve dates from MS access databse

Hi,

In database TestDateTime field has Auto decimal places.
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2007
Replies: 11
Views: 2,380
Posted By kshrini
Re: How to store & retrieve dates from MS access databse

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 doesn't...
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2007
Replies: 11
Views: 2,380
Posted By kshrini
Forum: Visual Basic 4 / 5 / 6 Aug 11th, 2007
Replies: 11
Views: 2,380
Posted By kshrini
Re: How to store & retrieve dates from MS access databse

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: 2,380
Posted By kshrini
Re: How to store & retrieve dates from MS access databse

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: 2,380
Posted By kshrini
Forum: Visual Basic 4 / 5 / 6 Aug 9th, 2007
Replies: 11
Views: 2,380
Posted By kshrini
How to store & retrieve dates from MS access databse

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: 2,094
Posted By kshrini
Re: Permision denied error number 70

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: 2,094
Posted By kshrini
Re: Permision denied error number 70

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: 2,094
Posted By kshrini
Permision denied error number 70

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 an...
Forum: Network Security Jul 10th, 2007
Replies: 6
Views: 9,769
Posted By kshrini
Re: Howto set password for folder shared in LAN

Hi,
Sorry for not specifying that I've WIN XP Professional installed on each PC in network. Currently I can access any PC in LAN. But I want some folders should be password protected or have limited...
Forum: Network Security Jul 10th, 2007
Replies: 6
Views: 9,769
Posted By kshrini
Re: Howto set password for folder shared in LAN

Hi,

Thanks for reply. I've read the help on that topic but everything is related to Domain not to Workgroup. Whether it'll work for Workgroup also.
Forum: Visual Basic 4 / 5 / 6 Jul 5th, 2007
Replies: 23
Views: 10,942
Posted By kshrini
Re: Please Help me with VB Timer

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: Network Security Jul 5th, 2007
Replies: 6
Views: 9,769
Posted By kshrini
Question Howto set password for folder shared in LAN

Hi,

I've a LAN of 6 PCs. All PCs have WIN XP installed. I've workgroup for these PCs. I want to share a folder on LAN which will have password protection. Is it possible?
Forum: IT Professionals' Lounge Jun 28th, 2007
Replies: 1
Views: 4,155
Posted By kshrini
Question How to install MS SQL Server 2000 developer on WIN XP

Hi All,

I'm unable to install MS SQL Server 2000 Developer on Windows XP. Windows XP service pack 2 is installed. When I start setup, it does something for 2-3 seconds and nothing happens. When...
Forum: Visual Basic 4 / 5 / 6 Jun 28th, 2007
Replies: 9
Views: 1,232
Posted By kshrini
Question Re: Managing forms at various screen resolutions

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 doesn't...
Forum: Visual Basic 4 / 5 / 6 Jun 28th, 2007
Replies: 9
Views: 1,232
Posted By kshrini
Re: Managing forms at various screen resolutions

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,232
Posted By kshrini
Question Managing forms at various screen resolutions

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,224
Posted By kshrini
Re: Serial communication with higher speed

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 is...
Showing results 1 to 40 of 44

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 12:35 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC