Search Results

Showing results 1 to 40 of 185
Search took 0.01 seconds.
Search: Posts Made By: aparnesh
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009
Replies: 1
Views: 625
Posted By aparnesh
My project needs to read records from a CSV file. The file contains 3 columns of data. Record is continuously being appended to the file by another application (about once every 6-8 seconds), and my...
Forum: PHP Jan 29th, 2009
Replies: 1
Views: 302
Posted By aparnesh
I have developed a site in PHP 5.26, which is running perfectly from the development server. But after uploading the site to the Web server, it is not working. The server is running PHP 4.4. I...
Forum: PHP Jan 22nd, 2009
Replies: 2
Views: 390
Posted By aparnesh
I am testing this now on a single machine, using 2 different sites (folders under htdocs) and the server is same. I also checked that the allow_url_include setting is "on" in php.ini. I am getting...
Forum: PHP Jan 22nd, 2009
Replies: 2
Views: 390
Posted By aparnesh
The project specs requires that I send some data to a remote server, where records based on the data that I send will be searched from a MySQL db, and returned to the caller. I developed a class that...
Forum: Visual Basic 4 / 5 / 6 Dec 18th, 2008
Replies: 8
Views: 4,231
Posted By aparnesh
Pritkoff
1. The last post was almost 3 yrs ago. Do u really think I am still bothered about it ?
2. I made it clear in my first post that I can't use any other third party software, so no need to...
Forum: HTML and CSS Dec 3rd, 2008
Replies: 2
Views: 546
Posted By aparnesh
Thanks dickersonka for the link. I checked it out, but it doesn't really help me. For one, the execCommand("SaveAs" ..) supposedly works only for IE, so that solution is unacceptable. Changing the...
Forum: Visual Basic 4 / 5 / 6 Dec 1st, 2008
Replies: 3
Views: 1,177
Posted By aparnesh
Not really sure what you are looking for, please give more details. You can create a countdown using a loop. If you want to add or subtract a number from a date, use dateadd() function.
Forum: HTML and CSS Dec 1st, 2008
Replies: 2
Views: 546
Posted By aparnesh
I am developing a site that will allow the users to download files. The files could be of various types - documents, images, applications, etc. I am using a simple link to offer the download

