Creating Tiered Windows Forms Application?

Aug 8, 2010

m planning to make it as such:1. BLL and DAL are on the same box.2. Only PL is installed on client machines.Simple enough. Right now am planning to go web service as I have no idea how to do this with windows forms. So in a nutshell, my question would be how to connect the PL to the BL and how to do this during the development stage. I was planning on deploying the BL as a webservice then during development, the PL sets a reference to it to get the data.Data will basically be datasets, datatables etc. Might also have a need to do some file transfer.

View 5 Replies


ADVERTISEMENT

Creating A PDF Using ItextSharp In A Windows Forms Application?

May 18, 2011

Creating a pdf document using Itext is quite simple if your application is a web application because you can find samples to help you out all over the web. Creating a pdf document for a windows application on the other hand is not so easy. I cannot find a single sample online anywhere.so far this is what I have:

Private Sub PrintDefaultReport()
'Declare PDF document
Dim doc As New Document(PageSize.A4, 40, 40, 0, 35)
Dim MemStream As New MemoryStream

[code]....

What is the above equivalent for a windows application?

View 1 Replies

Forms :: Creating A Sub Main In A Windows Forms Project?

Sep 13, 2010

What is the vb.net equivalent to accomplishing this?

static void Main()
{
frmCalcView view = new frmCalcView();

[code].....

View 5 Replies

VS 2008 Creating 'windows' In Forms?

Jul 6, 2010

Just looking for a bit of advice really on the best way to go about something.I am creating a new freeware game in which I am creating like OS for the game. So far I have the OS Home screen (Desktop) with a menu a bit / time / date etc.hat I am trying to do (and not sure the best way to do it) Is I want to be able to create windows within my virtual desktop 'form' as Windows does essentially for instance clicking on 'start' and going to 'Internet Explorer'I have turned the boreder style to no the desktop form and any other thing I do so its my look and feel but I am not sure the best way to go about this. I possibly thought creating my 'windows' as panels and just showing and hiding them but that doesn't appear to work when I overlay them.

View 4 Replies

Basic Application(windows Forms) Doesn't Exit Properly After Navigating Through Forms

Jul 9, 2010

I have a basic three form application. It doesn't seem to close after navigating through forms. If I were to open the application, and the main form is displayed. If I press the X button, the application closes fine(Goes from processes) If I were to open the application, and then navigate from the main form to another form using me.hide & form1.show, and press the red X on Form1, the application again, closes fine.

[Code]...

View 6 Replies

Creating User Control - Reuse In Different Windows Forms ?

Apr 15, 2010

In my project i added a User Control so that i can reuse in different Windows forms.I designed and coded the UserControl1 according to my need and now i want to use it in Form2 but i cant understand how to do it?

View 2 Replies

Application That Has Multiple Front Ends Developed Using Windows Forms / WPF / ASP / Compact Framework Mobile Forms

Apr 9, 2010

I have the requirement to create an application that has multiple front ends developed using Windows Forms, WPF, ASP and Compact Framework Mobile Forms.I would like to be able to create a series of obejct representing the business logic and have this logic accessible from the various front ends available. My first thought was to use remoting as I'd like to be able to pass the business objects back and forth between client and server but the compact framework doesn't support remoting and also transferring a full framework business object to a compact framework business object doesn't seem possible.My next thought was to use web services but again the passing of business objects seems to be very hard to accomplish. Without doing this I would have to create individual web methods for each business operation.

Finally my next option is to use sockets and write the whole client/server logic within some classes and expose them to the UI/Business layer. My only problem with this is it is not scaleable should the number of clients increase dramatically whereas using remoting or web services I can host the solution via ASP.Net.Does anybody have an ideas on the best way forward for this or even have any input on how they would write an application that required a windows form, wpf, asp website and mobile device GUI all of which want to use the same business logic?

View 3 Replies

Code Works In A Windows Forms Application, But Not In A Windows Service

Jan 19, 2010

I'm porting code that I wrote for use in a Windows Forms application to a Windows Service, but for some reason, the code that worked in the Windows Forms application is now throwing errors in the Service

View 7 Replies

Forms :: Disabling BackGround In Windows Application Same As Windows Cardspace

Sep 24, 2010

I am making a System Tray Application when i minimize my form its hide itself in the tray but whenever i click on the tray icon my form shows now when my form shows up i would like to disable my Background desktop same as CardSpace when its shows up.

View 1 Replies

Application Does Not Return From Call To System.Windows.Forms.Application.DoEvents?

Aug 2, 2011

I have a windows forms application written in VB.NET which scrapes information from serveral web pages (who doesn't right)? Anyway, I am having problem with one particular site where partway through the page navigation my application hangs. When I press pause (or break) in the debugger, it stops on a call to System.Windows.Forms.Application.DoEvents.

Resuming execution shows that it really is stuck on this line (it does not reach the next line of code). It also hangs about the same point each time I run it (at least its consistent). Since System.Windows.Forms.Application.DoEvents yields to other threads on the same processor and then resumes execution of the current thread, I think the problem is that some other thread is not behaving well (not returning from some event handling code). I thought Windows 7 was pre-emptive, which makes me
doubt that theory but I really don't know.

[Code]...

The program scrapes somewhere between 12 and 14 pages before it gets stuck on the call to DoEvents. Does anyone have a clue why this would happen? Why would any call to DoEvents hang?

View 1 Replies

Re-direct Output From A Console Application To A Textbox In A Windows Forms Application?

Sep 14, 2010

I am trying to use the System.Diagnostics.Process class.I have the following Windows Forms application. It consists of 1 Button and 1 TextBox. The only code is for the button click event as follows.

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myProcess As New Process()

[code]....

View 2 Replies

Convert A VB2008 Console Application To Windows Forms Application

Feb 7, 2010

I have a fully functional multi-threaded VB2008 console application that I need to convert to a windows forms application. I am doing this to add additional functionality at a later time. How would I go about doing this?

View 9 Replies

Calculate A 15% Discount When Creating A Windows Application

Mar 11, 2011

How do I calculate a 15% discount in visual basic in when creating a windows application.I have two radio buttons Yes and No and when yes is selected a 15% discount is subtracted from the total price.So would I just say 15% as 0.15 or should I name the 15% as a constant?

View 2 Replies

Interface And Graphics :: Creating An Application With Mlutiple Forms

Mar 18, 2009

I am creating an application with mlutiple forms. When you click on a button in the main menu, the main menu will close and the new window will be diplayed. When you hit back on the new window, the main menu will be displayed.I know how to show new forms by using Form1.Show(). When I try to return to the main menu by hitting a back button I created, the main menu does not show up, but the program continues running. In the first form, I have the code: [code] Also, am I creating the new forms the right way for an application the will have maybe 15 forms?

View 2 Replies

Converting MS ACCESS Application To Windows Forms Application

Jun 23, 2010

My boss gave me an MS Access application that was developed by our former colleague. He wants me to convert that application to VB.Net Windows form application. I went through the MS Access Application. It contains tables, queries, forms, reports and macros. I could not find the programming (Where is the code written in MS Access?). My boss wants the windows application to be same as the MS Access Application (both in design and logic). I don't how will i develop the windows form. How can I achieve this?

View 2 Replies

Converting MS ACCESS Application To Windows Forms Application?

Jun 23, 2010

My boss gave me an MS Access application that was developed by our former colleague. He wants me to convert that application to VB.Net Windows form application. I went through the MS Access Application. It contains tables, queries, forms, reports and macros. I could not find the programming (Where is the code written in MS Access?). My boss wants the windows application to be same as the MS Access Application (both in design and logic). I don't how will i develop the windows form.

View 4 Replies

Creating A Server Client Based Windows Application?

Jan 13, 2010

I am trying to create an application for official use. The idea is to built in the Chat communication. I am wrtting some code for Chat Server/client.

1) Where do I keep the DB (suppose if I have SQL server on hosted web site)

2) Can I configure DB on my home PC ( no matter where client runs throughout the world if should refer the DB on my machine)

