Hi,
Several companies regularly send us password-protected PDFs, along with the passwords to open them. The problem is that our automated document processing system requires that PDFs have no security measures enabled.
We're using Acrobat 6.0. Is there a reliable way to remove password...
Hello, experts!
I'm unsure if this is the appropriate forum, but the Exchange forum didn't seem to deal much with scripts. So, if this is the wrong place, apologies.
I am trying to write a script that will run when messages in a given public folder are posted or modified, and removes embedded...
The TabControl itself doesn't have a BackColor property. However, individual tabs do, so you can change it like so:
tabPage1.BackColor = System.Drawing.Color.Red;
What is the class's namespace? I would try using the command "using <namespace>" where <namespace> is the title of ErrUtil's namespace. Hope this helps!
Thank you for your reply! Your suggestion to pass a pointer is interesting, but unfortunately the class is non-blittable, and Marshall.StructToPtr will not generate the pointer needed.
I am trying to pass a complex object (a third-party component) as a parameter to a reflected method. The call to MethodBase.Invoke works properly, but when the actual method itself begins, so does the trouble.
Invariably, at runtime the method throws an exception stating that
Object of type...
Never mind, I was able to generate the proper values using a VBA module attached to a button's OnClick event. Code below:
'Container variables
Dim SQL, temp, p1, p2, p3, p4, p5, p6, p7, p8, c, q As String
Dim rec As Recordset
Set rec = CurrentDb.OpenRecordset("Passenger", dbOpenDynaset)
Set...
I also tried using a macro that executes when the form opens that attempts to set the value of the field to "(SELECT Count(*) FROM Passenger) + 1". When the form opens, a message informs me that the macro has failed.
I'm suspecting that maybe forms and SQL Aggregate functions don't mix, but I...
On a form (bound to the table 'Passenger')in Data Entry mode, I would like to have a text box bound to the primary key, automatically generate a default value. The primary key is an ID number, which is simply one greater than the previous entry.
I've attempted several things.
I've placed this...
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.