|
Browse by Tags
All Tags » .NET General Tip ( RSS)
-
|
I’m an enthusiastic user of DXCore and I have been working on some extensions of my own. But I could not find the DXCore or DevExpress menu. Well there is a hack for that . Please invoke the Registry editor, add the "HideMenu" DWORD value to...
|
-
|
.NET has been around for quite a while. According Wikipedia it has been around since on 3 April 2003 . So now there exist applications developed for .NET Framework 1.0 or 1.1 and people need to migrate them to Framework 2.0 or Framework 3.5. It...
|
-
|
I was looking for a “.net” way of detecting the CapsLock state, but almost all the references pointed to pinvoke code like: <DllImport("user32.dll")> _ Public Shared Function GetKeyState(VirtKey As Integer) As Integer End Sub And I finally...
|
-
|
This post discusses and provides the implementation of a helper class to add support for printing the formatted contents of a richtextbox control. The print model in .NET is a little different than one used in VB6. For example see: http://support.microsoft...
|
-
|
Some time ago Jose Aguilar had blogged about the Interesting Behavior of TabIndex in Migrated Applications . As he explained at the time there are functional differences between the TabIndex behaviour in VB6 If you look at Figure1. Figure 1. This image...
|
-
|
Recently I discovered in MSDN a great addition, a must to for all C# developers. CodeRush Express. This product was build by DevExpress and it just make it perfect your experience with Visual Studio. For example finding symbols or files, tabbing...
|
-
|
Well recently Kingsley has point me to a lot of useful links to improve the ExtendedWebBrowser. However he found another detail. When in Javascript you do something like a: window . open(‘url’,’window’,’width=200;height=300’); Those width and height settings...
|
-
|
I had previously posted an extended version of the WebBrowser Control. This code posted in Opening Popup in a NewWindow and NewWindow2 Events in the C# WebBrowserControl , dealt with some issues when you want to have a form with a WebBrowser and in the...
|
-
|
Here is some examples of how to determine the WeekNumber of a given Date using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main( string [] args) { object index = DateTime.Now;...
|
-
|
As vb6 migration experts in our company we deal everyday with a lot of issues around Interop and serialization. One important thing to note is the concept of “Bittable Types”. I’m not making up terms. Those terms actually exist. Just see this link in...
|
-
|
One of our clients wanted to change the CreateObject function migration for a function of their own. So they wanted all cases like: Dim x As Object Set x = CreateObject("Excel.Application") To be migrated to something like: Excel.Application...
|
-
|
This post shows a way to calculate the number of weeks. Remember that this calculation is culture-dependant For example the GetWeekOfYear methods requires a criteria to determine how to determine the first week and which day to consider as FirstDayOfWeek...
|
-
|
If you have your ASP.NET application for example in c:\inetpub\wwwroot\WebApplication1 and you want to programmatically get that path just use something like: string AppPath = Request.PhysicalApplicationPath;
|
-
|
In the VB6 world it was very common to use “Resizer” OCXs that you just put on your forms and that they handle all the proportional resizing needed if you changed your form. It was very simple and easy. However when I started looking for something like...
|
-
|
Most of our clients come from a medium-size to a big enterprise level. In these scenarios is very common to have different department using different technologies to solve their business needs. These different technologies can be on a very homogeneous...
|
More Posts Next page »
|
|
|