VB 2010 Program & Graphical User Interface Design

Feb 15, 2012

I'm trying to hone up on my (beginner) coding skills & I would prefer that the the 'Designer coding window', not the 'Design window', wouldn't interfere with these studies. Sometimes it's there & sometimes it's not. I don't understand it at this point & would prefer it wasn't there. All I need is the 'Design window' & the 'regular coding window'.

View 2 Replies


ADVERTISEMENT

Interface And Graphics :: Use A Graphical User Interface That Contains A Drag And Drop Form?

Oct 19, 2008

I'm working on a design project where I have to use a Graphical User Interface that contains a drag and drop form. It consists of having a window dropped on a wall. Both of them are images to scale. I would like to know what kind of code I would have to use to show the x and y coordinates of one of the points of my window when dragged so when I drop it, I'm dropping in it on the desired coordinate of the wall.

View 2 Replies

Graphical User Interface (GUI) In VB And Engine In C++?

Oct 8, 2010

What is the best way to write a GUI for C++?

View 1 Replies

Graphical User Interface Like JQuery UI?

Sep 17, 2011

i want the user interface to be kinda similar to the jQuery UI. This means themed buttons and windows(preferabely the ones form jQuery UI) Also, i'm looking for nice sliding and morphing windows.

View 3 Replies

Create Database User Interface Design?

Mar 31, 2012

I am designing a database using access 2010 and I ve been asked to design the user interface with Visual basic.I actually have designed tables and their relationship and did some queries according to the requirements. how do I create user interface in VB from this point knowing I don't have any form and report designed in access?

View 6 Replies

Making Graphical Interface?

Jul 24, 2010

want to make my program look nicer , but i dont exactly know how should i make it's visual for example making a menu or else

View 2 Replies

Design Of Making An Interface System Program?

Jul 7, 2012

We have two systems, one is created in VB.Net 2003 and the other is created in VB6. Both systems are client/server desktop application system. There is a requirement that we need to send and response data to each systems. The data will come as result of process of each system and then transfer it to the other system. These is formatted in a message format. Is it likely to become socket programming? how can I send and response data between servers?

View 1 Replies

HangMan Game - Project That Has A Graphical Interface ?

Apr 20, 2009

I am working on this hangman project that has a graphical interface where the user has 2 options either guess the entire phrase or use a combo box to guess letters. I have the guess text box working but I can't for the life of me figure out why it is not working correctly with the combo box. The following is my entire code for the project. I have it setup to show me which phrase it randomly selected but when ever I pick a letter in that phrase it doesn't fill it in or anything. I'm thinking it is an issue with my loops.

I highlighted the section where the problem is occurring.

Public Class frmHang
Dim strWord(10) As String 'array of answer cchoices
Dim strAnswer As String 'the correct answer

[CODE]...

View 6 Replies

Launch Legacy GUI Application Without GUI From VB (hide Graphical Interface)

Aug 20, 2010

I have a legacy application that has an interactive graphical user interface, but also periodically checks for files in a directory and reacts to the files. I want to launch the application from a VB program, but not see the GUI (i.e., just let the file interface do it's thing). I really don't want to see the application running on the desktop at all (e.g., no windows, nothing on taskbar), the only evidence would be if I checked task manager I'd see it running.

Obviously this app would be ideally a service, but that's not where we are and I can't change it so I'm trying to simply not see the GUI.

I've seen the ProcessStartInfo.CreateNoWindow and WindowStyle = hidden flags but they don't hide the GUI of the legacy app.

again launch the legacy app (actually an unmanaged C++/MFC app) from a VB managed admin app.

View 4 Replies

Graphical Interface - Need To Filter Data Received From Serial Port?

Jun 4, 2010

I'm doing a project and want to do a graphical interface using V. Studio 2010. I want to use VB.NET as a programming language.
- Do I have to add any software to define VB.net?
- What is the function that reads the data from the serial port?
- If I want to receive more than one type of data, and I want to put/read them in separate text boxes, what is the function to filter the incoming data?

View 4 Replies

Interface And Graphics :: How To Procede With An Interface Design Approach

May 18, 2012

I was wondering if I could elicit some tips on how to procede with an interface design approach.That is. What is a good way to go about establishing a "work area" where one can have multiple "floating forms" in this area.Can you have a form which occupies the entire windows desk top and the other forms "float" in this space? the "floating" forms would need to interact with each other where pressing buttons etc on them would affect other forms on the "workspace") Or what would be a good way to start accomplishing that? Or is there a better way to get the same effect?

