Interface And Graphics :: Initialize Graphic Dependent Data?

Sep 15, 2008

I am struggling with VB.NET's graphics paradigm.There are several times in my code when I need to determine the width of some text. Under VB6 I would use the .textwidth() method pretty much any time I wished.Under VB.NET it appears that the paint event is the only place I can gain access to an initialized graphics object and from that the measurestring() method.

View 3 Replies


ADVERTISEMENT

Initialize Graphic Dependent Data?

Apr 16, 2009

There are several times in my code when I need to determine the width of some text. Under VB6 I would use the .textwidth() method pretty much any time I wished.Under VB.NET it appears that the paint event is the only place I can gain access to an initialized graphics object and from that the measurestring() method.Do I have to use a flag in the paint event when want to auto-resize my splitterbar position or is there another way?

View 5 Replies

Interface And Graphics :: XNA Graphic With A Graphic?

Jan 14, 2010

I'm trying to make a mini map for a 2d space shooter of mine; I've for the math down (I think) for when an item should appear on the mini map, but the problem is the graphic. As it stands, the graphic spills over the edge of the mini map graphic and disappears only when it's fully outside. I need it to crop the image, or at least not show it off the mini map graphic.I thought of using the sourcerect rectangle of the spritebatch.draw, but it seems to me that would only work for the right and bottom section, as I can adjust the size of the rectangle. I haven't tried this yet, but I will soon. Can the location of the source rectangle be changed in relation to the graphic that it is a part of being drawn so that I can use that to crop the left and top sides?

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

Interface And Graphics :: Add A Click Event To A Graphic Line?

Jul 29, 2009

In a application i'm working on i need to be able to select a graphic (a line to be specific) and then i need to change or move it but i cant find how to add a click event to the line when a draw it. Basicly i want to click on the line to select it (make it fatter or an other color) and then be able to alter it in position and size (lenght). Is there any way or what is the correct way to do this?

View 6 Replies

Interface And Graphics :: Rotate A Graphic At A Specific Point?

Dec 9, 2010

I want to rotate a graphic at a point and I used the centerX and centerY to define the center of rotation.
Here is what I wrote:

Dim rotate_mirror as new RotateTransform(CSng(txtbx_rotate_by.text))
rotate_mirror.centerX = 5
rotate_mirror.centery = 55
blk_mirror.RenderTransform = rotate_mirror

blk_mirror is the graphic I want to rotate. Unfortunately, It does not work.

View 6 Replies

Interface And Graphics :: Set A Button So That When It Is Pressed / It Stays In Pressed Down Graphic State

Aug 14, 2008

How can I set a button, so that when it is pressed, it stays in the pressed down graphic state. Then when pressed again it returns to the normal not-pressed visual.Make a button stay like this until pressed again: url....

View 3 Replies

Interface And Graphics :: WPF Data Formatting Headache?

Mar 14, 2011

OK, this is crazy - How do I format text in a text box, (or god forbid) a grid, so that if it is a number it will align right, and if it is Currency it will have a $ sign. Do I have to define a Data Template? Every Template example online seems to deal with drawing borders around ListBox items, or showing photos instead of Strings,. I found 20 links, and not one talked about Alignment of #s or Currency.I'm new to WPF, and can only say that ease of use has gone to hell with WPF. Some things that were straight forward in Winforms are (IMHO) arcane in WPF (and I come from Delphi, which makes both VS Winforms and WPF seem like Rubik's Cubes).

View 13 Replies

Interface And Graphics :: Restrict Data In Text Boxes

Apr 5, 2009

I have alot of text boxes across alot of forms in ASP.NET programming in code behind pages in VB. I want to ensurethe user does not enter such characters as ' " ( ) or any which could mess up the sql syntax the script makes, and with some will validate what they entered is of numerical value.

Now I know you can stop the text box allowing such characters in a Windows application, but cannot find for the life of me a way of doing such in a web application - and its not really viable to perform a sub-string check at the click of a button for every box

View 2 Replies

Interface And Graphics :: Displaying Data Graphically (Ultrasonic Radar)?

Mar 15, 2012

I'm working on an ultrasonic sonar and I would like to use the computer to display a standard green radar system detecting the objects. I'm using a micro controller with the software written in C to send out the sensor's angle and position and it works fine.On the computer side, I'm using Visual Basic 2010 to read the COM port which then contains the sensor's data in numbers (sensor's angle and distance between sensor and object)which is a constant stream. On the debug screen (Textbox) I can already see all the data coming through.Now my question is: How do I convert those numbers into graphics?

More explanations about these numbers I want to convert:I have a step motor to rotate the ultrasonic sensor, and it works that way:The motor advances 1 step forward, then measure distance between sensor and object, then send these 2 values out.So, if you see the attached file, those numbers on the text box mean:

000032 -> 000: step number & 032: 32cm between sensor and object
001031 -> 001: step number & 031: 31cm between sensor and object
002032 -> 002: step number & 032: 32cm between sensor and object
003007 -> 003: step number & 007: 7cm between sensor and object
and so on...

