active questions tagged ordinals - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:56:30Z http://stackoverflow.com/feeds/tag/ordinals http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/649644/how-to-get-the-function-name-from-the-ordinal-number-in-a-com-dll 1 How to get the function name from the ordinal number in a COM dll Groo 2009-03-16T08:38:20Z 2009-07-18T14:12:51Z <p>Hi, I am trying to get actual function names from their ordinal numbers from a COM dll. I tried using <code>dumpbin.exe</code> but it only returns <code>[NONAME]</code> for each ordinal (except the first few).</p> <pre> ordinal hint RVA name 21 0 00002439 DllCanUnloadNow 25 1 00007F41 DllGetClassObject 116 2 0000539C DllMain 138 3 00008633 DllRegisterServer 176 4 00008640 DllUnregisterServer 1 0009152E [NONAME] 2 00154CA7 [NONAME] 3 00154C0B [NONAME] 4 000140C9 [NONAME] ... </pre> <p>The directory containing the .dll file doesn't contain any other files (*.tlb, *.lib, *.def).</p> <p>Could someone tell me how to get a list of these? Or at least the name of a specific ordinal using registry or something?</p> <p><strong>[EDIT: Additional info]</strong> I cannot find the .def file for the COM dll, so I cannot use it to get the name. I am not interested in instantiating the COM class, I only want to know what function is related to a specified ordinal.</p> <p>My original problem is that I have found an exception using WinDbg, which happens in ChartFXClientServerCore!Ordinal5507(+0x97b7), so I would like to see the specific function to try to isolate the problem.</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c 20 Is there an easy way to create ordinals in C#? GateKiller 2008-08-21T14:55:48Z 2009-06-09T09:29:50Z <p>Is there an easy way in C# to create <a href="http://is.gd/1NvM" rel="nofollow">Ordinals</a> for a number? For example:</p> <ul> <li>1 returns 1st</li> <li>2 returns 2nd</li> <li>3 returns 3rd</li> <li>...etc</li> </ul> <p>Can this be done through <code>String.Format()</code> or are there any functions available to do this?</p> http://stackoverflow.com/questions/69262/is-there-an-easy-way-in-net-to-get-st-nd-rd-and-th-endings-for-numbers 7 Is there an easy way in .NET to get "st", "nd", "rd" and "th" endings for numbers? Graphain 2008-09-16T03:53:16Z 2009-03-04T15:54:31Z <p>Hi,</p> <p>I am wondering if there is a method or format string I'm missing in .NET to convert the following:</p> <pre><code> 1 to 1st 2 to 2nd 3 to 3rd 4 to 4th 11 to 11th 101 to 101st 111 to 111th </code></pre> <p><a href="http://www.dotnet-friends.com/fastcode/csharp/fastcodeincsc3bd4149-03d0-40fe-90fd-63bcee77b43e.aspx" rel="nofollow">This link</a> has a bad example of the basic principle involved in writing your own function, but I am more curious if there is an inbuilt capacity I'm missing.</p> <p><strong>Solution</strong></p> <p>Scott Hanselman's answer is the accepted one because it answers the question directly.</p> <p>For a solution however, see <a href="http://stackoverflow.com/questions/69262/is-there-an-easy-way-in-net-to-get-st-nd-rd-and-th-endings-for-numbers#69284">this great answer</a>.</p> http://stackoverflow.com/questions/265097/is-there-a-vb-net-function-to-format-a-number-as-an-ordinal 0 Is there a VB.NET function to format a number as an Ordinal David A Gibson 2008-11-05T13:15:35Z 2008-12-08T12:46:46Z <p>Hello,</p> <p>The title says it all really, is there a built in VB.NET function to format a number as an Ordinal?</p> <p>Or do I have to write my own?</p> <p><a href="http://stackoverflow.com/questions/20156/ordinals-in-c">There isn't in C# so I'm thinking their isn't :(</a> </p> <p>Thanks</p>