View 4 Replies

User Interface .net Program With No UI

Nov 17, 2011

I'm making a VB.net program via a text file and I'm compiling it using vbc.exe via command line. I'm trying to get just a simple program to run in the background of my computer. Problem is, it displays the annoying console window. How do I get nothing to show? No form, no console?

View 2 Replies

Create Link To Open User Control In Program Form To Use At Design Time?

Feb 1, 2010

I've got a VB.Net form application that dynamically loads user controls based on which navigation link the user clicks on. I'd like to make it easier to use at Design time by putting a link of some sort to open the User Control at design time. The link would go onto the form in the space where the User Control will be going. This just saves a little time from having to browse through the files to open the correct file.

View 2 Replies

Remotely Control A Graphical Program Through A Command Prompt

Jun 30, 2011

I have created a VB.NET program using windows forms. The program runs on a remote PC and displays information on a screen. The computer does not even have a mouse or keyboard connected to it. The program shows the information based on the file that is loaded.I want to be able to change this file remotely to another file that is already on the remote PC. I can't use a graphical remote desktop client as we have very limited bandwidth.So, my idea is to change the file using the command prompt.I'm not sure how to do this. Should I use something like this and load DosModule first:[code]How would I then read commands that is send to the program? I also only want one instance of the program running.

View 1 Replies

VS 2010 User Interface - Particularly Dealing With Different Resolutions

Oct 9, 2011

I am working on a sports management game and have already received some terrific help here with some XNA stuff. I now need some help for the user interface though. This game is very menu-centric, with loads of stats and tables and such. It is therefore paramount to get it right!

So far I have been doing all of the work on my 24" monitor at 1920x1080. Whilst the form is 1920x1080, the menu fits within a 1280x1024 top left region of the form. When I run the game on my other computer, which has a 19" monitor at 1280x1024, I was expecting a large chunk of the form to be cut off but the menu to be all visible. Well, it is all visible but things screw up. Different controls will overlap and such. I'm using Krypton Components for most of the UI and some of the text boxes seem to shrink vertically so you can only see less than half of the text. I have no idea why, they won't all do it.

[Code]...

View 10 Replies

VS 2010 Direct2D - Graphical Simulator Application Using GDI ?

Apr 17, 2012

I've been working on a graphical simulator application using GDI. GDI is terrible for rendering what simple graphics I need, too much flickering and definitely not efficient. From what I have been reading GDI and GDI+ are pretty much out of date and what I should be using is Direct2D. But my problem starts when I cannot find ANY reference material to even begin coding. I found some examples for C++, but my little knowledge of C++ prevents me from implementing and translating it to VB2010. I have found someone on VBForums through a Google search that says he is starting a tutorial for Direct2D for VB2010 but I have yet to see anything happen.

All I am rendering are small circular shapes used for simulating cell growth, I have no problem rendering 10-20 moving shapes at a time with a small amount bearable flickering, but any more the lag worsens exponentially and the application will use a ridiculous amount cpu. Overall I want to be able to display and render over 100 shapes at a time. So my question is... Where can I find some reference material regarding Direct3D for VB2010?

View 2 Replies

Design Of Vb Interface To Be The Best?

May 6, 2012

i am warsame Essa Mohamed life in Hargeisa Somaliland.

design of vb interface to be the best?

View 2 Replies

Interface And Graphics :: Create A User Interface In A Game Such As The Application XFire Using VB?

Jan 12, 2010

how to create a user interface in a game such as the application XFire using Visual Basic?

View 3 Replies

How To Do Interface Circuits Design

