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 Chriss Miller 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. joelflorendo

    Tools needed to make Kiosk Browser

    Thanks...I downloaded the trial version of vs2005, vs2005 service pack 1 and Windows CE Platform Builder trial plugin. That gave me the IESample and IESimple files as well as the ability to build an app that runs in Windows CE. Thanks again!
  2. joelflorendo

    Tools needed to make Kiosk Browser

    The bar code scanner will connect to our web app in which the scanning capabilities allow our users to enter data through our web interface to the backend. The bar code scanner came with IESample which is a sample Internet Explorer web browser. We were able to connect to our web app with it but...
  3. joelflorendo

    Tools needed to make Kiosk Browser

    Hello~ I need to build a kiosk style internet browser for Windows CE6 on a xscale processor bar code scanner. Can someone tell me what development tools are required to do so? I'm getting the idea I need Visual Studio with platform builder but what version(s) will I need? Thanks!
  4. joelflorendo

    How do you keep the navigation window sorted (permanently)

    You can use the SORT row on the query design grid and save the query.
  5. joelflorendo

    Password protected tab-control (through a form not inputbox)

    try Forms!frmMain.Controls I'm not sure why it's resetting the security for every record. It depends on when you're firing the "hide controls" code. You might want to only run that when the form is open perhaps(?)
  6. joelflorendo

    reading a webpage from within access

    actually, if the server is responding with xml, you might want to look at the msxml2.http library (http://msdn.microsoft.com/en-us/library/ms759148%28VS.85%29.aspx) You can see on that page, they use it like: Dim HttpReq As New MSXML2.XMLHTTP30 HttpReq.open "GET", "http://localhost/books.xml"...
  7. joelflorendo

    Password protected tab-control (through a form not inputbox)

    create your form with the textbox that has the password input mask and an OK button. Give the form and textbox names, for example frmPass and txtPass. Instead of strInput = InputBox("Please enter a password to access FAR data","Restricted Access") use DoCmd.OpenForm("frmPass") to open...
  8. joelflorendo

    search criteria as unenclosed text

    you mean: strWhere = strWhere & strJoinType & "[" & Me("cbxFld" & i) & "] like '*" & Me("txtVal" & i) & "*'" ??? This still doesn't make sense to me though. At this point in your code, this line will only be run if Me("txtVal" & i) is null. I don't understand how you want to modify so that...
  9. joelflorendo

    Making VBA select multiple criteria in a listbox on a webpage

    So I'm guessing the error is happening here: .document.all("_P1610431606").Value = 'Selections Here How did you verify the ID of that element? PHV gave a good guess on the ID but I don't think you can really be sure of what it is unless you see their actual javascript and what that...
  10. joelflorendo

    Moving folders based on date

    I don't think this code will account for days previous since it's determining the folder paths off of today's date. You might be able to do something that analyzes the completed archives folder and moves subfolders based on name.
  11. joelflorendo

    Moving folders based on date

    try: fldMonth = "c:\scanusers\dataentry\" & Year(Date) & "-" & Month(Date) & "\"
  12. joelflorendo

    Moving folders based on date

    hmm...did you check to make sure the monthly folder is empty before you run the script? It sounds like the today's daily folder is inside of the monthly folder already.
  13. joelflorendo

    Moving folders based on date

    have a look at this: http://sogeeky.blogspot.com/2006/08/vbscript-add-leading-zero-to-date.html
  14. joelflorendo

    combo box to open on nth entry

    Me.Mycombobox.Value = Me.Mycombobox.ItemData(n) ItemData index starts with 0
  15. joelflorendo

    Moving folders based on date

    whoops...forgot the NOT. Dim fldDaily Dim fldMonth fldDaily = "c:\scanusers\dataentry\completed archive\" & Year(Date) & "-" & Month(Date) & "-" & Day(Date) fldMonth = "c:\scanusers\dataentry\" & Year(Date) & "-" & Month(Date) Set objFSO = CreateObject("Scripting.FileSystemObject") If Not...
  16. joelflorendo

    Moving folders based on date

    Sorry, thought I'd used Dir in vbscript before... Dim fldDaily Dim fldMonth fldDaily = "c:\scanusers\dataentry\completed archive\" & Year(Date) & "-" & Month(Date) & "-" & Day(Date) fldMonth = "c:\scanusers\dataentry\" & Year(Date) & "-" & Month(Date) Set objFSO =...
  17. joelflorendo

    Moving folders based on date

    I think you were on the right track. I used variable names that made more sense to me for what you're trying to do but you can change them back if you prefer. The Dir() function tests if a file or folder exists and returns blank if not. In this case, you can use it to test if the Monthly folder...
  18. joelflorendo

    Making VBA select multiple criteria in a listbox on a webpage

    Did you create your IE object? Dim objIE as Object Set objIE = CreateObject("Application.InternetExplorer") Maybe you should post what code you have.
  19. joelflorendo

    search criteria as unenclosed text

    The * is a wildcard search. It represents 0 or more characters. So a search on "like appl*" will return matches like "apple" and "application". You wouldn't really enclose anything with * unless you want to allow for any number of characters before and after the criteria string (so *appl* will...
  20. joelflorendo

    Making VBA select multiple criteria in a listbox on a webpage

    I think you can just use the value property of the listbox once you have its ID and set it equal to one of the options: objIE.Document.All("listBox_P1798642992").Value = "ADJ-Q1-2011"

Part and Inventory Search

Back
Top