iso

What is the correct way of getting the start and end date of a ISO week number in TSQL?

I have the ISO week and year but how do I correctly convert that into two dates representing the start and end of that week? ...

How to Digitally "Sign" a document

I don't like paper documents. I like everything stored on a server. I'd like to avoid printing, signing, and scanning, if possible. How do I get signatures from people to sign-off on forms and still keep it digital? The purpose of signing is to prove that certain departments have OK'd the document. Most of these people are non-techn...

How to calculate CRC_B in C#

How to calculate CRC_B encoding in C# as described in ISO 14443? Here is some background info: CRC_B encoding This annex is provided for explanatory purposes and indicates the bit patterns that will exist in the physical layer. It is included for the purpose of checking an ISO/IEC 14443-3 Type B implementation of CRC_B encodi...

How to build a CD ISO image file from the windows command line?

In an effort to satisfy "The Joel Test" question #2 "Can you make a build in one step?", I'm trying to complete a release candidate build script with the creation of a CD iso from the collection of files gathered and generated by the installer creator. There seem to be many good tools (many free) out there that will create ISOs, but I n...

ISO Country/Currency data

All, Our application requires data on ISO countries and currencies (where the data must be up to date). We did purchase country/currency data from ISO themselves, however we still needed to perform alot of manual manipulation of the data, as well as write our own tool to read and process the data into our database. Are we going about ...

Best way to convert UIF to ISO

I have a UIF file and would like to convert it to an ISO file. What is the best way to do this on Windows. ...

.NET Currency exponent ISO_4217

Hi guys, I'm developing something for international use. Wondering if anyone can shed any light on whether the CultureInfo class has support for finding currency exponents for particular countries, or whether I need to feed this data in at the database level. I can't see any property that represents this at the minute, so if anyone kn...

Why is getcwd() not ISO C++ compliant?

This MSDN article states that getcwd() has been deprecated and that the ISO C++ compatible _getcwd should be used instead, which raises the question: what makes getcwd() not ISO-compliant? ...

Pack existing ubuntu installation to iso

How would you pack a current installation of linux to an iso that can be used to boot from? What I'm trying to do is have my current ubuntu installation on a dvd and whenever I'm using a different computer, I could boot from the dvd and have my whole environment already there. ...

Is there DTMF API or standard that includes letters as well as standard numeric values?

I have not been able to find any literature on the subject. ...

Using an iso to create a VMware vmdk

Can anyone point me to some documentation about how I can use an Iso to create a Vmware environment. For instance, there's this guy who made his own version of Ubuntu, with loads of extra programs added. Before I try this, I'm gonna test it using vmware server. But I'm kinda confused as to how to do this with only the ISO file. ...

How can I determine the storing standards, such as UTF-8, for files?

The question arises from the reply. How can I change the storing from an ISO-standard to UTF-8? Some details: I used Mac with some ISO-standard. I formatted it, so I cannot know the exact ISO-standard. Now, I use Ubuntu, and I try to switch my Mac-latex-files from the ISO to UTF-8. ...

Source of ISO data in xml format?

Hi All, I was just wondering if anyone knew of a source of standard ISO data in xml format, such as ISO 3166 (Country codes/names), ISO 4217 (Currency Codes) or ISO 639 (Languages)? If it was in any way 'official' and maintained with any changes to the standards that would be great! Thanks, S UPDATE: I can't use files with non-comm...

Declaring fixed-size integer typedef in Standard C

Is there a reliable way to declare typedefs for integer types of fixed 8,16,32, and 64 bit length in ISO Standard C? When I say ISO Standard C, I mean that strictly: ISO C89/C90, not C99. No headers not defined in the ISO standard. No preprocessor symbols not defined in the ISO standard. No type-size assumptions not specified in the ...

Should i use ISO 3166 country codes (US) or culture codes (en-US) ?

ISO 3166 has a list of 2 character country codes such as US, UK, FR. A shopping cart I've used has both these codes and also the culture codes such as en-US or en-UK. For a separate project I thought that the longer code is more useful because it at the very least tells me the language used by that country. But i cant seem to find an a...

How to download Visual Studio Express Edition ISO from an FTP Mirror

Does Microsoft provide the ISOs of Visual Studio Express Edition 2008 via FTP? I have doubts they do but if anyone knows... please let me know. ...

ISO standards for .NET 3.5

Does anyone know the ISO standard that covers .NET 3.5? I found ISO/IEC 23270:2006, but I am not sure if this is the right/latest one. I need to put this in my SRS document. ...

python write CD/DVD iso file

I'm making a cross-platform (Windows and OS X) with wxPython that will be compiled to exe later. Is it possible for me to create ISO files for CDs or DVDs in Python to burn a data disc with? Thanks, Chris ...

Failing to load font after burning to disk

I have an application which has a font stored within a jar file. It is loaded with: public Font getChessFont() { InputStream in = ClassLoader.getSystemClassLoader().getResourceAsStream("fonts\\MERIFONTNEW.TTF"); Font toReturn; try { toReturn = Font.createFont(Font.TRUETYPE_FONT, in); } catch (Exception e) { toReturn = gam...

Creating raw ISO image

How can I create raw ISO Image ? I mean I am programming simple system in assembler and I want to create an ISO which could put binary file (whole system is in one file) in BootSector. Could you help ? ...