<A...
Forum: JavaScript / DHTML / AJAX Nov 27th, 2008
Replies: 1
Views: 1,170
Posted By aparnesh
It works if I replace the single quote with a "\'" (backslash before the single quote. So
$Title = str_replace("'", "\'", $Title);

var Title = <?php echo($Title) ?>;
works fine
Forum: JavaScript / DHTML / AJAX Nov 27th, 2008
Replies: 1
Views: 1,170
Posted By aparnesh
I have a database of book titles where string values are stored. A php script reads the data and displays them. The problem is happening when a Book title contains the ' character - as apostrophy...
Forum: ASP Oct 14th, 2008
Replies: 1
Views: 967
Posted By aparnesh
I have 3 files containing classes, let's say - A, B and C. B and C both contain the file A as they are subclasses of A, using the "#include file " directive. I am facing a problem if a page contains...
Forum: ASP Oct 14th, 2008
Replies: 3
Solved: Constructor
Views: 873
Posted By aparnesh
There is no inbuilt Collection class. You can use either an Array or the Scripting.Dictionary object.
Forum: ASP Oct 14th, 2008
Replies: 3
Solved: Constructor
Views: 873
Posted By aparnesh
the Destructor is
Private Sub Class_Terminate()

But there is most probably no inbuilt Collection class.
Forum: ASP Oct 14th, 2008
Replies: 3
Solved: Constructor
Views: 873
Posted By aparnesh
Got it, the Constructor function should be called
Public Sub Class_Initialize()
Forum: ASP Oct 14th, 2008
Replies: 4
Views: 1,060
Posted By aparnesh
I think the problem is with App.Path which, AFAIK, is not supported in ASP. It works in VB.
If the path to your database is fixed, use

Set conn = server.createobject("adodb.connection")...
Forum: ASP Oct 14th, 2008
Replies: 3
Solved: Constructor
Views: 873
Posted By aparnesh
How can I implement a constructor / destructor for a class written in ASP ? Something like the __constructor() function of PHP. Also is there an in-built Collection Object in ASP (as in Visual Basic)...
Forum: Visual Basic 4 / 5 / 6 Sep 24th, 2008
Replies: 3
Views: 1,520
Posted By aparnesh
For MS Access, use * (asteriks) instead of %

"Select * from <table> where <field> like '" & text1.text & "*'"

For other databases, it will depend on the database. Oracle uses "%" (IIRC, not...
Forum: ASP Sep 17th, 2008
Replies: 1
Views: 910
Posted By aparnesh
What do u mean by 'Add 2 dates' ? You can add a date with a integer to get another date (DateAdd function) , or subtract one date from another to get the difference (DateDiff function).
Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2008
Replies: 14
Views: 1,843
Posted By aparnesh
Please give the line of code where u r connecting to the database
Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2008
Replies: 6
Views: 924
Posted By aparnesh
It would certainly be more useful if you tell us what the problem is.
Forum: ASP Sep 15th, 2008
Replies: 1
Views: 813
Posted By aparnesh
For Access, use
MYSQL = "DELETE FROM Request_detail WHERE Repdate between CDate('" & pdt &"') and CDate('" & cdt &"')"
Forum: ASP Sep 11th, 2008
Replies: 4
Views: 1,276
Posted By aparnesh
Check This out
http://www.daniweb.com/forums/thread144563.html

use the same principle
Forum: ASP Sep 11th, 2008
Replies: 2
Views: 749
Posted By aparnesh
Is it necessary that all records be displayed in a single page ? Can't you have a fixed no. of records per page and have links for subsequent pages. If that is acceptable, use Pagination Queries....
Forum: ASP Sep 11th, 2008
Replies: 1
Views: 1,126
Posted By aparnesh
1. Before posting, store the value (in this case the selectedIndex of the SELECT) you want in a hidden control (INPUT TYPE = "Hidden" etc...)
2. Accept the value in the page accepting the post in a...
Forum: PHP Sep 8th, 2008
Replies: 7
Views: 667
Posted By aparnesh
Having a dot in the username will not work because most SQL languages use the dot as a relation. So an username like "Jesus.Christ" will try to create a table called 'Christ" in the schema "Jesus"....
Forum: JavaScript / DHTML / AJAX Sep 1st, 2008
Replies: 2
Views: 791
Posted By aparnesh
Thanks essential. I will try it and let you know
Forum: ASP Aug 30th, 2008
Replies: 4
Views: 1,800
Posted By aparnesh
I am not sure if you have specified the parameter stuff to the SP correctly. You are saying the SP will return a recordset - that usually means a table structure. You are also using an OUT parameter....
Forum: ASP Aug 30th, 2008
Replies: 1
Views: 566
Posted By aparnesh
A simple request - Please show only the relevant portion of the code. No one has the time or patience to go through 5 pages of ur code containing style definitions and table layout. Please remember,...
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2008
Replies: 7
Views: 863
Posted By aparnesh
If the 2 records are identical in all respects, then any change to one will affect the other. If there is some field (say Address or City) where they differ, you have to include that field in your...
Forum: JavaScript / DHTML / AJAX Aug 30th, 2008
Replies: 2
Views: 791
Posted By aparnesh
The client needs to select a vendor from a drop down list (Select). The list is quite long, so it takes some time to load and scroll. It would be better if there was a way for the client to type in...
Forum: ASP Jul 1st, 2008
Replies: 5
Views: 1,315
Posted By aparnesh
As I had already specified, use Google to search for free Editors. As for ASP tutorials, there are lots of sites offering those for free. You can try http://www.w3schools.com/asp/ for example.
I...
Forum: ASP Jun 30th, 2008
Replies: 5
Views: 1,315
Posted By aparnesh
What sort of tools are you looking for ? Editors / IDEs ? Try Google. Of course you can write ASP in Notepad. I personally use MS InterDev, so if you have it you can try it.
Forum: PHP Jun 30th, 2008
Replies: 7
Views: 686
Posted By aparnesh
Hi Friends

Till now, I have been coding my PHP files mainly in Notepad. I had used a few PHP IDEs earlier, but were not satisfied. I found them too cumbersome and some were quite unstable. Now...
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2008
Replies: 8
Views: 875
Posted By aparnesh
Since row is actually representing a record, shouldn't it be
set row = PayrollDatabaseDataSet.Allowances_Pay_Table.Rows(current_row)
?
Since you have just declared row as a variant, there might...
Forum: Search Engine Optimization May 26th, 2008
Replies: 3
Views: 682
Posted By aparnesh
Sorry to hear about your problem, but most of us have dealt with 'this guy'. I have had even worse experiences, where a prospective client called me up for a meeting (he set the date and time), made...
Forum: Visual Basic 4 / 5 / 6 Apr 20th, 2008
Replies: 7
Views: 2,586
Posted By aparnesh
I gave the solution for rolled paper, not pages (fanfold or otherwise). For rolled paper, there is naturally no concept of next page. If you are printing to pages of fixed height, using a data report...
Forum: ASP Mar 6th, 2008
Replies: 2
Views: 872
Posted By aparnesh
I did that already and found some solutions. I was looking for user experiences about what they use, how robust the solutions were, etc. A sort of a feedback/review stuff
Forum: ASP Mar 6th, 2008
Replies: 2
Views: 872
Posted By aparnesh
What would be the best available solution for uploading files to a Web Server from ASP ? I have been using MS Posting Acceptor but it is giving bizarre problems (See here...
Forum: ASP Mar 5th, 2008
Replies: 0
Views: 758
Posted By aparnesh
I am trying to upload a file to IIS Webserver using MS Posting Acceptor. The URL from where the File is being Uploaded is
h ttp://localhost/ccs/RakeUpload.asp

After the File has been uploaded,...
Forum: JavaScript / DHTML / AJAX Feb 14th, 2008
Replies: 11
Views: 3,753
Posted By aparnesh
Thanks serkansendur and DangerDev. The problem was with the 'document.images(...)' part. I changed it to document.images[...] and it's working fine.
The display of '(' and '[' is almost similar in...
Showing results 1 to 40 of 185

 


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

©2003 - 2009 DaniWeb® LLC