User mrok - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T10:29:51Zhttp://stackoverflow.com/feeds/user/33417http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1574844/showing-multiple-cvs-files-in-a-c-winform-app-using-axspreadsheet-control0Showing multiple cvs files in a c# winform app using AxSpreadsheet controlmrok2009-10-15T20:31:08Z2009-10-15T20:31:08Z
<p>Hi,</p>
<p>I am using the AxSpreadsheet control, how can I show multiple cvs files as worksheets on this control? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1502526/using-p-invoke-to-call-a-function-from-a-c-api0Using p/invoke to call a function from a C apimrok2009-10-01T08:01:41Z2009-10-15T11:26:17Z
<p>I have a C api and I am using p/invoke to call a function from the api in my C# application. The function signature is:</p>
<pre><code>int APIENTRY GetData (CASHTYPEPOINTER cashData);
</code></pre>
<p>Type definitions:</p>
<pre><code>typedef CASHTYPE* CASHTYPEPOINTER;
typedef struct CASH
{
int CashNumber;
CURRENCYTYPE Types[24];
} CASHTYPE;
typedef struct CURRENCY
{
char Name[2];
char NoteType[6];
int NoteNumber;
} CURRENCYTYPE;
</code></pre>
<p>How would be my C# method signature and data types? </p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1509060/how-can-i-share-a-resource-file-between-projects-in-visual-studio0How can I share a resource file between projects in Visual Studio?mrok2009-10-02T11:49:05Z2009-10-02T11:51:20Z
<p>Hi,</p>
<p>I am using C# and how can I code to share a resource file between my projects in the same solution?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1437015/how-can-i-embed-complex-types-into-wsdl-definition2How can I embed complex types into wsdl definition?mrok2009-09-17T06:25:27Z2009-09-17T07:09:47Z
<p>Hi,</p>
<p>WCF generates complex types as external xsd files. How can I embed these definitions into wsdl? Because Delphi WSDL importer cannot import the complex types in the xsd files.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1426582/printing-from-rdlc-report-to-dot-matrix-printer0Printing from RDLC report to Dot Matrix Printermrok2009-09-15T11:23:23Z2009-09-16T07:42:20Z
<p>Hi,</p>
<p>I am trying to print a RDLC report to a dot matrix printer using Generic/Text only printer driver in windows xp. But the problem is that, I am not getting the proper output as I am able to see in the preview of the report. In the print preview the report the output is perfect. But when I print to the printer, some of the fields are shrinked and not displayed completely. When I increase the width of the column in the table, its printing only some columns as it does not fit. So I hope someone can help me to sort out this issue.</p>
http://stackoverflow.com/questions/1371788/how-can-import-a-wsdl-file-in-delphi-offline1How can import a wsdl file in Delphi offline?mrok2009-09-03T06:57:10Z2009-09-03T07:44:00Z
<p>Hi,</p>
<p>I have a web service and an outsource company will use my service. I don't want to open my service to the internet. I want to give only wsdl file to the outsource company. They use Delphi. Is this possible importing a wsdl file in Delphi offline?</p>
http://stackoverflow.com/questions/848445/how-can-i-embed-microsoft-sql-server-2008-report-builder-into-my-forms3How can I embed Microsoft SQL Server 2008 Report Builder into my forms?mrok2009-05-11T14:43:04Z2009-07-20T22:28:56Z
<p>I don't want to open Report Builder from Report Manager. I want to embed Report Builder into my forms. Is there any way?</p>
http://stackoverflow.com/questions/1096569/difference-between-onload-method-and-load-event1Difference between OnLoad method and Load event?mrok2009-07-08T07:18:11Z2009-07-08T08:39:38Z
<p>Hi,</p>
<p>What is the difference between OnLoad method and Load event? I am developing WinForm controls.
Should I register to Load event or override the OnLoad method? What are the advantages and the disadvantages of each one?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1031438/python-django-or-c-asp-net-for-web-development0Python/Django or C#/ASP.NET for web development? mrok2009-06-23T09:01:30Z2009-06-24T03:27:10Z
<p>Hi,</p>
<p>I am a .NET developer. I have no experience on Python. Which platform is more scalable? Which platform is more suitable for large-size high-traffic web sites? If you have any experience about scalability on these platforms, please inform us.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/969986/c-list-order-with-3-properties-net-2-0/970035#9700350Answer by mrok for C# List<> Order with 3 properties .Net 2.0mrok2009-06-09T13:19:57Z2009-06-09T13:19:57Z<pre><code>var result = from p in persons
orderby p.Name, p.Age, p.Level
select p;
</code></pre>
http://stackoverflow.com/questions/863083/quickwatch-window-intellisense-problem0QuickWatch window intellisense problemmrok2009-05-14T12:37:23Z2009-06-01T14:24:29Z
<p>Hi,</p>
<p>I use ReSharper but I cannot use intellisense on the QuickWatch window. Resharper disables this feature. Do you know any solution?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/114733/reportviewer-modify-toolbar/630885#6308850Answer by mrok for ReportViewer - modify toolbar?mrok2009-03-10T15:51:33Z2009-03-10T15:51:33Z<p><a href="http://www.codeproject.com/KB/cs/custreport.aspx" rel="nofollow">This</a> article can be useful to customize toolbar.</p>
http://stackoverflow.com/questions/273451/which-platform-should-i-use-native-c-or-c5Which platform should I use : native C++ or C# ?mrok2008-11-07T20:03:06Z2008-11-28T21:53:53Z
<p>I want to develop a windows application. If I use native C++ and MFC for user interface then the application will be very fast and tiny. But using MFC is very complicated. Also If I use C# then the application will be slower than the native code and It reqiures .NET framework to run. But developing GUI is very easy by using WinForm. Which one do you prefer? </p>
http://stackoverflow.com/questions/273165/what-is-the-purpose-meaning-of-the-version-property-on-a-formsauthenticationticke/273280#2732801Answer by mrok for What is the purpose/meaning of the Version property on a FormsAuthenticationTicket?mrok2008-11-07T19:17:19Z2008-11-07T19:17:19Z<p>Just storing the ticket version number, you can understand the structure of the ticket by this value. It stores 1 for asp.net 1.1 and 2 for asp.net 2.0. Maybe in the future Microsoft will add some extra fields to the ticket then the version number will be 3.0. This number can be used by another software to differentiate tickets. </p>
http://stackoverflow.com/questions/273108/which-programming-languages-have-helped-you-to-understand-programming-better/273228#2732289Answer by mrok for Which programming languages have helped you to understand programming better?mrok2008-11-07T19:06:24Z2008-11-07T19:06:24Z<p>Turbo Pascal is my favorite programming language to learn basics. Its syntax is very clean, has pointers and very easy to start. </p>
http://stackoverflow.com/questions/269613/where-do-you-get-the-best-in-depth-information-for-c-programming/269651#26965117Answer by mrok for Where do you get the best in-depth information for C# programming?mrok2008-11-06T18:00:44Z2008-11-06T18:00:44Z<p>I recommend you Jeffrey Richter's "<a href="http://rads.stackoverflow.com/amzn/click/0735621632" rel="nofollow">CLR via C#</a>" book. You can learn CLR features and how does c# implement them. Also you can learn a lot about multithreading in c#, localization, appdomains etc. .net topics.</p>
http://stackoverflow.com/questions/744980/hide-mouse-cursor-after-an-idle-time/745227#745227Comment by mrok on Hide mouse cursor after an idle timemrok2009-10-28T12:19:37Z2009-10-28T12:19:37Zan elegant solution, thank youhttp://stackoverflow.com/questions/1574844/showing-multiple-cvs-files-in-a-c-winform-app-using-axspreadsheet-controlComment by mrok on Showing multiple cvs files in a c# winform app using AxSpreadsheet controlmrok2009-10-19T12:52:55Z2009-10-19T12:52:55ZI am sad, no answer :(http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production/359061#359061Comment by mrok on Anyone Actually Using F# in Production?mrok2009-10-07T10:32:04Z2009-10-07T10:32:04Zyour book is wonderful. I will buy it.http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production/359061#359061Comment by mrok on Anyone Actually Using F# in Production?mrok2009-10-07T09:29:50Z2009-10-07T09:29:50Zcool article, thanks for the link.http://stackoverflow.com/questions/1509060/how-can-i-share-a-resource-file-between-projects-in-visual-studio/1509072#1509072Comment by mrok on How can I share a resource file between projects in Visual Studio?mrok2009-10-02T11:55:19Z2009-10-02T11:55:19ZThank you, I couldn't see the visibility type :)http://stackoverflow.com/questions/1502526/using-p-invoke-to-call-a-function-from-a-c-api/1502617#1502617Comment by mrok on Using p/invoke to call a function from a C apimrok2009-10-01T08:50:37Z2009-10-01T08:50:37Zit works perfectly, thank youhttp://stackoverflow.com/questions/1086290/c-reportviewer-control-export-programatically/1086316#1086316Comment by mrok on C# reportviewer control export programaticallymrok2009-09-24T08:04:49Z2009-09-24T08:04:49Zthanks a lot, I am looking for thishttp://stackoverflow.com/questions/1437015/how-can-i-embed-complex-types-into-wsdl-definition/1437169#1437169Comment by mrok on How can I embed complex types into wsdl definition?mrok2009-09-17T07:49:57Z2009-09-17T07:49:57Zthank you for the links.http://stackoverflow.com/questions/457603/another-wsdl-importer-for-delphiComment by mrok on Another wsdl importer for delphi?mrok2009-09-16T13:36:50Z2009-09-16T13:36:50ZI totally agreehttp://stackoverflow.com/questions/1426582/printing-from-rdlc-report-to-dot-matrix-printerComment by mrok on Printing from RDLC report to Dot Matrix Printermrok2009-09-15T11:54:10Z2009-09-15T11:54:10ZI am referring to both. http://stackoverflow.com/questions/1371788/how-can-import-a-wsdl-file-in-delphi-offline/1371908#1371908Comment by mrok on How can import a wsdl file in Delphi offline?mrok2009-09-03T07:57:13Z2009-09-03T07:57:13Zvery good answer, thank youhttp://stackoverflow.com/questions/384931/how-do-i-get-an-icon-from-a-png-image/385000#385000Comment by mrok on How do I get an Icon from a png image?mrok2009-08-06T12:34:29Z2009-08-06T12:34:29Zthank you, I need this program ;)http://stackoverflow.com/questions/394588/is-there-any-perfomormance-differences-between-binary-and-xml-serialization/395096#395096Comment by mrok on Is there any perfomormance differences between binary and XML serialization?mrok2009-06-25T13:09:04Z2009-06-25T13:09:04Zthank you, protobuf-net is very good.http://stackoverflow.com/questions/510839/using-base-in-a-class-nameComment by mrok on Using "Base" in a Class Namemrok2009-06-12T07:49:01Z2009-06-12T07:49:01Zgood question. thankshttp://stackoverflow.com/questions/480538/use-xml-includes-or-config-references-in-app-config-to-include-other-config-files/480750#480750Comment by mrok on Use XML includes or config references in app.config to include other config files' settingsmrok2009-05-17T12:52:06Z2009-05-17T12:52:06Zvery very good information, thanks.