Wrox Programmer Forums
|
Welcome to the p2p.wrox.com Forums.

You are currently viewing the section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Showing results 351 to 375 of 463
Search took 0.04 seconds.
Search: Posts Made By: madhukp
Forum: Classic ASP Basics July 26th, 2004, 08:09 AM
Replies: 5
Views: 1,306
Posted By madhukp
I suppose your problem is to give a date type...

I suppose your problem is to give a date type value as the Y-Axis scale. Not every chart tools will permit a non-numeric value at the axis.

You can try showing only the date part of the date value...
Forum: Classic ASP Professional July 26th, 2004, 12:57 AM
Replies: 1
Views: 774
Posted By madhukp
By valid, I never mean to find whether it...

By valid, I never mean to find whether it contains illegal characters etc. I need to check whether there is actually a socket with given phone number(if called will answer).
Forum: VB How-To July 26th, 2004, 12:05 AM
Replies: 9
Views: 33,825
Posted By madhukp
You may put the focus code in the form activate...

You may put the focus code in the form activate event.
Forum: Pro VB 6 July 25th, 2004, 11:58 PM
Replies: 2
Views: 1,864
Posted By madhukp
Hello Chris, Yes, I tried this and it is...

Hello Chris,

Yes, I tried this and it is working. Thanks for the reply.
Forum: VB How-To July 24th, 2004, 05:32 AM
Replies: 1
Views: 5,906
Posted By madhukp
You can make the autosize property of label true....

You can make the autosize property of label true.

But this will not fold the texts automatically. To fold the texts, you need to set wordwrap=true. But then autosize will not work.
Forum: Pro VB 6 July 23rd, 2004, 05:47 AM
Replies: 2
Views: 1,864
Posted By madhukp
Access HTML form values in a VB DLL

Hello Friends,

I need to create a VB DLL to access the values from an HTML form. I will explain it in more detail.

There is an ASP page which contains a Form. Upon submitting, it should submit...
Forum: Classic ASP Professional July 23rd, 2004, 04:46 AM
Replies: 3
Views: 1,548
Posted By madhukp
But this will give the internet address only. If...

But this will give the internet address only. If you use it at microsoft site, you will get www.microsoft.com.

I don't think this will give the machine name of the server. But why do you want to...
Forum: Classic ASP Basics July 23rd, 2004, 12:51 AM
Replies: 5
Views: 1,245
Posted By madhukp
Hello Rajanikrishna, Thanks for the...

Hello Rajanikrishna,

Thanks for the response.

But my problem is not to show a list of files. But while showing the list of HTML files, I need to show a thumb preview of the HTML page adjacent...
Forum: Classic ASP Basics July 22nd, 2004, 08:53 AM
Replies: 4
Views: 1,875
Posted By madhukp
But the function CLNG cannot convert a date value...

But the function CLNG cannot convert a date value to an integer. You will have to extract date/month/year part of the date value.

day(<date>) will extract the date part of date value....
Forum: Classic ASP Basics July 22nd, 2004, 08:39 AM
Replies: 4
Views: 1,875
Posted By madhukp
I don't know how the component wants data to be...

I don't know how the component wants data to be passed to it. But the "Date" field of the table tbl_furnace_test is storing a date value which you are passing to the function CLNG in the following...
Forum: Classic ASP Basics July 22nd, 2004, 06:06 AM
Replies: 5
Views: 1,245
Posted By madhukp
Preview of HTML pages

Hi friends,

I have a number of HTML pages in a folder at server. I need to show a list of them in an ASP page. Then the visitor will select one from them. At that time, it should generate a thump...
Forum: Classic ASP Basics July 21st, 2004, 11:43 PM
Replies: 5
Views: 755
Posted By madhukp
How I did it in a similar situation is like this....

How I did it in a similar situation is like this.

In my system, admin will make a poll live. So when a new opinion poll goes live, I deleted all IP addresses from database. Check whether this is...
Forum: Classic ASP Professional July 21st, 2004, 08:43 AM
Replies: 1
Views: 774
Posted By madhukp
Member details from Phone number

