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

  1. hambakahle

    custom checkbox and vertical text

    Because of screen real estate limitations, I thought checkboxes with vertical text would be useful and decided to give custom controls an inaugural attempt. Below is a simple control class: unfortunately it renders a proper checkbox graphic, but no visible text. I'd appreciate comments as to...
  2. hambakahle

    Table defined number or date converts to text when read in VBA

    The type conversion functions (cdbl, cint, etc.) with unknown input have hazards similar to IsNumeric() plus potential overflow problems. Dim s As String s = "1239d45" Dim dbl As Double dbl = CDbl(s) MsgBox CStr(dbl) displays 1.239E+48 "123d945" generates an overflow on casting to double...
  3. hambakahle

    multitable bindingsource

    I have 2 related tables: tblItem (child) and tblSetItem (master). I am attempting to filter tblSetItem and obtain a related subset from tblItem. Can anyone comment on why an exception is being raised: "DataMember property 'tblSetItem_tblItem' cannot be found on the DataSource." I can...
  4. hambakahle

    vb.net translation (ishellitem)

    The following vb.net code block serves to retrieve Windows thumbnails. I like some opinions as to whether it will translate to VBA or whether a better route will be to amend to a vb.net class and create a .dll ? Thanks much. Public Enum SIIGBF 'SIIGBF_RESIZETOFIT = 0...
  5. hambakahle

    image path > stdPic > clipboard issue

    Strongm, Thank you for staying with this thread. You've been very helpful. I did get the clipboard.dll registered. With Windows 7 it meant placing copies of the dll in BOTH SysWow64 and System32 folders and then following the normal admin regsvr32 procedure. Otherwise, plopping the dll just...
  6. hambakahle

    image path > stdPic > clipboard issue

    The dll isn't the preferred route, but it would have been interesting for a test. Unfortunately it won't register on Win7 32 bit. Binary and/or dependency issues. I pulled up Dependency Walker and it refused to find clipboard.dll in the Open dialog. So a bit of a rabbithole at the moment.
  7. hambakahle

    image path > stdPic > clipboard issue

    Thank you, strongm, for the WIA heads up. I fondly remember the Kodak control and wasn't familiar with the WIA library. It will be useful. So tif > stdPicture is fine. However, exchanging a couple of pages of code for a mere few lines did seem a wee bit too good. I'm using VBA 7.0 and I...
  8. hambakahle

    image path > stdPic > clipboard issue

    My apologies to the VB guys on the forum since I am doing this on an Access/VBA platform, but it does seem to be primarily an API issue. I want to be able to pass an image to the clipboard based on the image file path and do so based on a variety of image types. Converting the image file to...

Part and Inventory Search

Back
Top