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: *

  • Users: kettch
  • Content: Threads
  • Order by date
  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

    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...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. kettch

    Cryptostream troubles

    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() =...
  9. kettch

    Printing Problem

    I need to be able to print a report from report server on my own terms, so I have written some code to retrieve the report rendered as EMF and preview it, and then print it. The problem is that the PrintPage event of the printdocument fires too many times and causes an exception in the...
  10. kettch

    Mobile style properties

    The asp.net mobile controls Label has a backcolor property. How do I get that to be passed through to the markup that gets sent to the client? Consider this: <mobile:Label ID="Label4" Runat="server" BackColor="blue">Label Text</mobile:Label> this color doesn't get applied client...
  11. kettch

    Localization

    Is there any way to find out the culture of the visitor to a asp.net website? Or even just the UTC offset would be great. For the desktop applications all of the date and time data in the database is stored in UTC and then converted to local time according to wherever the local culture/timezone...
  12. kettch

    propertygrid dropdown options

    I've seen plenty of examples on how to display some sort of dropdown list as an item in the propertygrid, but I'm having trouble figuring out how I am supposed to tell one selected value from the next. Is there some way that I can associate an index key to each of the items in the list? Is it...
  13. kettch

    Expose Hashtable Keys

    Does anybody know if there is another way to expose Hashtable keys? I think what I want to do is have a hashtable (or something similar) that can expose it's keys as properties. So that hTable("KeyValue") would become hTable.KeyValue I don't know if it's possible, but it would save me whole lot...
  14. kettch

    CodeDom temp file locations

    How do I change the location that the codedom uses to store it's temp files? I tried setting the CompilerParameters.TempFiles property to New TempFileCollection(<path>, False) but it doesn't seem to change anything. What am I doing wrong? Thanks...
  15. kettch

    StreamReader problem

    I start out by having a streamwriter write to a memorystream. Then later on I want to retrieve the data from the memorystream. The code, in it's basic form, looks like this: Dim ms As New MemoryStream Dim sw As StreamWriter = New StreamWriter(ms) //code that writes to the...
  16. kettch

    DateTime recurrence pattern

    Part of the application I'm working on requires scheduling function that is similar to the outlook meeting scheduler. It lets you schedule something for every x weeks on x days. The problem that I am having is figuring out how to actually map those selections to specific dates. What would be...
  17. kettch

    ActiveX Control + Context Menu

    If I place any activeX control on a form, and then associate a context menu with it, I can get the context menu to appear but when I click on a MenuItem in the context menu, then the event associated with that item does not fire. Does anybody know if there is something else I should be doing...
  18. kettch

    Read data from USB

    Does anybody know how to read data coming from a USB port? I don't care about controlling the device or anything I just want to passively listen. It's an ATI Remote Wonder that came bundled with some other hardware and I don't have any use for it. I'd like to use it for other functions. If I...
  19. kettch

    Importing Outlook Contacts

    Does anyone have experience importing outlook contacts that have been exported as either a tab delimited file or a csv? I'm struggling with how to approach this. We need to be able to import from different versions of outlook. This means that depending on the version, the csv is going to have a...
  20. kettch

    Web service compatable datatypes

    I have some methods in a web service that return an arraylist, and I keep getting compiler errors like this: Value of type '1-dimensional array of System.Object' cannot be converted to 'System.Collections.ArrayList'. I have found that this is because WSDL.exe changes arraylists into object...

Part and Inventory Search

Back
Top