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!

Recent content by kettch

  1. kettch

    Work with FP7 files

    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
  2. kettch

    document.images is empty

    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"...
  3. kettch

    Error Reporting

    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...
  4. kettch

    Error Reporting

    That did it. Thanks a bunch!
  5. kettch

    Error Reporting

    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...
  6. kettch

    Querying Embedded c-tree

    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
  7. kettch

    Crypto key store

    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...
  8. kettch

    PNG transparency clipping

    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...
  9. kettch

    Extensible Schema

    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...
  10. kettch

    Cryptostream troubles

    Yes, they are supported by the base class, but it is overriden and disabled for the cryptostream.
  11. kettch

    Continuous form (like Access)

    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?
  12. kettch

    Cryptostream troubles

    by size do you mean length? CryptoStreams don't support seeking which is required to get the length.
  13. kettch

    Cryptostream troubles

    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.
  14. kettch

    Cryptostream troubles

    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...
  15. kettch

    VS.NET 2k5 - compile to .NET 1.1?

    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...

Part and Inventory Search

Back
Top