- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
122 Posted Topics
How can I prevent the user from typing in a date or anything else in the <input> element connected with a jQuery datepicker ? | |
I am a newbie at jQuery. I have a page with both a jQuery datepicker and jQuery tabs. I have changed the default settings of jQuery tabs CSS by overriding certain properties in a separate CSS file. The tabs are placed in a div (with an id = "ClassTabs") and … ![]() | |
Does anyone know a good method of generating bar/pie/line graphs in ASP ? I cannot use any commercial third party tool. Also I can't use any OCX or flash components. My data is in Oracle which I am connecting using ADO. The graphs have to be generated dynamically from the … | |
I am trying to create a drop down menu using UL and LI elements. Each LI is an image (of same size) and there are no Bullets in the List. In IE, the list Items are left-aligned as I want them. In Chrome the list Items are right aligned with … | |
Can I transfer some data, which the user enters into a pop up window, to the page which called the pop-up window ? The Main page is in a frame. When the user clicks a button on the main page, a pop-up opens showing some choices. After the user selects … | |
Re: Do you know how to connect to databases (Access in this case) and read data ? If you don't, u should read that first. This login screen is quite easy to do, if you have that knowledge | |
In my program, I need to have invoices printed from the program for the client's sales. The invoices are printed on pre-printed stationery whose top has the client's name, address, etc printed. The invoices are printed on a fan fold type paper on a dot-matrix printer (TVSE MSP 240 Classic). … | |
Re: 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 100% sure) and SQL Server uses a different character. | |
Hi I need to build a online transaction processing system using php and mySQL. Sorry to say, I am a newbie at this. One of the requirements is that when a transaction is processed, a printed bill/invoice should be generated. Can this be done in php ? If I am … | |
Re: If the form2 is not showing, try form2.show form2.setfocus This should bring the form2 window in front. | |
I am using a Data Environment to create a data report. The code is working fine in one app, but after I copy-pasted it to another app, it's giving problem. Both apps are similar and have same references and in same sequence This works fine (in App # 1) [code] … | |
How can I remove the URL information that is printed at the bottom of the page when a Web page is being printed ? Can this be done by Javascript or any programming method ? | |
Re: Has any database parameters etc been changed ? Try the test connection option from the Connection u created for the DE. If the connection succeeds, then check if u have enough permission to access the table/query/procedures. If possible, please provide a bit more information. Almost impossible to guess what's going … | |
Re: U r incrementing the value twice. Once in the For (which will automatically increment by 1) and once inside the for loop. So ur icount values are 1,3,5,7... . Since it never reaches 10, it goes into an infinite loop. Use [CODE]for icount = 1 to 10 Next[/CODE] | |
I am developing an intranet application, in which, in some pages, when the user selects an option, I am using a pop-up window to retrieve the data and displaying it in the main page. The pop-up opens, fetches data, puts in main page and closes itself. Since the user is … | |
Re: Create 2 tables in Access : Offers & Offer-Items. 1 Offer can have several items. When u r entering the sales, select the offer and write code so that the items for the selected offer come into the sales form/table automatically. This would require very simple SQL. I don't know … | |
One of the requirements in a new project in VB is that 'it should good look'. Naturally the client doesn't have any clear idea about 'good looking apps' but wants it to look 'real good'. I can give it a XP style look using manifest, but I was wondering if … | |
Re: You mean you want to create several users for Oracle ? Use the connection string method given above and change the username and password as required. For example For User1 ConnString = "Provider=MSDAORA.1 ; Password=myPassword1; User ID=myUser1 ; Data Source = ORCL; Persist Security Info=True" For User2 ConnString = "Provider=MSDAORA.1 … | |
When I am trying to connect to a MS Access database to display a data report, I am getting a dialog-box pop-up showing the different parameters for the connection string. Clicking on either the 'OK' or 'Cancel' buttons gives a "Couldn't find Installable ISAM" error. The database is not password … | |
Re: It would certainly be more useful if you tell us what the problem is. | |
I have created a timer function using setTimeout. The function works perfectly in IE and Opera but doesn't work in FireFox or Netscape 6. I checked out my Javascript book where it says setTimeout is compatible with all browsers. So where am I going wrong ? [CODE]function showPics() { if … | |
Re: Are you using the setup wizard to create a setup and installing from it on all computers ? Or are you just copying the .exe and other files ? In the second case, there could be a problem of different .dll versions. Or are you copying the source code in … | |
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 application is to read the records and store the new ones. I am currently opening … | |
Does anyone know of a free image-map creation software ? I am using Mapedit, but it has only a 30 day licence | |
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 haven't used any specific features of PHP 5, so the site should have worked … | |
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 resides in the remote Web server with MySQL. The local php … | |
Re: 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. | |
I need to automatically and dynamically generate an organization tree. The Data comes from an Oracle Database, where the hierarchy is well defined. But I can't seem to find any good way of generating the Tree Structure. Using a tree-view won't work as there are some designations having 2 or … | |
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 HREF="File_To_Download"> Download </A> If the browser does not support the type of file being … | |
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 let's say. One example is the title "The Devil's Alternative". So when I write … | |
Re: There are several ways to connect to Oracle 9i from VB 6. You can use a ODBC connection or use ADO (ActiveX Data Objects). For Remote servers, you can also use RDO. There is no general 'best solution' and the best method for connectivity depends on the particular situation and … | |
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 both B and C, it is saying 'Class … | |
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) ? Thanks | |
Re: 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 [Code] Set conn = server.createobject("adodb.connection") DSNTEMP = "provider=Microsoft.Jet.OLEDB.4.0;data source= << Full path to your database>>\Record.mdb; Jet OLEDB:Database Password=yourpasswordhere" [/Code] | |
Re: Please give the line of code where u r connecting to the database | |
Re: 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). | |
Re: For Access, use [code]MYSQL = "DELETE FROM Request_detail WHERE Repdate between CDate('" & pdt &"') and CDate('" & cdt &"')"[/code] | |
Re: Check This out [url]http://www.daniweb.com/forums/thread144563.html[/url] use the same principle | |
Re: 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. (Google for details). This will also decrease the retrieval time as the database will … | |
Re: 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 Server side variable. 3.When you return to the original page, obtain the server … | |
Re: 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". As there is a very low probability of the schema being actually "Jesus", the … | |
Re: 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. AFAIK, u can't have a procedure returning both. So what does rs … | |
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 the first few letters of the name and … | |
Re: 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, everyone helping you is doing it for FREE. Don't burden their time or patience | |
Re: 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 edit statement to identify the record you want to edit. So if … | |
Re: 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. | |
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 it's becoming rather tedious to edit in Notepad. So I am looking for … | |
Re: 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 be a typecasting problem here. | |
Re: 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 me wait for almost 2 hrs, and then said, "We will decide … | |
Re: Sorry to say u probably can't acheive this in Data Report. I had a similar problem regarding printing in roll papers. I sent the output to a text file and printed the file. U can probably try that approach if it helps |
The End.