User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 374,571 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,719 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 79
Search took 0.01 seconds.
Posts Made By: msaqib
Forum: C++ Dec 31st, 2007
Replies: 16
Views: 18,280
Posted By msaqib
Re: Can anyone help me using <graphics.h>

Here is a one page reference to grpahics.h library with the details of more widely used functions of this library. Also a small program to demonstrate the...
Forum: ASP Dec 25th, 2007
Replies: 2
Views: 1,811
Posted By msaqib
Re: ASP and MSSQL : Microsoft OLE DB Provider for ODBC Drivers error '80040e14'

As your SQL server is configured to run any query which will be executed with in 300ms. And now in your case, your query's estimated execution time is 353 which is more than the time set by the DB...
Forum: ASP Jun 11th, 2007
Replies: 1
Views: 915
Posted By msaqib
Re: open search result in text file

What type of text file do you need. Do you want to save the same HTML code in the text file or the search results only?
Forum: Techies' Lounge Apr 1st, 2007
Replies: 6
Views: 821
Posted By msaqib
Help Need your comments

Hello all

I am doing a research report on Operating Systems in my Masters Degree. I need your kind comments on the following topics, so that I can add them into my research report.


A small...
Forum: ASP Feb 2nd, 2007
Replies: 2
Views: 2,313
Posted By msaqib
Re: DSNs ASP and windows x64

Check if the Data provider is present on that machine. Like MS Access Drivers etc...
Forum: ASP Feb 2nd, 2007
Replies: 2
Views: 2,752
Posted By msaqib
Re: error '80020009' Exception occurred.

Try to find out whether objRS("User_ID") has some records or not? Another thing is the data type of User_ID, is it int?

Mostly this exception occurs if you try to casst different data types of...
Forum: ASP Feb 2nd, 2007
Replies: 1
Views: 1,559
Posted By msaqib
Re: ASP- SQL Server..Query help....

Try
SELECT TOP 5 ID, total, recipe_name
FROM tblrecipes
ORDER BY total DESC, ID DESC

The thing is that you haven't manetioned to sort the ID colums as well. So IDs appear in the order of last...
Forum: C++ Feb 1st, 2007
Replies: 4
Views: 879
Posted By msaqib
Re: Help in program

Create an Array of 50 integers. Write a simple function to seach the inputted integer in the array. If the integer is found in the array return the index of that integer in that array. If integer is...
Forum: ASP Dec 31st, 2006
Replies: 2
Views: 3,014
Posted By msaqib
Re: Problem with XIRR calculation with ASP and EXCEL

If you knwo the VBA, ou can create a macro in EXCEL and when ever the data is entered into a specified columns then the macro calculates te IRR and put it back into a specified cell. And you can get...
Forum: ASP Dec 31st, 2006
Replies: 3
Views: 1,949
Posted By msaqib
Re: Read Data from Website

Hi
you can use the XMLHTTP object to get the data from any website and transform it and get the desired information.

Here is a nice tutorial on how to get the data from a website.
...
Forum: ASP Oct 1st, 2006
Replies: 1
Views: 2,189
Posted By msaqib
Re: asp with vbscript and javascript

You can trigger more events on onChange event like

OnChange="fun1();fun2();"
Forum: ASP Oct 1st, 2006
Replies: 2
Views: 7,835
Posted By msaqib
Re: Microsoft OLE DB Provider for ODBC Drivers error '80040e14'

Hello, try using the other driver than MS Access driver. Might be the driver is causing the error.
Forum: IT Technologies and Trends Aug 3rd, 2006
Replies: 3
Views: 2,654
Posted By msaqib
Re: why java is called as java

hmmmm interesting
Forum: ASP Jun 21st, 2006
Replies: 1
Views: 6,626
Posted By msaqib
Re: asp problem ADODB.Recordset error '800a0bb9'

Hello,
You havent entered any cursor type for the recordset. You try the following line.
objRS.Open "ilizarov", objConn,adOpenDynamic , adLockOptimistic, adCmdTable

I think by default it take ...
Forum: Web Browsers Jun 16th, 2006
Replies: 2
Views: 3,138
Posted By msaqib
Re: Web sites wont load

I htink may be you system is slow or there is some problem in your browser. I guess you are using Internet Explorer. Try to use some other Browser, may be it solve the problem.

Sometime secure...
Forum: ASP Jun 7th, 2006
Replies: 3
Views: 3,208
Posted By msaqib
Re: CDOSYS Form to Email Formatting

Store all the values in a variable and then show them on the page. This would be easy to use and update at later stages.
Forum: Software Developers' Lounge Jun 3rd, 2006
Replies: 67
Views: 10,690
Posted By msaqib
Re: Coolest programming language?

C# is the best language I think for Windows Programmers.
Forum: ASP Jun 3rd, 2006
Replies: 1
Views: 2,821
Posted By msaqib
Re: URL Encoding

Hello,

You can use HASH Encoding to generate the random HEX values from any string of data in ASP. You can find lot of source code regarding Encoding in ASP and you can use any of them to generate...
Forum: C May 31st, 2006
Replies: 1
Views: 646
Posted By msaqib
Re: anyone used nextagetech ?

Well the website looks good. But on their portfolio they haev just web applications and no software. The website projects look good.
Forum: ASP May 31st, 2006
Replies: 3
Views: 927
Posted By msaqib
Re: How to transfer

In MS SQL Server there is a wiard named "Import & Export Data". You can use this wizard to import data from any data source to the SQL server.
Forum: Search Engine Optimization May 30th, 2006
Replies: 6
Views: 4,721
Posted By msaqib
Re: uppercase to lowercase url's

