Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. AGus01

    changeAction is not defined

    Hi thanks for your help got there in the end: <script language="javascript"> function changeAction(eventid) { if (document.form1.veg1[0].value == "cabbage" && document.form1.veg1[0].checked) { window.location = "http://www.google.com/"; }...
  2. AGus01

    changeAction is not defined

    Hi Long time since I had to look at any javascript I get the error changeAction is not defined please advise? I basically want to redirect the user to different pages based on the selection of a radiobutton. javascript: <script language="javascript"> function changeAction(eventid) {...
  3. AGus01

    Simple ASP CMS

    hi dhookom since there has only been 8 posts on the provided forum in the whole of 2008. i'm not sure its worth it! Angus
  4. AGus01

    CMS template

    hi I second that I created a custom theme for my friends site using wordpress check it out http:\\www.rememberremember.co.uk. thanks and merry Christmas AG
  5. AGus01

    cms for ASP .net site

    Well you could use Dot Net Nuke which is open source too. http://www.dotnetnuke.com/.
  6. AGus01

    Simple ASP CMS

    Thats great but Joomla is not ASP based!?
  7. AGus01

    Simple ASP CMS

    Hi i would like to know if anyone can recommend a simple (freeware) ASP CMS. I have a client who wants a website of roughly about 6 or 7 pages with a custom designed UI Which will allow him to update the content through a simple WYSIWUG system. Can anyone recommend one? Many thanks Angus
  8. AGus01

    Finding an end date based off of a parameter passed in?

    Just create a stored proc and call it twice. Stored proc: CREATE PROCEDURE [dbo].[Term_Date] -- Add the parameters for the stored procedure here @Qtr int, @Year int, @StartDate varchar(10) OUTPUT , @EndDate varchar(10) OUTPUT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets...
  9. AGus01

    alpha png in FF giving problems

    Hi, I like the look of your site! I noticed that your doctype tag is rendering the page in all browsers in quirks mode. I would suggest that you try changing the Doctype tag to one which renders the page in Standards compliant mode first. Then revalidate the css and html and see if there are...
  10. AGus01

    ASP to PowerPoint

    Well I am not sure exactly what you want to achieve? If you have got the latest version of Power Point ie. 2007. You might be able to achieve what you want to achieve with the use of "Content Controls". Have a look at this http://www.codeplex.com/dbe. Note that it referees to word content...
  11. AGus01

    Google Maps API and Javascript problem. Works in Firefox, why not IE?

    Hi Have you tried deleting your browsing history closing the IE browser? As I had no problems with your code in both IE6,7 and FF3. Cheers Angus
  12. AGus01

    Clearfix

    Please post your code or an example
  13. AGus01

    ASP.NET 2.0 - Web Server Controls

    Hi, I am web designer who is now been forced to create a simple ASP.NET 2.0 event booking application (I have some ASP/PHP/SQL Server/SQL knowledge but tend to make a mess of server side code). This app will have an administrator (back end) interface (web or windows based internal to my...
  14. AGus01

    query MS Access using SQL

    Hi Ramou, thanks for getting back to me. That was a great help. So you need to use parenthesis in MS Access. can you confirm to me if I was to add a third table to the query i would the syntax as follows: select cou.name, cou.details, cou.startdate, cou.venue from ((tblCourses as cou Right...
  15. AGus01

    query MS Access using SQL

    Hi can anyone advise why I get an error running this query: I get an error saying Syntax mistake by the keyword FROM. If i remove the 2nd Right Join the query runs? select cou.name, cou.details, cou.startdate, cou.venue from tblCourses as cou Right Join tblCourseAttendees as ca ON...
  16. AGus01

    Access forms Basics

    Hi Lars, Thanks for your help. I can't get this to work. I select the forms Objects from the left hand menu. I then select the form I am interested in and right click to go to design view. Once in the form I right click anywhere on the form select properties and am given a menu with a drop...
  17. AGus01

    Access forms Basics

    Hi, I am new to access and Access forms. I have inherited a database which uses access forms. Please can you advise how I can view the underlying data behind each and every form. So I can work out a data information flow? For example I would like to be able to Chart exactly which database...
  18. AGus01

    Refactoring SQL statment

    Can any one help me refactor this SQL statment so I can read it? SELECT Tblevents.eventid, Tblevents.eventname, Tblevents.details, Tblevents.date, qry_home_cs_all.CountOfcontactid AS Totalatt, qry_CS_status_1.CountOfContactid AS Uni, qry_CS_status_2.CountOfContactid AS Biz...
  19. AGus01

    100% height problem

    To create a liquid flexible layout as described you should not be absolutely positioning the navigation elements on the page. I would highly recommend completely restructuring your css using floats. A simple tutorial can be found here: http://css.maxdesign.com.au/floatutorial/tutorial0801.htm
  20. AGus01

    Silly question accessing underlying data.

    Hi PHV, Thanks for this is all very usefull. I can see for example a form that I would like to edit has a SQL query of the following. SELECT Tblevents.eventid, Tblevents.eventname, Tblevents.details, Tblevents.date, qry_home_cs_all.CountOfcontactid AS Totalatt...

Part and Inventory Search

Back
Top