Hi friends,

I am currently doing a web site where the visitors (from UK) will enter their mobile number. First, I need to check whether this number is valid. Then I need to get the full details of...
Forum: Classic ASP Basics July 21st, 2004, 07:05 AM
Replies: 3
Views: 30,746
Posted By madhukp
You are more lucky. Snitz is now free. You can...

You are more lucky. Snitz is now free. You can visit http://forum.snitz.com/
and download scripts. This is the best one I have ever seen.
Forum: Classic ASP Basics July 21st, 2004, 06:17 AM
Replies: 3
Views: 30,746
Posted By madhukp
You can get a number of sample codes from...

You can get a number of sample codes from http://www.hotscripts.com

Forum.snitz.com gives a paid one. (With this only form at this site is done).
Forum: Classic ASP Basics July 21st, 2004, 12:07 AM
Replies: 2
Views: 1,526
Posted By madhukp
You can create new worksheets in an excel file...

You can create new worksheets in an excel file through ASP. You can treat a worksheet as a table. You can run a create table statement with connection object to create new excel sheets. Here is a...
Forum: Classic ASP Basics July 20th, 2004, 12:24 AM
Replies: 2
Views: 636
Posted By madhukp
Hello gmoney60, You can write the query as...

Hello gmoney60,

You can write the query as below.

SELECT <field_list> FROM <table> WHERE <condition> ORDER BY <sort field 1> [ASC | DESC], <sort field 2> [ASC | DESC]

<condition may be...
Forum: Classic ASP Basics July 17th, 2004, 02:54 AM
Replies: 1
Views: 2,513
Posted By madhukp
Hello bekim, You can download a number of...

Hello bekim,

You can download a number of message board codes from

http://www.hotscripts.com

Best wishes

Madhu
Forum: SQL Server 2000 July 16th, 2004, 04:50 AM
Replies: 1
Views: 1,091
Posted By madhukp
use of transaction log

Hi friends,

May I know what is the purpose and use of Transaction logs ? I have a particular situation.

I have yesterday's backup of a database. One batch updation operation which was done...
Forum: Classic ASP Basics July 14th, 2004, 04:54 AM
Replies: 13
Views: 2,376
Posted By madhukp
The above article I got from net is giving an...

The above article I got from net is giving an alternate solution. But it is not a brilliant solution. Just old wine in a brand new bottle.

Sessions are good in normal websites for keeping track of...
Forum: Classic ASP Professional July 13th, 2004, 08:57 AM
Replies: 2
Views: 1,144
Posted By madhukp
Dear Amrit, 1) Please make sure that the...

Dear Amrit,

1) Please make sure that the table account exists.

2) Date is a keyword. You cannot use that as the alias for a column / expression. Either use some other aliase such as myDate or...
Forum: Classic ASP Basics July 12th, 2004, 05:23 AM
Replies: 10
Views: 133,658
Posted By madhukp
There is a target attribute for HREF. You can set...

There is a target attribute for HREF. You can set its value as _blank to open the link in a new window. For e.g. this link will open in a new window.
<a href="http://www.microsoft.com"...
Forum: Classic ASP Basics July 10th, 2004, 04:28 AM
Replies: 13
Views: 2,376
Posted By madhukp
It is not possible to reach the above article by...

It is not possible to reach the above article by just typing the above link. How I reached it is:

I gave "scriptless web design" as the keyword and did a search. I got 3 articles out of which one...
Forum: Classic ASP Basics July 10th, 2004, 04:26 AM
Replies: 13
Views: 2,376
Posted By madhukp
I got an interesting article from net about this...

I got an interesting article from net about this problem. I thought it will help you all.

http://www.informit.com/articles/article.asp?p=22686

This solves my problem also.
Forum: Classic ASP Basics July 9th, 2004, 11:57 PM
Replies: 1
Views: 996
Posted By madhukp
This seems to be a wrong post. Please post this...

This seems to be a wrong post. Please post this issue to the forum Java / Beginning JSP.
Showing results 351 to 375 of 463

 




Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.