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!
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...
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!
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(?)
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"...
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...
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...
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...
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.
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.
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...
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...
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"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.