Category: MarcEdit
-
MarcEdit 5.0 Update (Doh!)
Seems I have to modify my build procedures now that I’ve given a few libraries strong names and placed them in the GAC. Unlike previously, each component simply used whatever the current library was in the program directory. Unfortunately, now that the MARCEngine is signed, each component that links to it needs the reference recompiled. …
-
MarcEdit 5.0 Updated
I posted a new update online. Small changes only — again, still adding a few more polish to the program. The two primary changes affect the Extract Selected MARC Records, Delete Selected MARC Records and Export Tab Delimited MARC records. Moreover, in changing the Export Tab Delimited MARC Records, I had to make a change…
-
MarcEdit 5.0 updated
You really won’t notice the change, but I made a few updates to the language files (updating elements) and then have put in a few additional refinements (i.e., saving/reloading elements in the export tab deleted utility [right click on the arguments list to initialize the menu]) As always, the update can be picked up from:…
-
MarcEdit 5.0 Update (Language File Editor)
Most folks know that MarcEdit 5.0 allows users to localize the application — and in some respects, it does this very differently then most applications. Most applications utilize a resource file to store strings/resources utilized by the application. MarcEdit 5.0 is different — MarcEdit 5.0 utilizes an xml-based language file (or files) and a custom…
-
MarcEdit 5.0 update
To deal with servers that provide either http headers in invalid formats or servers that use proxies with expired certificates, I ended up having make a few adjustments to the Verify URL utility. To get an indepth explaination of what changes were made, please see: Dealing with expired security certificates: https://blog.reeset.net/archives/166 Dealing with invalid http…
-
MarcEdit 5.0 Url Checker
This is one of those tools that I’m going to be working on a bit more (I want to setup a thread pool to speed up the processing), but for now, it works ok. The process allows you to specify within a MARC record what http elements you’d like to check. You check all (and…
-
Two examples working with MarcEdit 5.0’s new COM
MarcBreaker Example: Dim objMARC Set objMARC = CreateObject(“MARCEngine5.MARC21”) ‘These files are not provided. You will need to use your own test files. This example is only to show syntax. lret = objMARC.MarcFile(“C:\Documents and Settings\reeset\Desktop\cyrillic.mrc”, “C:\Documents and Settings\reeset\Desktop\cyrillic.mrk”) msgbox “here” The above is the general MarcBreaker function. This will work with either MARC-8 or the UTF-8 characterset. …
-
MarcEdit 5.0 Update
MarcEdit 5.0 beta Update Ok — I’ve posted a new version of MarcEdit. This update includes the following major changes: Z39.50 changes — I’ve updated the interface in the single search mode. When clicking edit settings, the program would continually call he click event (frustrating). Z39.50 changes — I’ve modified the master db a bit…
-
MarcEdit 5.0 & COM II
So it looks like I’ve gotten this working. I’m going to be sending a private build out to a few testers tomorrow to see if they can confirm that it’s working outside of my controlled environment. The solution ended up being one that I wasn’t all that wild about, but there wasn’t much I could…
-
MarcEdit 5.0 and COM
I’m looking to release an update to MarcEdit this weekend to include the following: COM automation objects to the new MARCEngine zipped version of files needed to run the command-line version of MarcEdit on other platforms So what’s been the hangup with the COM — well two things. First, Microsoft has a C# specification on…