User mrok - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:29:51Z http://stackoverflow.com/feeds/user/33417 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1574844/showing-multiple-cvs-files-in-a-c-winform-app-using-axspreadsheet-control 0 Showing multiple cvs files in a c# winform app using AxSpreadsheet control mrok 2009-10-15T20:31:08Z 2009-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-api 0 Using p/invoke to call a function from a C api mrok 2009-10-01T08:01:41Z 2009-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-studio 0 How can I share a resource file between projects in Visual Studio? mrok 2009-10-02T11:49:05Z 2009-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-definition 2 How can I embed complex types into wsdl definition? mrok 2009-09-17T06:25:27Z 2009-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-printer 0 Printing from RDLC report to Dot Matrix Printer mrok 2009-09-15T11:23:23Z 2009-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-offline 1 How can import a wsdl file in Delphi offline? mrok 2009-09-03T06:57:10Z 2009-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-forms 3 How can I embed Microsoft SQL Server 2008 Report Builder into my forms? mrok 2009-05-11T14:43:04Z 2009-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-event 1 Difference between OnLoad method and Load event? mrok 2009-07-08T07:18:11Z 2009-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-development 0 Python/Django or C#/ASP.NET for web development? mrok 2009-06-23T09:01:30Z 2009-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#970035 0 Answer by mrok for C# List<> Order with 3 properties .Net 2.0 mrok 2009-06-09T13:19:57Z 2009-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-problem 0 QuickWatch window intellisense problem mrok 2009-05-14T12:37:23Z 2009-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#630885 0 Answer by mrok for ReportViewer - modify toolbar? mrok 2009-03-10T15:51:33Z 2009-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-c 5 Which platform should I use : native C++ or C# ? mrok 2008-11-07T20:03:06Z 2008-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#273280 1 Answer by mrok for What is the purpose/meaning of the Version property on a FormsAuthenticationTicket? mrok 2008-11-07T19:17:19Z 2008-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#273228 9 Answer by mrok for Which programming languages have helped you to understand programming better? mrok 2008-11-07T19:06:24Z 2008-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#269651 17 Answer by mrok for Where do you get the best in-depth information for C# programming? mrok 2008-11-06T18:00:44Z 2008-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#745227 Comment by mrok on Hide mouse cursor after an idle time mrok 2009-10-28T12:19:37Z 2009-10-28T12:19:37Z an elegant solution, thank you http://stackoverflow.com/questions/1574844/showing-multiple-cvs-files-in-a-c-winform-app-using-axspreadsheet-control Comment by mrok on Showing multiple cvs files in a c# winform app using AxSpreadsheet control mrok 2009-10-19T12:52:55Z 2009-10-19T12:52:55Z I am sad, no answer :( http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production/359061#359061 Comment by mrok on Anyone Actually Using F# in Production? mrok 2009-10-07T10:32:04Z 2009-10-07T10:32:04Z your book is wonderful. I will buy it. http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production/359061#359061 Comment by mrok on Anyone Actually Using F# in Production? mrok 2009-10-07T09:29:50Z 2009-10-07T09:29:50Z cool article, thanks for the link. http://stackoverflow.com/questions/1509060/how-can-i-share-a-resource-file-between-projects-in-visual-studio/1509072#1509072 Comment by mrok on How can I share a resource file between projects in Visual Studio? mrok 2009-10-02T11:55:19Z 2009-10-02T11:55:19Z Thank 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#1502617 Comment by mrok on Using p/invoke to call a function from a C api mrok 2009-10-01T08:50:37Z 2009-10-01T08:50:37Z it works perfectly, thank you http://stackoverflow.com/questions/1086290/c-reportviewer-control-export-programatically/1086316#1086316 Comment by mrok on C# reportviewer control export programatically mrok 2009-09-24T08:04:49Z 2009-09-24T08:04:49Z thanks a lot, I am looking for this http://stackoverflow.com/questions/1437015/how-can-i-embed-complex-types-into-wsdl-definition/1437169#1437169 Comment by mrok on How can I embed complex types into wsdl definition? mrok 2009-09-17T07:49:57Z 2009-09-17T07:49:57Z thank you for the links. http://stackoverflow.com/questions/457603/another-wsdl-importer-for-delphi Comment by mrok on Another wsdl importer for delphi? mrok 2009-09-16T13:36:50Z 2009-09-16T13:36:50Z I totally agree http://stackoverflow.com/questions/1426582/printing-from-rdlc-report-to-dot-matrix-printer Comment by mrok on Printing from RDLC report to Dot Matrix Printer mrok 2009-09-15T11:54:10Z 2009-09-15T11:54:10Z I am referring to both. http://stackoverflow.com/questions/1371788/how-can-import-a-wsdl-file-in-delphi-offline/1371908#1371908 Comment by mrok on How can import a wsdl file in Delphi offline? mrok 2009-09-03T07:57:13Z 2009-09-03T07:57:13Z very good answer, thank you http://stackoverflow.com/questions/384931/how-do-i-get-an-icon-from-a-png-image/385000#385000 Comment by mrok on How do I get an Icon from a png image? mrok 2009-08-06T12:34:29Z 2009-08-06T12:34:29Z thank you, I need this program ;) http://stackoverflow.com/questions/394588/is-there-any-perfomormance-differences-between-binary-and-xml-serialization/395096#395096 Comment by mrok on Is there any perfomormance differences between binary and XML serialization? mrok 2009-06-25T13:09:04Z 2009-06-25T13:09:04Z thank you, protobuf-net is very good. http://stackoverflow.com/questions/510839/using-base-in-a-class-name Comment by mrok on Using "Base" in a Class Name mrok 2009-06-12T07:49:01Z 2009-06-12T07:49:01Z good question. thanks http://stackoverflow.com/questions/480538/use-xml-includes-or-config-references-in-app-config-to-include-other-config-files/480750#480750 Comment by mrok on Use XML includes or config references in app.config to include other config files' settings mrok 2009-05-17T12:52:06Z 2009-05-17T12:52:06Z very very good information, thanks.