So those are the numbers I wish to convert into graphics. The scan line would need to rotate clockwise at same speed of the step motor. And then I would like to display dots when an object is detected

View 3 Replies

Interface And Graphics :: Drawing Line Chart With Dynamic Data

Apr 13, 2009

I would like to build a line chart which can redraw or change during a period of time with dynamic data. So that the x, y axis will change if out of range. The graph may be somehow similar to Matlab. I am using vs2005.

View 2 Replies

Interface And Graphics :: Lots Of Data To Handle - Locate A Tile In The Map When It Is Clicked?

Jan 31, 2011

My tile-based map editor project. So far, it works really awesome. Here, look at a picture: [URL] And the screenshot is outdated: Now I got the Pencil, Rectangle and FloodFill tools too!, the tilesets are from that popular (well, not so popular) game engine called RPGMaker.

Currently, this is how the map is structured:
One ArrayList represents the X coordinates.
One ArrayList in each X represents the Y coordinates.
One ArrayList in each X,Y represents the tile.
The tile is an ArrayList containing three elements:
The Image name (Tileset01 in the screenshot), the X coordinate in the image, and the Y coordinate in the image. Those coordinates are from the TILESET01 image, not map.

Getting the idea?
How do you locate a tile in the map when it is clicked?
First I get the cursor's position on the map picturebox, then convert it to a multiple of 32 (the tiles are 32x32, yes), divide the position X and Y by 32. The results are the indexes I need to get to the tile I clicked.

That method works just fine for me.

When the map picturebox invalidates and needs painting... When that happens, I iterate through each X and Y arrayList. When I get the arrayList that represents the tile, I use it to draw on the map.

For example:
Iterating X arrayList.... step 8......
Iterating Y arrayList..... step 3.......
Found arrayList with three elemetns: ("Tileset01",32,96)
Draw image on the map picturebox, source is "Tileset01" on rectangle (32,96,32,32)... draw it on map picturebox's point (8 * 32) and (3 * 32)

And so on.

Now you understand how I am working with my map editor, how I am locating clicked tiles, and how I am drawing it. Everything goes fine, except for one problem: At some point, the user might want to make a 500x500 map.

That means, an arrayList with 500 elements representing the X tiles. Then an arrayList with 500 elements for each X tile, representing the Y tiles. Then an arrayList in each X,Y pair.

Then multiply that result by 5, because there will be 5 drawing layers. How am I supposed to handle such huge maps?! My app explodes when I set the map dimensions to 500x500! 500x500 is the max setting allowed in my app. I also know that 500x500 map editors are possible, because I have seen others before. With great performance.

View 1 Replies

Interface And Graphics :: E.Graphics.Drawstring Length Overflow Page?

Nov 19, 2010

Im working on a project that needs to print a report of one client.Everything went smooth untill i came across my multiline input text data.When i display it in the PrintPagePreview the text go's outside my page. Even when im printing it only the halve of my text is displayed. I googled and looked everywhere but i can't get a clear fix for it.

[Code]...

View 3 Replies

Interface And Graphics :: Passing Bitmaps & Graphics To Subroutines As Arguments

Jan 22, 2011

I used to program with Visual Basic 6, so I have alot of old programs that I'm updating, plus I'm learning the new VB2008 methods. I'm writing a program that replaces the old "BitBlit" function which is no longer supported by Visual Basic 2008. It involves three picture boxes, one holds the sprite bitmap, a second holds the mask (silhouette) of the sprite bitmap, and a third has a background image.

[Code]...

View 3 Replies

Interface And Graphics :: System.Drawing.Graphics.DrawString On Other Window?

Aug 14, 2009

drawing text on a window which is not the current form's window.I remember doing this in Win32 api with getwindowdc(handle) to obtain a DC for the Window, then textout() on the DC.

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

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

Interface And Graphics :: Creating A Class Holding Some Graphics?

Jan 12, 2011

Ok, I want to create a class that will handle a special rectangle graphic.In my form, I want to have two of these special rectangles. So, basically, I need two instances of that class in my form, right?I manage to initialize two, alright. But, how exactly am I supposed tomanage drawing/graphics etc in a class, and the results to be displayed in my form?

View 13 Replies

Interface And Graphics :: Error - Graphics Paths For Designing

Oct 29, 2008

Using graphics paths for designing...but am getting an error when trying to add a shape to : _shapelist.add(createshape())

It says : Value of type 'system.drawing.drawing2d.graphicspath' cannot be converted to '1-dimensional array of system.drawing.drawing2d.graphicspath'

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

Interface And Graphics :: Link A Class / Object To An Interface?

Apr 21, 2010

I'm trying to make a .dll that contains a lot of basic functionality that a program can use. Currently i am trying to use interfaces to make a lot of this functionallity independend of the program using it but i hit a snag. The Basic idea is that a programmer will create his own object using the interface discribed in my .DLL file. Then implements those functions as he likes. He can then instanciate a controller (found in the same DLL) and sends his custom object implementing the interface to that Controller. The controller can then be started and will take over all the work. I do not know what type of object is send to the controller and idealy i want to program it in such a fashion that i shouldn't care as long as the object send implements that interface.In code I am trying to achieve the following: (quite simplyfied)

