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

    retrieve source for py2exe application

    Greetings all, We're trying to retrieve the code for an old python 2.4 program that was converted into a single-file executable using py2exe. Programmer left without updating the files in SVN. Using Seven Zip, I was able to retrieve from the .EXE file the *.pyo files for the imported modules...
  2. JustinEzequiel

    xml.etree.ElementTree - xml.parsers.expat.ExpatError: undefined entity

    from http://effbot.org/elementtree/elementtree-xmlparser.htm#attributes I thought that just setting the entity dict of the XMLParser instance would be sufficient but evidently it's not enough. what am I missing? I know that I can replace the named entities with their unicode equivalents but...
  3. JustinEzequiel

    Send To mail recipient annoyance

    just today noticed that I have the same problem as thread68-948746 which I see has not been resolved. (new laptop, windows 7 Pro 32-bit, MS Office 2003 Pro and have installed all the critical Windows 7 updates) the Send button does not to anything when clicked but Alt+S works. Saving the...
  4. JustinEzequiel

    Recorded macro: The requested member of the collection does not exist

    Using MS Word 2007, I recorded a macro to insert a table of contents. Resulting code below. ActiveDocument.AttachedTemplate.BuildingBlockEntries("Automatic Table 1"). _ Insert Where:=Selection.Range, RichText:=True When running the macro on the same document I used to record the...
  5. JustinEzequiel

    Open XML in Word 2003

    I get Reference to undefined entity 'foo' when trying to open this file in MS Word 2003 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE people_list SYSTEM "example.dtd"> <people_list> <person> <name test="&foo;">Fred &lt;&gt;</name> <birthdate>27&foo;2008</birthdate>...
  6. JustinEzequiel

    javascript's prompt(...) does nothing on my copy of IE8

    Greetings, I just noticed that javascript's prompt(...) function does nothing on my copy of IE8. No errors, no dialog, nothing. Will try reinstalling IE8 since it works on another machine with IE8 but would any of you have any ideas? alert(...), confirm(...) and all other javascript work...
  7. JustinEzequiel

    Windows Firewall blocks programs without the &quot;unblock&quot; dialog

    Greetings, I have the "Display a notification when Windows Firewall blocks a program" checked already but I still do not get the "Do you want to keep blocking this program?" Windows Security Alert. All check boxes are checked in Security Center's "Alert Settings". What am I missing? Microsoft...
  8. JustinEzequiel

    if ((x = SomeObj.MethodThatReturnsALong(42)) != null)

    Greetings, I know some JavaScript but this has me stumped. I am translating some vendor-supplied code to another programming language and I do not know how an assignment statement can or cannot return a null. I.e., is the snippet below checking if x is not null? If not, then what is the...
  9. JustinEzequiel

    MS Word lists to text

    Am asked to convert lists in MS Word docs (actually RTF files) to text preserving text wrapping and hanging indents. 1. First item goes all the way to end and wraps here for the second line followed by next number 2. Second point goes all the way to end and wraps here for...
  10. JustinEzequiel

    how to calculate lParam for SendMessage?

    Greetings helpful people, We use a console (DOS) program that we can only access via Remote Desktop. Since we already have (database) the data to input into the said remote console program, I was asked if I could automate the data entry. (database is appended to daily) I can get at the...
  11. JustinEzequiel

    OpenDSObject(&quot;LDAP://domain&quot;,u,p,...) and get employeeID attribute

    From thread222-1194741, I got code to authenticate a user. Set dso = GetObject("LDAP:") set ob1 = dso.OpenDSObject("LDAP://domain", strUserName,strPassword, ADS_SECURE_AUTHENTICATION + ADS_SERVER_BIND) This works just fine. Now they want me to retrieve...
  12. JustinEzequiel

    package.Execute fails in VB.net but succeeds in C#.net

    cross-posted at http://groups.google.com/group/microsoft.public.sqlserver.integrationsvcs How come the C# version succeeds when the VB version fails? //C# using System; using Microsoft.SqlServer.Dts.Runtime; namespace cs_console_SSIS { class Program { static void...
  13. JustinEzequiel

    Object reference not set to an instance of an object

    Yesterday when we came in, all reports on our server show the error. Last week, everything was fine. Have tried google and got hits re the web.config files. But checking vs my local installation show no difference re these files. What could we try besides reinstalling? Can we reinstall just...
  14. JustinEzequiel

    Could not load type IDtsPipelineEnvironmentService from assembly

    This happens when I try to add a Data Flow Task to the Control Flow tab in a new BIDS project. Laptop History: Had Visual Studio 2005 Pro installed for almost a year now. About 3 months ago, I installed SQL Server 2005 Express (with Reporting Services). No problems so far...
  15. JustinEzequiel

    Windows Picture and Fax viewer

    in 2005, SteveNUK wrote: Nobody replied and now, I have the same questions and cannot seem to find documentation on this on MSDN.
  16. JustinEzequiel

    xsl javascript firefox

    The following works just fine in IE but not in FireFox. What am I doing wrong? The FireFox page-loading indicator just keeps going but the page does not load completely. If I add a document.close(), the indicator stops but I do not get the rest of the output. FireFox output stops at the...
  17. JustinEzequiel

    worm disabled regedit

    got hit by Worm.Brontok.E.1 yesterday. I seem to have removed all infected files. however, I cannot get into the registry to clean up all traces. I need to be able to reset or delete the "DisableRegistryTools" key under HKCU|HKLM/software/microsoft/windows/currentversion/policies/system Worm...
  18. JustinEzequiel

    Page layout: Single Page

    Greetings. I am looking for a pdfmark to set Document Properties-->Initial View-->Page layout to "Single Page" Have scanned Adobe's pdfmarkReference.pdf without success.
  19. JustinEzequiel

    Memory usage grows until crash (Word 2003)

    Running a macro recorded by a colleague on MS Word 2003 SP1 causes memory usage to increase continuously (checked using task manager) until my machine (Windows XP SP2+256 MB of RAM) crashes. The same macro runs just fine on a different machine but with MS Word 2000. A modified version...
  20. JustinEzequiel

    creating a presentation on the benefits of using XSLT

    Hope you guys/gals can help. Presently, we are converting SGML files based on one DTD to SGML/XML/HTML files based on several other DTDs. These are tagged scholarly/scientific articles (full text including, bibliography, tables, equations, etc.) We do the translation using programs written in...

Part and Inventory Search

Back
Top