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 276 to 300 of 463
Search took 0.03 seconds.
Search: Posts Made By: madhukp
Forum: SQL Server 2000 September 9th, 2004, 08:45 AM
Replies: 16
Views: 2,683
Posted By madhukp
Thanks for the responses. Performance is of...

Thanks for the responses.

Performance is of ultimate interest to me. So I will explicitly write all the fields. The problem is that the particular table happens to have 56 fields and I need to...
Forum: SQL Server 2000 September 9th, 2004, 02:41 AM
Replies: 16
Views: 2,683
Posted By madhukp
select query : * vs. Field list

Hi all,

Suppose, In a query, I need to fetch all the fields of a table. I am using SQL server 2000. Then which of the following query is better ?

1) SELECT * FROM <TABLE_NAME> WHERE <CONDITION>...
Forum: VB How-To September 8th, 2004, 11:34 PM
Replies: 1
Views: 3,355
Posted By madhukp
Thanks to the reply for another post...

Thanks to the reply for another post (http://p2p.wrox.com/topic.asp?TOPIC_ID=18846), I could do this.

dim objForm as Form
dim bForlLoaded as Boolean
bFormLoaded=false
for each objForm in...
Forum: VB How-To September 8th, 2004, 11:27 PM
Replies: 2
Views: 1,360
Posted By madhukp
Dear Phil, Thanks for the suggestion. It is...

Dear Phil,

Thanks for the suggestion. It is working.

For newbies, let me post the code.

dim objForm as Form
for each objForm in vb.Forms
msgbox objForm.Name
next
Forum: Classic ASP Professional September 8th, 2004, 02:43 AM
Replies: 2
Views: 1,016
Posted By madhukp
Are they using Exchange server ?

Are they using Exchange server ?
Forum: VB How-To September 8th, 2004, 02:05 AM
Replies: 2
Views: 1,360
Posted By madhukp
List of open forms

Context : vb 6.0

How can I get a list of all loaded forms of my VB application ?
Forum: VB How-To September 8th, 2004, 02:03 AM
Replies: 1
Views: 3,355
Posted By madhukp
Check whether a form is already loaded

Context : VB 6.0

May I know how can I check whether a form is already open ?

This is the requirement.

If it already loaded and not visible, I need to just call show and its zindex=0....
Forum: Pro VB 6 September 6th, 2004, 11:27 PM
Replies: 2
Views: 1,026
Posted By madhukp
Are you using VB 6.0 ? In vb 6.0, I am doing...

Are you using VB 6.0 ?

In vb 6.0, I am doing it in the following way.

I will include one column of width 10 and put the primary key of the record in that column. This column won't be noticed...
Forum: Classic ASP Basics September 6th, 2004, 05:08 AM
Replies: 1
Views: 1,526
Posted By madhukp
Hello Arvind, This forum is to discuss...

Hello Arvind,

This forum is to discuss issues in Classic ASP. Please delete this post and repost it in one of the forums at below link.

http://p2p.wrox.com/java-3
Forum: Classic ASP Basics September 5th, 2004, 11:33 PM
Replies: 3
Views: 1,617
Posted By madhukp
You can use the following piece of script at the...

You can use the following piece of script at the top of every page to prevent it from going to cache.

<%
Response.AddHeader "Pragma","no-cache"
Response.AddHeader "cache-control","no-cache,must...
Forum: Classic ASP Basics September 4th, 2004, 05:03 AM
Replies: 3
Views: 1,065
Posted By madhukp
I didn't understand your full requirements. But...

I didn't understand your full requirements. But let me make the following comment from what all I understood.

If the mail protocol is POP(PostOffice Protocol), then there are components which can...
Forum: Classic ASP Basics September 3rd, 2004, 11:49 PM
Replies: 4
Views: 1,452
Posted By madhukp
You could have better put this question in JS...

You could have better put this question in JS forum. Anyway, here is the JS code.

window.open(pageURL,"<window name>","width=400,height=400");
Forum: Pro VB 6 September 3rd, 2004, 06:04 AM
Replies: 2
Views: 2,511
Posted By madhukp
You can use the following function. Private...

You can use the following function.

Private Function funcGetPrivateProfileString(ByVal sKey As String, ByVal sFile As String)
Open sFile For Input As #100
Dim sLine As String
Dim strKey As...
Forum: Classic ASP Professional September 3rd, 2004, 01:26 AM
Replies: 11
Views: 6,173
Posted By madhukp
Yes. This is correct. But the locationbar will...

Yes. This is correct. But the locationbar will not change. This means, even after the page is loaded, the location bar will contain the address

http://www.yoursite.com/?id=1.
Forum: Classic ASP Basics September 2nd, 2004, 11:44 PM
Replies: 9
Views: 1,899
Posted By madhukp
But, I cannot agree with Hal's idea of using...

But, I cannot agree with Hal's idea of using session for these purposes. What if session or cookie is not enebled on the browser ?

If there are 25 such forms in a site, this means you should need...
Forum: Classic ASP Professional September 2nd, 2004, 11:34 PM
Replies: 11
Views: 6,173
Posted By madhukp
This will work for all sub-folders also.

This will work for all sub-folders also.
Forum: VB How-To September 2nd, 2004, 05:34 AM
Replies: 2
Views: 705
Posted By madhukp
I assume following things. You are creating...

I assume following things.

You are creating a file of your own extension (.xxx) through your programme.

When people exploring files and clicks on that type of file (.xxx), it should get opened...
Forum: Classic ASP Basics September 1st, 2004, 11:30 PM
Replies: 9
Views: 1,899
Posted By madhukp
No, you should not write anything to the browser....

No, you should not write anything to the browser. The code that he has shown is not writing anything to browser.

Otherwise, buffer should be set. This is not a best nethod.

With a properly...
Forum: Pro VB 6 September 1st, 2004, 08:51 AM
Replies: 4
Views: 2,147
Posted By madhukp
Just from this information, it is difficult to...

Just from this information, it is difficult to say anything.
I can make only some guesses.

Is it a GPF (General protection failure) error ? If yes, it may be caused by one or more of the...
Forum: ASP.NET 1.1 September 1st, 2004, 04:55 AM
Replies: 0
Views: 1,006
Posted By madhukp
development methodologies for ASP.Net

I have only one month experience with ASP.Net.

May I know whether there are any specific development methodlogies for ASP.Net development ? Similar to Fusebox / Mach II for coldfusion ?
Forum: Pro VB 6 August 31st, 2004, 11:32 PM
Replies: 4
Views: 1,425
Posted By madhukp
Hello Jenda, I agree the above method is not...

Hello Jenda,

I agree the above method is not the best one. The best method is to do it in VBS and put it in scheduler. But the poster ginoitalo had said he cannot put anything in the scheduler....
Forum: Classic ASP Basics August 31st, 2004, 11:23 PM
Replies: 9
Views: 1,899
Posted By madhukp
The best method to tackle this situation is to...

The best method to tackle this situation is to introduce an intermediate page. The activities of above page are done in the intermediate page and at the end you can redirect to a feedback page. The...
Forum: Classic ASP Professional August 31st, 2004, 11:18 PM
Replies: 11
Views: 6,173
Posted By madhukp
This feature was there from IIS 5.0 onwards. If...

This feature was there from IIS 5.0 onwards. If pagename is missing, it will assume the querystrings are sent to the default page of the directory.
Forum: Classic ASP Professional August 31st, 2004, 08:55 AM
Replies: 11
Views: 6,173
Posted By madhukp
In the IIS settings, you can have more than one...

In the IIS settings, you can have more than one default page in a pre-defined order. For e.g. The default pages may be

default.htm
default.asp
index.htm
index.asp

in that order. Then it will...
Forum: Classic ASP Professional August 31st, 2004, 07:15 AM
Replies: 11
Views: 6,173
Posted By madhukp
for this, you have to make index.asp as the first...

for this, you have to make index.asp as the first default document in the IIS settings.

Open IIS manager.
Rightclick virtual folder and select properties.
Click documents tab.
Add index.asp to...
Showing results 276 to 300 of 463

 




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