Is it possible to work with FP7 file using the FileMaker ODBC driver without actually needing to have FileMaker installed?
I can't seem to get it to work unless I have FileMaker open, with the database file opened.
Thanks
Is there any circumstances where the document.images collection would be empty, even though there are images on the page?
Here is the HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr"...
It's not my app. It's not even my choice. I only have to force the product to work. I'm not inclined to waste any more time than necessary fixing it, even if it is open source. All of the messages are deprecation warnings from PHP. I'm just not going to update the runtime until the product is...
I have just installed PHP 5.3 and dotProject. However when I try to navigate to the application PHP throws a large number of warnings about deprecated code. The recommendation from dotProject is to tell PHP not to show deprecation warnings. However, when I looked in php.ini the default values...
Is anybody familiar with c-tree? I have an application that has it embedded as the datasource, and I'm trying to figure out how to do some custom reporting. I would like to know if there is any way programmatically access the data.
Thanks
I'm trying to make an asymmetric key available across all users of a machine.
Dim cp As New CspParameters()
cp.KeyContainerName = "Red Pill"
cp.Flags = CspProviderFlags.UseMachineKeyStore
Dim rsa As New RSACryptoServiceProvider(cp)
rsa.PersistKeyInCsp = False
rsa.Clear()
cp = New...
I have an application that allows a user to position a graphic on a surface. Once the graphic is positioned, it is saved as a PNG that is set to a certain size. The image is always saved as the same size, so that the image will have different amounts of transparency, depending on how large the...
I'm looking to do a project that will involve the user being able to add and remove fields on the fly.
One of my ideas involved having just basic entity table (for example: Contact), a Fields table (with the field name, datatype, etc...), and a link table that essentially has a link to the...
By continuous form do you mean the standard wizard created form for displaying a recordset in Access. It has buttons like <<first <back next> last>> ?
Are you creating a new set of controls for each row in the table?
interesting, if I set the memorstream's position to 0 I get "Length of the data to decrypt is invalid" at the readtoend line. If I don't set it to 0 I get an IndexOutOfRangeException.
I rearranged it to look like this:
Dim rsa As New RSACryptoServiceProvider()
rsa.ImportParameters(privateKey)
Dim rm As New RijndaelManaged()
rm.Key = rsa.Decrypt(symmetricKey, False)
rm.IV = rsa.Decrypt(symmetricIV, False)
Dim cryptDoc As...
To my knowledge you can not build 1.1 projects with 2005. You don't even need 1.1 installed for vs2k5 to work.
The backwards compatability was in 2003 because 1.1 was a minor release of the framework. For the most part 1.1 apps should run under 2.0, but there are no guarantees.
VS2k5 was built...
I am trying to decrypt an xmldocument object from a memory stream:
Dim rm As New RijndaelManaged()
rm.Key = rsa.Decrypt(symmetricKey, False)
rm.IV = rsa.Decrypt(symmetricIV, False)
'Dim doc As Byte()
Dim cryptDoc As Byte() =...
Thanks for your help. I guess it just boils down to a question of how does one print EMF files? What techniques are there, is the one that I am using the best way?
oh, you know, just hit a break point and then use the immediate window to manually run reportstream.removeat(1) until only the first item remains.
OK, I juse changed how I was rendering each page so that I wasn't passing it a specific StreamID to retrieve and it now returns 4 pages...
well, the documentation I saw said to count the number of streamid's that the render method returned and use that to determine how many pages to render. The problem was that the code for the printing only assumes as many pages as there were stream ids and breaks if the preview control tries to...
The start page just tells it what pages to render. The documentation I can find indicates that you are supposed to render first with all to get the page count and then pull down each page individually to actually get the EMF data. But, the documentation is pretty sparse for what I want to do.
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.