.Dll:
Code:
Public Interface MyInterface '<----Decleration of the interfaceFunction GetData() As Integer
Function SetData(Data As Integer)
end interface

[code]....

this propperly. I know that the second i set the interface adaptor in the Controller VS comes nagging that it can not be converted to a "MyInterface" Class. Obviously i am doing something wrong. I can change the datatype that the controller expects to the "MyController" type but that would completely ruin the whole idea of flexibillity. I am hoping someone sees what i am trying to do and can point out where i made the thinking error.

View 6 Replies

Interface And Graphics :: Picture Of Interface And Get Feedback On Changes For Easier Use?

May 21, 2012

Is this where i would post a picture of my interface and get feedback on changes for easier use? If not is there someplace on this forum or any other forum to do this?

View 1 Replies

C# - Implementing An Interface Then Calling The Initialize() Function?

Sep 30, 2011

this wont be easy to explain clearly but here goes..i have something that works fine in VB but not in C#.i have 2 classes, each class implements a different interface. each interface exposes an Initialize() function that should get called automatically when the plugin loads. since each class has an Initialize() function, i can watch both functions get called in the log. this works fine in VB.

when i do this same thing in C#, only the Initialize() in the first class gets called. anyone have a clue as to why this might be happening?

[Code]...

as you can see the code is identical in both languages. why does it work in VB and not in C#?

View 2 Replies

Interface And Graphics :: Draw On Tabpage's Graphics?

Jan 19, 2011

So I decided to make my famous tile selector project, but instead of drawing in a form's graphics, do it inside a tabpage.Well, I managed to get it working, but it seems to... flicker.Normally, setting the form's DoubleBuffered property to True would help a lot there, but apparently, the tabpage has no such property.

When I invalidate the tabpage, I draw two images and fill one rectangle.Following past advice, those two images were created before, just once, and are stored in a variable so I don't create them every time I invalidate the tabpage.

View 1 Replies

Interface And Graphics :: Save Graphics As Png With Transparency?

Aug 1, 2010

Ok I have this: This makes a sub called 'graphicspaint' then writes "demo version" to a picturebox1

Code:
Imports System.Drawing
Imports System.Windows.Forms

[code]......

View 8 Replies

Interface And Graphics :: [VB2010] - Some Graphics Effects?

Dec 5, 2011

i whant do my own shadow effect. i can do the shandow. but how can i plus 2 bitmap images(1 above the other)?

View 15 Replies

Interface And Graphics :: Keep Graphics Over Image

Oct 28, 2011

I load my picturebox with a jpeg. If I put my DrawObjects() sub into picturebox paint event.When ever a picturebox.refresh or picturebox.visible = true (vb.net seems to draw my DrawObjects() first, then load the jpeg Image over my drawing - erasing drawing) Is there a way to get the picturebox to redraw the jpg image first then draw on it, in picturebox paint event?

View 10 Replies

Compiling Readings - Timer Dependent Data Average

May 24, 2011

Below is my code. I have a system that provides me voltage readings that changes based on a timer (interval of 300 milliseconds). I want to compile voltage readings for over 5 seconds (but I need the timer reading to remain at 300 ms) and then spit out an average of the THAT data. How do I do this? I was thinking of using datasetvalue but wasn't sure.

Public Class Form1
Private Daqboard As MccDaq.MccBoard = New MccDaq.MccBoard(0)
Private RangeSelected As MccDaq.Range = MccDaq.Range.Bip5Volts
Dim ULStat As MccDaq.ErrorInfo
Dim Channel As Integer = 0, DataValue As System.UInt16, EngVolts As Single
[Code] .....

View 6 Replies

Dependent Object Will Not Return Data For Extended Fields In TPT

Jul 22, 2011

I am using TPT modeling and writing the EDMX by hand as our data model is much more complex than the designer can support. My model includes a ProjectObject which has a dependent object name Project. When I query ProjectObject.OfType(Project) using Linq to SQL, I receive back data in all the fields that are inherited from ProjectObject, but no data in the fields that only in Project. I have ran a SQL Server Trace and captured the actual SQL and ran it using SSMS and it returns data there, so I am relatively certain the data is being passed back, but it seems to be getting lost somewhere in EF. Everything appears to be ok in my model, but . . .

SSDL
<EntityContainer Name="Insight_ModelStoreContainer">
<EntitySet Name="Project" EntityType="Insight_Model.Store.Project" store:Type="Views" store:Schema="dbo" store:Name="vw_insight_Project">
<DefiningQuery>
SELECT
[Code] .....

View 1 Replies

Interface And Graphics :: Possible To Do Image Map

Apr 4, 2011

Just want to know if it is possible to do an image mapping in VB2010?..

View 3 Replies







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