3) For Server - How to read the Users(Name and IP) from domain(AD) as well as on LAN.

View 3 Replies

Customized Datagrid - Creating A Windows Application For Company

Mar 1, 2012

I am creating a windows application for my company. in the master file i will enter the number of items we are getting from the customer. and in the next page i have to enter the details of each item. For that i have created a datagrid which has one autogenerate number field and the remaining fields must be editable. So that when i enter all the values in the datagrid, it has to go and save in the data base.

View 2 Replies

Error Creating A Pivot Table From Windows Application?

Apr 3, 2010

I am getting error "Exception from HRESULT: 0x800A03EC" near (******). can anyone please help me out. i have seen [URL] this blog also but there are also errors in that. can anyone please provide me the correct code for creating a pivot table. The code is,

Imports Microsoft.Office.Interop.Excel
Imports System.Runtime.InteropServices
Imports System.Data.OleDb

[Code].....

View 1 Replies

Error In Creating A Pivot Table From Windows Application?

Apr 3, 2010

I have been receiving the error "Exception from HRESULT: 0x800A03EC" near (***) in the code below,

Code:
Imports Microsoft.Office.Interop.Excel
Imports System.Runtime.InteropServices

[code].....

View 2 Replies

Process Of Creating A Setup And Deployment Project For Windows Application?

