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


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

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

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

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 :: 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 Register User Control With JQuery

Apr 19, 2010

I created a user control in VB.NET that uses a jQuery datepicker. I am at an impasse. The code I have works for one datepicker control on the page but because I can only register the client script once, it will not work for multiple instances/ datepickers on the same page. What is the best way to go about initiating the jQuery script for this control so I can use it multiple times on one page? Can I append to ClientScript.RegisterStartup Script?[code]

View 2 Replies

Ajax - Refresh User Control With JQuery?

Dec 5, 2011

I have a User Control which renders a simple drop downList into the page.By default, only certain values are returned depending on User Details, but the user may request a "full" list.I'd like this full list to be generated by pressing a reload button.Being new to .NET I am struggling to get this to work and not really understand the results I get when Googling or finding stuff on this site. Is Classic ASP I'd have made a page that renders this and called it using jQuery

[Code]...

I've found this link: [URL]..Using-jQuery but am unsure exactly what it is suggesting, mainly I think, because I use VB and don't completely understand how to convert that C# code there.Using .NET 2.0, jQuery and VB, does anyone have any suggestions on the simplest way to accomplish this?

View 1 Replies

Asp.net - Returning Output Of User Control As HTML Or String With JQuery?

Dec 5, 2011

This morning I was trying to work out how to update a User Control from a button on a page using jQuery.Refresh User Control with jQuery.From the info gleaned from this article: http [url]...I now have a method of loading a User Control as a page with jQuery using the converted .VB example from the codeproject.com article.However... this won't render into the browser, Firebug is giving the error "element must be contained within a form runat=server tag" So I posted this question:

re: better way to manage a dynamic select list using jQuery and User Control.Since posting that though,I have thought about it further, and believe it is the fact that the jQuery Handler class created by the codeproject code is send the browser a complete page.Given that I sadly don't really understand what that codeproject code actually does I am having trouble working out how to alter it.What I need it to do is not return a Page at all, but I guess, an HTML string, which can then be pasted directly as HTML into the div as required.how to alter that code to return an HTML string?

View 1 Replies

Linq To Jquery With Jquery Ver Jquery-1.7.2?

May 11, 2012

this is my class:

Public Class Employeeclass
Public Property Fname As String
Public Property Lname As String
Public Property Bdate As Date
End Class

[Code]...

View 3 Replies

Interface Class (IUser) Which Is The Interface Of Class User?

Jan 17, 2009

I have an interface class (IUser) which is the interface of class User. Now, i want to put these into an IList but am confused as to how i should declare the IList:Dim userList As IList(Of IUser) = New List(Of IUser) Dim userList As IList(Of User) = New List(Of User) Dim userList As IList(Of IUser) = New List(Of User) Dim userList As IList(Of User) = New List(Of IUser) when instantiating should you always use its implementation; and when using it as a type use its interface?

And when im creating a new user should i use: Dim myUser as IUser = new User?

View 3 Replies

Coding A User Interface?

Feb 29, 2012

I'm learning how to use visual basic and come from a background in Java. In Java I use the swing class to build my interface and code all of it. Is there a way to do this with visual basic, or is the designer the only way to create an interface?

View 3 Replies

How To Make User Interface

Sep 7, 2010

I want input from user and when he click on view report button report should come in report viewer. May be my design is not good but my aspect is to design a user interface so that user should able to pass parameter in all the ways and get desired report.

Drop downlist
Radio Button
Check box
and other countrols
Gaurav

View 1 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

Custom UI - Customize The User Interface In VB

Jan 30, 2009

How can I customize the user interface in Visual Basic .NET and is there stuff you cant do in Vb.net that you can in higherj level languages usch as Java and C and C++?

View 4 Replies

Develop User Interface Control

Jun 6, 2011

I am trying to develop system where i can add run time some user control like button, textbox, checkbox.

View 2 Replies

Graphics, User, Operator Interface

Feb 16, 2012

I am using Visual Basic 2005 for an Operator Interface in an industrial setting. Where should I be looking to help make my Operator Interface even more eye pleasing and practical?

View 2 Replies

IDE :: User Interface In Setup Project?

Dec 23, 2009

