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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dulla

  1. dulla

    Jtwt Script Modification

    Thank you very much for your reply. I am able to change the number of tweets, but they still disappear after 1 week. So I could potentially have 100 or 1000 tweets but they won't last more than 1 week. I've also tried adding: You could try adding: Code: if (diff >= 2592000) {return "1 month...
  2. dulla

    Jtwt Script Modification

    The following code pulls recent tweets from twitter and feeds them to your website. I'm trying to figure out a way to change the date of the recent tweet from 1 week (default) to 1 month. Any ideas? (function($){ $.fn.jtwt = function(options) { //Declare defaults var defaults = {...
  3. dulla

    Sql wont run in VBA

    the reason i wanted to use this is so i can actually have a query run. when i use docmd.openquery in vba or even open a query myself manually, access opens the query without running it so i don't have updated information. My problem is that the query is not updated based on new values entered...
  4. dulla

    Sql wont run in VBA

    Hello i cannot get this statement to execute in vba: Private Sub Operation_AfterUpdate() DoCmd.RunSQL ("SELECT Last(UnitRate.UnitRate) AS LastOfUnitRate FROM UnitRate RIGHT JOIN EmpTicket ON UnitRate.Operation = EmpTicket.Operation;") End Sub i get the error: a run sql action requires an...
  5. dulla

    Concatenate Values

    Hello. I am trying to assign many values to one of my fields, TicketScan. Some values will be from a main form (Roll) and some on the subform (Bundle)that the TicketScan field is in itself. These are the values i would like to concatenate: Form_Roll Objects: RollID TotalUnits MarkerType...
  6. dulla

    Creating New Records in Subform

    Hello. I am trying to create multiple records in a subform when a button in the main form is pressed. Is this possible?
  7. dulla

    Sending Info to Server

    ok. i have removed the parens and quotes from these where they begin: print <<END_HTML; and print <<NOPE; and where they end: END_HTML exit; and NOPE exit; However, i get the same error: Premature end of script headers: fileuploader.cgi
  8. dulla

    Sending Info to Server

    did you actually get the file to upload on the server in anyone of the codes? Ive messed around with the END_HTML and still the same premature end of script headers error. Do you think it's an issue with my server?
  9. dulla

    Sending Info to Server

    the 2 files upload.cgi and fileuploader.cgi are referenced: [Tue Oct 21 15:29:09 2003] [error] [client 209.35.187.126] Premature end of script headers: upload.cgi, referer: http://www.marshonsfashions.com/file_upload [Tue Oct 21 15:29:09 2003] [error] [client 209.35.187.126] Can't find string...
  10. dulla

    Sending Info to Server

    look at this one too. I get the same error for it. http://www.marshonsfashions.com/fileuploader.html view the source on this. it calls a file called 'fileuploader.cgi'. i believe some HTML is called within fileuploader.cgi. print <<&quot;(END_HTML)&quot;; <!DOCTYPE HTML PUBLIC...
  11. dulla

    Sending Info to Server

    Server error Error message: Premature end of script headers: fileuploader.cgi Click here to notify the Webmaster. Error 500 www.marshonsfashions.com Tue Oct 21 23:29:53 2003
  12. dulla

    Sending Info to Server

    I am trying to sending a file to my server. I have obtained a script that i cannot get to work. the html is here: http://www.marshonsfashions.com/file_upload I have set the permissions and changed the variables, yet i still get 'server error premature end of script headers' as an error. any...
  13. dulla

    File Upload

    Hello. I am trying send information with a file upload on a form straight into an email account. The fields get sent however the file upload wont get sent. Is there anyway to send information to an email account with the file upload to show up as an attachment? here is my html form. I have not...
  14. dulla

    Using MultiSelect Listbox

    Hello. I am having trouble using a multiselect textbox. Initially, i was using a regular combo box to capture information for clients. In the combobox, only 1 value could be selected from the list. I currently have 40 clients that have only one value recorded for the 'business type' field. Now...
  15. dulla

    Choosing more than one list value

    stu, i am just trying to select multiple values from my listbox. on the form when i highlight any number of values (1 or more) nothing gets recorded in the tables UNLESS i change the multiselect property to &quot;none&quot;. when i choose simple/extended for the multiselect property, no values...

Part and Inventory Search

Back
Top