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 SkipVought 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. tchaplin

    Refresh Problem – after new ADO record sets written

    I have an unbound form creating a new job this writes new data to four tables using ADO recordsets (sample below) one to many type relationships. After writing the data I close the form and refresh the main form with the new Job details – tabs with sub forms in (7 in total) and some sub forms...
  2. tchaplin

    folder redirection - outlook pst - offline not working

    I have set up folder redirection, which includes outlook 2010 pst files roughly in the path of.. C:\Documents and settings\Username\My Documents\outlook files\ It is also setup to allow files offline. When the notebook is offline I can see the files available off line, however the pst file has...
  3. tchaplin

    Running http:\connect to conect computer error

    I get the message "An error occurred during the download of Connect Computer. Please go to http://connect and try again." When trying to connect a Vista Business computer to the domain. I have connected four xp computers without incident. I have included three log files the Launcher.log...
  4. tchaplin

    Terms not recognised in FireFox or Chrome - Help please

    Thanks for your reply (very much appreciated). I have done a little more investigative work and worked out that the items are being written to cookies and passing variables using query strings. Somewhere there is a problem extracting the product id out of the db and presenting the contents...
  5. tchaplin

    Terms not recognised in FireFox or Chrome - Help please

    I think the problem is in the additem.asp Are there some browser compatibility issues? How to convert? <%@ Language=VBScript %> <!-- #include virtual="/_include/connection.asp" --> <% comm.CommandText = "SP_AddItem" comm("@CartID") = Request.Cookies("CartID") comm("@ProductID") =...
  6. tchaplin

    Terms not recognised in FireFox or Chrome - Help please

    Hi I have a legacy website working in IE however it doesn't work Chrome or Firefox it written in ASP there is some jscript. There must be some terms that are not recognized in Firefox or Chrome - Could someone pint me in the right direction. Code below - Thanks for your input Todd my test...
  7. tchaplin

    Menu - hightlight when page viewed - mambo

    My Update I think I can do it using on onclick='CngClass(this);' however there is something wrong with the syntax hmmmm what still banging my head [evil] menu.php echo "<li><a onclick='CngClass(this);' href='$row->link&Itemid=$row->id' ".( $row->id == $item_id ? "class='current'" : "" )."...
  8. tchaplin

    Menu - hightlight when page viewed - mambo

    I am new to php and mambo which uses a file menu.php to populate the menu items from a mysql database it also sets css formatting for a menu - CODE BELOW There is a 6th element which is the phone number this is formatted differently - hence the inclusion of class='phone-contact'...
  9. tchaplin

    Store asp script in database

    That’s right I was intending to white the code into a database field. When it was retrieved I was hoping it could be executed. However I’ve been told through the above post that it doesn't work that way. So will have to insert the code with in the pages its self. Thanks for your time
  10. tchaplin

    Store asp script in database

    I have simplified the code down to - entered into the db field Still Not Working - it will just be a string thing But what hehehe It can be frustrating what ever & "<% Response.Write "Hello World." %>" & " the code to a s
  11. tchaplin

    Store asp script in database

    This is what i am entering in to teh database field But still nothing ...selection of delightful treats from <% if session("CurrencyCode") = "NZD" then <Response.Write "NewwZ"> else Response.Write "AUS" end if %> . Accompanied by the ...
  12. tchaplin

    Store asp script in database

    I have a situation where I don't wish to totally redesign a website Some comments refer to one domain name and others to another domain name. Eg New Zealand and Australia. <% if session("CurrencyCode") = "NZD" then %> New Zealand <% else %> Australia <% end if %> I wish to store...
  13. tchaplin

    Domain Question

    I'm not sure if this is the right section for this section I currently have a website hosted on the web under the domain name ItemA.co.nz. I have acquired another domain name called ItemB.com.au. Can I or is there a way of running both domain names eg ItemA.co.nz and ItemB.com.au independently...
  14. tchaplin

    crosstab quarters - jet does not recognise &quot; as valid field name

    Thanks yet that achieved what I was after. It was something I had never used before although know ill use in the future. :-) Thanks once again
  15. tchaplin

    crosstab quarters - jet does not recognise &quot; as valid field name

    Ive got a cross tab query that counts jobs per quarter for teh year. It works fine for previous years because there is data for all quarters of that year. The query is bound to a report with the data source being 1 for quarter 1 - 2 for quarter 2 etc to 4. However when there is no data in the...
  16. tchaplin

    requery subform data update problem

    Thanks for your reply Yep that is correct - there are two types of job - a multi invoice and a single invoice - both are treated very differently. If both fields are cleared within the multi invoice section i want to be able to 'reset' the job for either a single invoice or multi depending on...
  17. tchaplin

    requery subform data update problem

    I have a procedure that makes a call to check to see if there is a record with a nz(ClientDateInvoice) <> 0 and nz(ClientInvoiceNumber) <> 0 it then sets a flag bolMultiInvoice. The problem is that I'm on a subform continuous forms on the Form_AfterUpdate event i change data on a record and...
  18. tchaplin

    Rollover sub menu doesn't work in IE7 yet does in IE 6!!

    I'll post more cut down copy of the code below I think the problem is in the jscript function - showsubmenu(e,MENU) or more likely the CSS - this is where i think the is problem is can any shed some light on this?? .menuitems { padding-left:10px; padding-right:10px; } Here is a...
  19. tchaplin

    Rollover sub menu doesn't work in IE7 yet does in IE 6!!

    Thanks for the reply - hehehe It looks complicated - it can never be that easy - I know I didn't write the code If you want to see what it does - copy the code into an empty html file and load it. It shows the menu. I think the problem may lie in a hack for CSS that has changed under IE 7 but...
  20. tchaplin

    Rollover sub menu doesn't work in IE7 yet does in IE 6!!

    I don’t really know css / jscript very well however want to give it a go !!! I’m aware that the problem only occurs on the sub menus using IE7. The menu also uses Jscript however I don’t think this is the problem. If someone could just point me in the right direction - hopefully I can solve the...

Part and Inventory Search

Back
Top