i have few questions about the user interface when working with a VS setup project

1. i have added a Checkboxes dialog, i have 3 checkboxes they are used to select upon 3 tools to be installed, so during the progress of the instilation, how should i let the project know which of the 3 tools was selected ? (i hope i was clear)

2. a bit of silly question - is it possible to edit something in a dialog ? like in my case in the "finished" dialog my customer didnt like the the end button is named "close" and he wants it to be named "Finish"

finally, this is an extra non programing but it would be good if i was able to find an answere :P, when i plug a USB in the computer it opens the autoplay, and i have my instilation file in the USB (it will be distributed on a USB rather than a CD), so i want to add to the autoplay a button that runs the instilation file

View 1 Replies

Update User Interface From Another Thread

Dec 8, 2009

I'm writing a program in which I'll receive data using serial port using Comport.DataReceived event which I've written in seperate class. Once I receive data from my comport I need to display that data in my listbox in the form. What is the best way to do this?? I don have much knowledge on using delegates. An

View 14 Replies

User Interface - Control Without A Form In .NET?

Aug 26, 2009

I would like to make an application where there is no form, only controls, this way theuser can see what they are doing on top of their work. How could I for instance put a textbox on the screen, just like form1, but without it being a parent of form1, almost as if it was form1. Basically form1 is hidden.

View 2 Replies

User Interface For Various File Locations

Sep 11, 2009

I have a generic question regarding file paths and user interfaces. I am trying to build a user-interface to accommodate various file locations. I typically build interfaces which deal with files on drives. As such, I use a directory tree for this. I usually work with files on local drives. However if I wanted to ensure that all file locations were dealt with I would want to ensure that I was accommodating files in all drives (local, network, mappped etc.). I am assuming that the treeview would support all of these drive option.

However if the files are on a sharepoint site or in some other type of enterprise content system, then am I correct to assume that these file paths will be URLs? If so, then am I correct to assume that a directory tree is not the correct control to use for these locations? Should I be providing a textbox to the user and prompting them to enter this URL? Or is it better to have the URL loaded into a ListView or ListBox (i.e. "My Connections") and then provide these as options via a dropdown box. I am trying to picture a typical user interface. Is it a directory tree AND a text box/dropdown box.

View 1 Replies

User Interface Not Reflecting Changes Make?

Mar 23, 2012

Basically the question is, Why are NONE of the changes I've been making in the designer reflecting on the program when it runs ?'none' is in bold because I've tried moving everything around and nothing seems to be affecting it, it's like it's reading from a different design file, I tried reloading the project and that did nothing, and none of my code affects position of any items on the form (way too much to post it all)

View 1 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

Create User Interface Like MSWord 2007?

Jan 24, 2010

I'm using VB 2008 Express Edition , i wonder how to make a UI like MSWord 2007 with direct buttons and menu chages as we move middle mouse like this

View 4 Replies

Development User Interface With Toolbox Elements?

Aug 2, 2010

I have to develop a software able to perform some scientific calculations in the field mechanical engineer; to be more precise, this software must be able to predict the torsional vibration behaviour of crankhsfts and drive-trains.To build my model I need a library of pre-configured elements (organised in a toolbox), that I can drag&drop in my working area and then link together properly to build the model itself.Also the load cases and the input data should be organised in a toolbox as pre-configured elements that I can chose and fill-in accordingly.Here my questions:

1. how can I develop such a toolbox?

2. how can I develop my working area?

Many commercial software are organised like that but I have no idea how to do it.

View 6 Replies

Loosely Couple A Process To A User Interface For VBA And / Or .Net?

Sep 22, 2011

In fact, the process is being written into a library to be pulled in from other applications. However, how do I provide a way for a WinForm to subscribe to the process to update as the process gets executed? I've open this question from both VBA/VB6 and .Net because its part of the gamut for UI development.It's also worth mentioning that these are subroutines and not classes that are running the methods, so event raising appears to be out of the question.[code]

View 1 Replies

Show More Than One User Interface At A Single Time?

Nov 20, 2010

Is it possible to show more than one user interface at a single time in order to show how to show how all relate in real time?

View 1 Replies







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