This is a discussion on Windows Applications within the ASP and ASP.NET Programming forums, part of the Web Development category; Hi, Share all your Windows Application using this......
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi, Windows application programs are EXE files for DOS and Windows systems. An EXE file is an executable file, which is a file in a format that the computer can directly execute and are not easily read by humans. Executable files for Windows and DOS systems have an.EXE extension. |
| |||
| Hi, The language specially designed to help developing Windows application is Visual Basic. And now it is Visual C#. The very important tool to program in Windows is VC++.
__________________ --Kirubhaa. Born to win-- |
| |||
| The API is the very important concept in Windows Programming. The acronym of API is "Application Programming Interface". The API is used to interact with the OS directly. The languages such as VB will call these APIs indirectly. In VC++ the APIs will often be called directly in our program. We can also call them in VB. The APIs are the means for the Applications to communicate with the OS. For example we are justopening a form in VB or a window screen in Word or anything simply. But on the background the Application corresponding to the task of opening the window will call the CreateWindow() function from the Operating System. The createwindow function requires 12 paramenters and it will looks as hWnd = CreateWindowEx(WS_EX_TOOLWINDOW, ClsName, WndName, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hInstance, NULL); Thus a simple event in windows is possible only after a complicated job in the behind
__________________ --Kirubhaa. Born to win-- |
| |||
| Hi, could any one tell me,how to avoid Flickering of an image during OnPaint Event.I used the following code to avoid flickering,even then it seems to happen. this.SetStyle(ControlStyles.AllPaintingInWmPaint, true); this.SetStyle(ControlStyles.UserPaint, true); this.SetStyle(ControlStyles.DoubleBuffer, true); Tell me the possible alternative. |
| |||
| Hi, I m getting the following exception while trying to place userControl in the form. Failed to create component 'UserControl1'. The error message follows: 'System.NullReferenceException: Object reference not set to an instance of an object. at Demo.UserControl1.UserControl1_Load(Object sender, EventArgs e) in D:\Work Area\Demo\UserControlComboBox.cs:line 38 at System.Windows.Forms.UserControl.OnLoad(EventArgs e) at System.Windows.Forms.UserControl.OnCreateControl() at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible) at System.Windows.Forms.Control.CreateControl() at System.Windows.Forms.Control.ControlCollection.Add (Control value) at System.Windows.Forms.Form.ControlCollection.Add(Co ntrol value) at System.Windows.Forms.Design.ParentControlDesigner. AddChildControl(Control newChild) at System.Windows.Forms.Design.ParentControlDesigner. AddControl(Control newChild, IDictionary defaultValues) at System.Windows.Forms.Design.ControlDesigner.Initia lizeNewComponent(IDictionary defaultValues) at System.Drawing.Design.ToolboxItem....' |
| |||
| Hi, I overcome the above mentioned error.It s due to , i m trying to load picture in the paint event of the userControl.Here while Paint method is invoked the picture is null.So I checked the picture not null during paint method to avoid this error. |
| |||
| Hi, i m getting this error while i want to overwrite the existing file. ImageCodecInfo usedIC = this.GetEncoderInfo("image/bmp"); Encoder encoder = Encoder.Quality; EncoderParameters encparams = new EncoderParameters(1); EncoderParameter encparam = new EncoderParameter(encoder, (long)100); encparams.Param[0] = encparam; test.Save("C:\\cute1.jpg", usedIC, encparams);//Error In this coding only i m getting this error. test.Save("C:\\cute1.jpg", usedIC, encparams); I m already saving the image as bmp in this path.Again taking tat bmp image rotating it and then saving it like this. plz tell me the best solution |
| |||
| Hi, I solved tat problem by opening the image using FileStream. I deleted the existing file and created the new one with the same name. This overcomes the problem. Any other solution?Plz post here. |
| |||
| Hi, Refer the following site for Floating ToolStrip. CodeProject: Add docking and floating support easely and quickly with DockExtender. Free source code and programming help Last edited by poornima : 05-15-2008 at 01:13 AM. |
| |||
| Hi, Here i m facing the following error,While trying to drag the usercontrol and placing it in the form. Failed to create component 'ResizedUserControl'. The error message follows: 'System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. at System.Reflection.Module._GetTypesInternal(StackCr awlMark& stackMark) at System.Reflection.Assembly.GetTypes() at Microsoft.VisualStudio.Shell.Design.AssemblyObsole teEventArgs..ctor(Assembly assembly) at Microsoft.VisualStudio.Design.VSDynamicTypeService .ReloadAssemblyIfChanged(String codeBase) at Microsoft.VisualStudio.Design.VSDynamicTypeService .CreateDynamicAssembly(String codeBase) at Microsoft.VisualStudio.Design.VSTypeResolutionServ ice.AssemblyEntry.get_Assembly() at Microsoft.VisualStudio.Design.VSTypeResolutionServ ice.AssemblyEntry.Search(String fullName, String typeName, Boolean ignoreTypeCase, Assembly& assembly, String description) at Microsoft.VisualStudio.Design.VSTypeResolutionServ ice.SearchProjectEntries(AssemblyName assemblyName, String typeName, Boolean ignoreTypeCase, Assembly& assembly) at Mic...' How to overcome this problem? Any solution Plz.... |
| |||
| The Microsoft Certified Technology Specialist (MCTS) credential enables professionals to target specific technologies and distinguish themselves by demonstrating in-depth knowledge and expertise in their specialized technologies ______________ Keyword Research Georgia Health Insurance |
| |||
| For most of Visual Basic's history, you did not need to specify you were building a rich-client application—all the applications you built were rich-client apps. Web development has never been the purpose of Visual Basic. This focus on developing stand-alone or client/server applications with a Windows user interface created a very tight bond between the VB language and the forms engine within it. There was no need to distinguish between the language and the tools for building an interface in VB6, but there certainly is in .NET. __________________ Wholesale women’s tops online slot machines |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to send email in VB.NET 2005(From Windows Applications) | psivakumarmca81 | VB.NET Programming | 2 | 02-24-2008 07:20 PM |
| How to send email in VB.NET 2005(From Windows Applications) | psivakumarmca81 | Discussweb HQ | 2 | 02-22-2008 08:33 PM |
| Languages or Applications? | Pixel | Game Development | 6 | 01-28-2008 07:44 PM |
| Applications Info | Murali | Database Support | 2 | 09-07-2007 08:00 AM |
| How to write Multithreaded applications using C++? | Sabari | C and C++ Programming | 1 | 07-31-2007 01:30 AM |