Jun 22, 2010

Step-by-Step Process of Creating a Setup and Deployment Project for windows application

View 2 Replies

MDI Application MDI Child Forms Close() Error Creating Window Handle?

Jul 14, 2012

I'm in the process of converting a VB6.0 application to VB.Net (2008 Express). I have a MDI parent form, I'll call mdiBackground, and 4 MDI child forms, frmStatus, frmShow, frmQwerty, and frmSentence.The layout is as follows:mdibackground - has the menus at top and is a container for the child forms.frmSentence - appears at the top frmShow & frmQwerty - appear at the left and when one is closed the other one is in the same position.frmStatus - appears at the right, it has buttons which control when frmShow and frmQwerty are to appear I have a couple of regular forms that act as dialog forms. The Me.Close() works fine on these.

[Code]...

View 11 Replies

.net - Best Use Of System.Windows.Forms.Application.Run()?

May 18, 2010

i Have a programa that has starts in a main sub, it executes some code and after that code it opens a form using

System.Windows.Forms.Application.Run(General)

General is a form but also a class, so I wonder what it the pros or cons of using :

System.Windows.Forms.Application.Run(General)
vs
Dim gen as general
System.Windows.Forms.Application.Run(gen)

In the first I am opening a form using the name of the class, and I read that it is best to declare the instance as an object variable.

View 2 Replies

C# - Use Authentication In 'Forms' And As Well In 'Windows' For A .net Web Application?

May 14, 2011

We have an application in Access for UI and MS Sql server as Database server. We now decided to build a new application in web application for UI. This web application is only used by the employees who work for the company. But later we decided to host this web application on outside server. So the user (from this company only.) can able to login anywhere in the world. First I thought creating the web application using 'windows' authentication thinking we may be using it as an intranet web application. But now my manager asked me to use both 'Forms' and as well as 'Windows' for using this application and this web application will be hosted on outside server. I really don't catch his point of using both types of authentication.

View 1 Replies

IDE :: Windows Forms And Console Application Together?

Aug 4, 2011

Could i Create a windows forms application that would have a console application form I'll use an example: say i was creating an application that would need some text written in the command line. i create the windows forms application because i want a GUI for the start page. then when i click a button, it should open a console program that is inside the windows forms application (not a seperate project)

View 7 Replies

Use Dll Component In Windows Forms Application?

Oct 17, 2009

Public Class NAND
Private inputA As Integer
Private inputB As Integer
Private outputQ As Integer

[Code].....

I have this code and I hope that this is correct. I build a dll component from the class file that contains this code and I am trying to use it as a reference in windows forms application. I have allready made this forms application and added the ddl to the reference but I do not know how to use it in there. I would like to activate (insert value 1) inputA & inputB using checkbox and that the outputQ is displayed in textbox (1 or 0). Do I have to use a vb interface to do this? And how can I use this code as dll component in the forms application?

View 2 Replies

.net - Choosing The Fonts For Windows Forms Application?

Jul 8, 2009

I'm trying to design a windows form application. By default, .NET had put Tahome 8,25 on toolbar and Microsoft SansSerif 8,25 on everything else. To improve general look and feel of the forms I'd like to change them.

Which font family should I use as a default? And what size should they be?
For:

Classic data input form (label + textbox, label + combobox...)
Data grid

Is there any recommended way?

Application is a classic business app, you can think of it as an accounting type.

View 2 Replies

.net - Writing Windows Forms Application Using CodeDom?

Mar 24, 2012

How can you write a VB.NET Windows Forms Application via CodeDom? I have tried everything, the closest i got to it is the code below, which first of all shows command prompt window which is not good, and then shows the form for like a second and everything disappears.

[Code]...

View 3 Replies

.net 2010 Windows Forms Application Hanging?

Oct 12, 2010

I have a windows forms app (32 bit) written in VB2010 which occassionally hangs in windows when minimised to the task bar You click on the icon on the taskbar and it will not come back up on the screen

No other modal forms are open in the application when the hang occurs Other programs respond OK

I ran Process Explorer against when it was Hung but do not know how to interpret the stack page, or even if it is helpful STack page with my application selected and Threads tab selected with CSwitch Delta column sorted descending. Then double clicking the top entry (my application .exe)

Note: This is running on an x64 machine, but also hangs on x32 machines

[Code]...

View 6 Replies

Add Scripting Capabilities To Windows Forms Application?

Dec 8, 2010

I want to allow the user to write a little script (JScript, VB, whatever) with a function called by my application that returns an XmlDocument object (a string would be ok).I did some research, and it looks like the scripting engines are obsolete.

The best solution I could find is here: [URL]..But I was wondering if there is a better and more "official" way.

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved