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: *

  • Users: dulla
  • Order by date
  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...
  16. dulla

    Choosing more than one list value

    thank you stu. yes i would love to see the code. all i can do now is select the values, but they do not record. thanks. ameen
  17. dulla

    Choosing more than one list value

    when i mark the multiselect property to either simple or extended (which should allow multiple values to be highlighted) i can only visually see them highlighted. when i check the tables or come back to the form, the values are not being recorded. is there something i have to do in conjunction...
  18. dulla

    Choosing more than one list value

    is there any way to choose more than one value in a combo box that would be recorded in 1 field? as in holding down the ctl key and choosing more than one option? or would i just have to create different fields for this? thanks. ameen
  19. dulla

    Opening on Last record

    hello. i am try to set the default to open on the last record of the subform that i have. when i try the following: Private Sub Form_Current() DoCmd.GoToRecord , , acLast End Sub it works, but the record is locked, i cant add new record or navigate. when i try this command (DoCmd.GoToRecord ...
  20. dulla

    Disable Mouse Scrolling wont work!

    for some reason this code only works in my main form and not my subforms. in my subforms, the scrolling gets disabled, but the form and all the fields/buttons get locked. Option Explicit Private WithEvents clsMouseWheel As MouseWheel.CMouseWheel ' 308636 Private Sub...

Part and Inventory Search

Back
Top