Jun 11, 2010

How to do interface circuits design to vb.net + using data in excel + autocad

View 1 Replies

Tab Control/Interface Design?

Mar 11, 2010

I was wondering how such interface designs can be achieved?

View 2 Replies

Interface Fingerprint Scanner To Program 2008 Or 2010?

Nov 28, 2011

Interfacing fingerprint to visual basic 2008 or 2010..using serial port...the use of fingerprint is for password only..actually my thesis concept is like electronic locker..

View 3 Replies

Design Interface And View Mode

May 18, 2012

I am getting trouble in designing report. The interface of design and view mode is different. the alignment of the view mode for paragraphs are different from the design.
The following is my design interface:
The following is my view mode:
All the setting are the same, but there has different on it.

View 4 Replies

Interface And Graphics :: Graphic Design For A VB Desktop App?

Sep 22, 2009

I'm a web designer and I was asked to make a GUI design for a Visual Basic desktop application. I'm looking around but cannot find good documentation for designers. Can anyone make me some suggestions about where to start?

View 2 Replies

Screen Interface And Database Design View?

Apr 3, 2012

I am using visual studio 2008 professional edition, and i need some help in my assignment project.below are my screen interface and my database design view, relationship view, and coding and this is my coding Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

[Code]...

View 3 Replies

Design Patterns - Implement The IDisposable Interface With A Dispose?

Apr 21, 2009

Recently I needed to compare a suggested pattern for IDisposable and object finalization with the auto-generated one we which VS2005/VB.NET provide. We have used the auto-generated one a fair bit, but after looking it the two side by side I had a number of questions about the VB.NET implementation..

[Code]...

Overall I am confused by the supposed added value of having an extended code-path that executes when Dispose() is called explicitly(as opposed to having a common path that is executed regardless of whether or not Dispose() was called explicitly). how it does anything other than delay the actual release of managed resources if Dispose() isn't called directly. In essence it seems to only work to make the managed resources unreachable in the object graph, orphaning them until the 2nd GC run rather than freeing them at a point where they are known to be no longer needed.

View 3 Replies

Interface And Graphics :: Design - Make A Form Transparent

Nov 18, 2010

i make a Form transparant where i dont want form background. So say like i got a round form and i can transparant the white background of the round even possible?

View 6 Replies

How End User Can Design Himself Reports In .net

Feb 5, 2012

I need to create vb.Net reports, where end user can design himself labels,text box,combo box and can move or resize in grid like editor.i am pasting the sample image which i am looking for.when ever user clicks the command button new Texbox or label should create on grid where he can change or move.

View 2 Replies

Design A Routine That Will Allow The User To Search?

Dec 12, 2011

I am new to vb.net and am trying to design a routine that will allow the user to search for a record and return the results in a datagrid. Then double click on a row within the datagrid to view a more detailed form. I have been able to build the search form but am having problems with the double click event.I found a sample application on the Microsoft web site which is doing this on a smaller scale. The sample is built on the Northwind sql database and searches the customer table when you double click a row in the datagrid the following Microsoft code runs and opens a detailed form.

[Code]...

View 8 Replies

Let The User Design A Form And The Fields In It?

Nov 6, 2009

I am developing an application in which I would like to let the users design some forms and decide the fields that are in the form.An example is better than a poor explanation, so let me put the example of Microsoft CRM in which you as end user can define a form, the fields in that form, or customize existing forms by adding or removing fields.

View 5 Replies

Design - Pass User Details Between Objects?

Aug 16, 2010

I'm redesigning an old VB6 application into VB.net and there is one thing I'm not sure on the best way to do. In the VB6 application whenever we created a new instance of a component, we would pass in the user details (user name and the like) so we new who was performing the tasks. However, no that I'm redesigning I've created some nice class designs, but I'm having to add in user details into every class and it just looks wrong.

Is there a VB.net way of doing this so my classes can just have class specific details? Some way so that if my classes need to know who is performing a task, they can get the information themselves, rather than having it passed in whenever the objects are created?

View 2 Replies







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