RewriteEngine on
RewriteMap upper2lower int:tolower
RewriteRule ^/(.*)$ /${upper2lower:$1}

Amnot sure if it will work or not. You can read the full post...
Forum: Promotion and Marketing Plans May 30th, 2006
Replies: 4
Views: 1,779
Posted By msaqib
Re: Keyword density - How much is too much????

I dont think so, I think one targeted key word is enough. You can put few similar keywords but dont repeat the same word 2-3 times. Its my opinion but I dont know if i am right or wrong?
Forum: ASP May 30th, 2006
Replies: 3
Views: 1,641
Posted By msaqib
Re: Challenging Problem in PASSing Data to Server, Plz Help

Ok here is the actual code which you can use to post the data to the next server. It uses XMLHTTP object in ASP.

Response.Buffer = true
xml =...
Forum: Promotion and Marketing Plans May 26th, 2006
Replies: 7
Views: 1,644
Posted By msaqib
Re: How long did it take u to get 2000 unique visitors?

1 day - If you ask 2000 people to visit your sit.
1-2 years - If you dont advertise your website.

So the more you advertise the more visitors you will get. Try to have like exchanges with related...
Forum: C May 26th, 2006
Replies: 5
Views: 878
Posted By msaqib
Re: Guess the Output!

With in range or out of range it doesn't matter.
Forum: ASP May 26th, 2006
Replies: 3
Views: 1,641
Posted By msaqib
Re: Challenging Problem in PASSing Data to Server, Plz Help

Well if the data is not huge then u can use the querystring to forward the data to the next server.

For posting the data you can use XML to post the data. I havent used that but i think it will...
Forum: ASP May 26th, 2006
Replies: 1
Views: 1,289
Posted By msaqib
Re: ASP help for newbie

Now what you haev to do is, just create an asp page with the name "SendEmail.asp" and save it. Then create an HTML form and in the action property of the form <form action="SendEmail.aso"...
Forum: Computer Science and Software Design May 17th, 2006
Replies: 2
Views: 1,263
Posted By msaqib
Re: Access DB!!

You can use the expression builder in Acess to validate the email address before entering, or if you are using any software to enter the data then you can validate the email address using the code.
Forum: Computer Science and Software Design May 17th, 2006
Replies: 1
Views: 962
Posted By msaqib
Re: cant delete

Well some other program might be using that particular file you are trying to delete. In this case OS does not allow to delte the file untill the other program finished its processing.

When ever a...
Forum: Relevant Link Exchanges May 16th, 2006
Replies: 7
Views: 1,349
Posted By msaqib
Re: Link Exchange - Programming Related

Administrator, may I have more than one links in the links directory? Like under C/C++ and C# etc...
Forum: Relevant Link Exchanges May 16th, 2006
Replies: 7
Views: 1,349
Posted By msaqib
Re: Link Exchange - Programming Related

Hello alpha2006 I have added your link into my site and PM you the details. Now looking forward to see my link at http://www.project4hire.com/.
Forum: C++ May 14th, 2006
Replies: 6
Views: 1,806
Posted By msaqib
Re: newbie c++ help

Well within three days you can not understand all of the three loops :P.

It will take some time, all you can do is practice more and more and try to understand the code of others. This will help...
Forum: Promotion and Marketing Plans May 13th, 2006
Replies: 16
Views: 2,522
Posted By msaqib
Re: Is PR solely based on number of backlinks?

I think its not true. It is based on many other things as well like the domain age, quality contents, out going links. And the back links must be from the relavant site. Like if you have a clothing...
Forum: Growing an Online Community May 13th, 2006
Replies: 30
Views: 5,006
Posted By msaqib
Re: Time Frame for Growing Forum

That is a very nice advise. I have been doing it for the last 5-6 months but still I am not getting posts from other users.

My question is "Should I provide/announce any incentives for users to...
Forum: Relevant Link Exchanges May 13th, 2006
Replies: 7
Views: 1,349
Posted By msaqib
Link Exchange - Programming Related

Hello, I want to exchange the links with any of the programming related website like

C/C++ Programming tutorials & Source code
Visual C++ Tutorials & Source Code
C#.Net Tutorials & Source Code
...
Forum: Search Engine Optimization May 13th, 2006
Replies: 4
Views: 1,719
Posted By msaqib
Re: help needed for more visitors

Absolutely!!! Google adwords is the best way to get the targetted customers, you can also submit your website in directories, and get reciprocal links as well....

Personally I dont believe on SEO...
Forum: Search Engine Optimization May 13th, 2006
Replies: 12
Views: 1,696
Posted By msaqib
Re: Is this title SPAM for search engines?

Are you concentrating on all of the mentioned people above? If yes then I dont think so its a SPAM. As you are not repeating any words in your title.

Am not an SEO but the student of SEO.
Forum: C++ May 12th, 2006
Replies: 11
Views: 1,657
Posted By msaqib
Re: best compiler

Well I think TurboC is the best compiler I ever used. during all my educational years in university I used to program in TC compiler. It alos provides good debugging.

Ther have been a joke related...
Forum: ASP May 12th, 2006
Replies: 1
Views: 1,138
Posted By msaqib
Re: I want Asp auto code generators

Wel I had been using the ASP Maker software a year ago, but sorry i dont know the URL for that software. You can google ASP maker and can find it easily. Its a good tool for generating the ASP code...
Forum: ASP May 12th, 2006
Replies: 2
Views: 4,783
Posted By msaqib
Re: problem in passing multiple checkbox values

You must put the CheckBoxes in a Form and must provide the same name to all the check boxes. Then on the next page you will have the collection of checkboxex which were checked. Your code on the next...
Showing results 1 to 40 of 79

 
All times are GMT -4. The time now is 5:48 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC