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

  1. TommyIndigo

    Truncated text when printing or exporting

    Hello, I've designed a report that renders fine from the UI, but when printed or exported (to Word or PDF), several (but not all) fields are truncated to one line, instead of growing. I verified all fields indeed have "Can Grow" set to true, and the misbehaving fields have the EXACT same...
  2. TommyIndigo

    Modify output of a Javascript widget

    Hello, I'm working with a JS widget from LinkedIn that provides connection info for a given company. LinkedIn provides the following code (via a tool on their website). This runs well, but I need to alter the format and some content. There is no HTML output that I could use a script to...
  3. TommyIndigo

    How to open file directly on the server

    Hi, I have an Access DB (2007) stored on a server. A function within this DB opens a data file for reading and imports it into the database. The function includes a path to the file to be opened. Users are connecting to this database via a network share. It seems the function to open the...
  4. TommyIndigo

    Corrupted libraries of Office installation?

    I have an Excel workbook with quite a bit of code throughout. It uses the VBA, Excel, and MS Forms libraries. It works fine for 10 of 12 users. The two problem users get errors as though their libraries aren't installed. Simple functions like Space() are erroring out for them. I checked...
  5. TommyIndigo

    This Page Cannot Be Displayed error appearing inconsistently

    Hello, I'm the administrator for an intranet-based application. In my 9 years of administering this app, I've never seen this issue! SOME users get the dreaded "This page cannot be displayed....cannot find server or DNS error" error for a particular page on the site, while most others do not...
  6. TommyIndigo

    Parse HTML with VBA

    I'm trying to parse an HTML file, so I can eventually pull data into my Access database. I've come across DOM and MSXML, but not sure how to tackle this. I can write my own logic once I can get to the tags. I will need to examine tag attributes, and values for the tags. For example, one...
  7. TommyIndigo

    getURL - layer or browser problem?

    I am using the following basic code to open an external html file. I want the browser to fully redirect to this URL (not open a new window)...hence the use of "_self": on (release) { getURL("http://www.mydomain.com/registration.html","_self"); } This seems to work intermittently. I...
  8. TommyIndigo

    Version control WITHOUT local workspaces

    I am managing a rather complex website that uses Perl and many configuration files in addition to content that lives in XML files. We currently use Perforce, and am now investigating other tools like CVS, however it seems to have the same issue we're stuggling on with Perforce. I would like to...
  9. TommyIndigo

    Inserting custom Flash button into Dreamweaver

    Not sure if this should be in the Flash forum, but... I created a Flash button swf file. I want to insert it into Dreamweaver. I am using Insert/Media/Flash. The button appears on the rendered page, but doesn't work. I would assume there would be a basic integration to allow a Flash button...
  10. TommyIndigo

    Authentication fails when using IE on the server itself

    I'm the admin for an intranet site. Clients access the site via their Internet Explorer browser, and Integrated Windows authentication is used. I am trying to access the site via Internet Explorer directly on the server, but am always challenged for id/password...even though I'm logged on to...
  11. TommyIndigo

    Authentication problem only when directly on the server

    I'm the admin for an intranet site. Clients access the site via their Internet Explorer browser, and Integrated Windows authentication is used. I am trying to access the site via Internet Explorer directly on the server, but am always challenged for id/password...even though I'm logged on to...
  12. TommyIndigo

    Timeout

    I'm running a script that cycles through a lengthy loop. Within the loop, various text files are parsed and a SQL Server db record is appended. I'm opening the db connection before the loop, and closing it afterwards. This program works flawlessly with a small amount of test data, but now in...
  13. TommyIndigo

    Win32::OLE - Find a cell matching a value

    I'm using Win32::OLE, and need to extract some data from multiple workbooks/worksheets. My problem is that the target data isn't always in the same cells. For instance, on one workbook, the value for cell A1 is the string "Last Name". Then, the value in B2 would be the last name the user...
  14. TommyIndigo

    ParseExcel picking up cell value from wrong worksheet

    I am using Spreadsheet-ParseExcel, and it works well normally...however I am using it now with a rather complex Excel workbook that contains many macros and graphics. I can get the value for the correct cell, however it comes from the wrong worksheet. I played around with the target...
  15. TommyIndigo

    Install OLE::Storage_lite on Win32

    I am using PPM to install OLE-Storage lite, however I receive the error: Error installing package 'OLE-Storage_lite': Read a PPD for 'OLE-Storage_lite', but it is not intended for this build of Perl (MSWin32-x86-multi-thread) I have previously used PPM to install other packages, including...
  16. TommyIndigo

    How to run an .exe file on the server

    We have created an .exe file that, if run from a client machine, will change some Windows Explorer file type settings. For example, if the client used Start/Run and then typed \\server_name\share\path_to_file\file.exe it runs fine, and this configuration setting is updated on their client...
  17. TommyIndigo

    Hide table row with only name of input field

    I have a select field I need to use to toggle visibility of other form fields. I am writing an onchange function to do this. My problem is that the label for the field still appears...so I would like to hide the entire row. However, I cannot place an ID in the <TR> tag, as the form is...
  18. TommyIndigo

    Global Variable Returning Undefined

    Using MX 2004 Pro - In my main movie, I have a global variable that I am setting using: _global.MyVar = "test"; The main movie then dynamically loads other .swfs on higher levels. One of these loads another .swf on yet a higher level. I am trying to access the value of this variable from...
  19. TommyIndigo

    Tabbing WITHIN a dynamic text field

    I have a multiline dynamic text field with dynamic text coming in from PHP via loadVars. It works fine, but I'm trying to align the text within the field. I am sending \t in the PHP string, and it indeed tabs. I would like to change the default tab stops within the text field. Is this...
  20. TommyIndigo

    WHERE statement concerning date field

    I'm pulling my hair out with what seems to be a simple operation. My table has a DATE field. I'm simply trying to pull out records that satisfy the highest date in the table. Via PHP, I'm first running a query to get the highest date value--that works fine. Then I try to run a second query...

Part and Inventory Search

Back
Top