473,396 Members | 1,804 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

[VB 2008] How create a plan of house

Hello,

I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.

Thanks for your help.

Gilles.
Jun 27 '08 #1
7 1420
I dont know how much time you want to spend on it, or if it is even worth
your time designing this...

take a look at http://www.punchsoftware.com/products/platV12.htm

it works great and its 99 bux

I have no relation with this company, but I have used the product and it was
very nice in creating a house layout and then it lets you 'walk' through it.

Just making sure that your time you spend on this might be worth more than
this 99bux in which case this might be a quick and cheap solution for you.

Miro

"vino" <al*******@discussions.microsoft.comwrote in message
news:07**********************************@microsof t.com...
Hello,

I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.

Thanks for your help.

Gilles.
Jun 27 '08 #2
Before you get too far into this, you should spend time at this site:
http://www.bobpowell.net/.

"vino" wrote:
Hello,

I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.

Thanks for your help.

Gilles.
Jun 27 '08 #3
Not sure what you are trying to do but IMO you need to have a much higher
level view of this i.e. you'll render from a list of objects being able to
render themselves. Then your application will allow to handle this list
(add, delte, save to disk, load etc...) and will produce the corrresponding
drawing... At the extreme if you have a wall object in this list (rendered
as a rectangle ?) your application coudl allow to place a door on it etc...
If you select another object that also renders as a rectangle (a chair or a
table), your application knows this is not a wall and doesn't provide the
same option.

So don't see your application as something that renders low level graphics
shapes but higher level objects each one being rendered ultimately as
graphic shape...

--
Patrice

"vino" <al*******@discussions.microsoft.coma écrit dans le message de
groupe de discussion : 07**********************************@microsoft.com...
Hello,

I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.

Thanks for your help.

Gilles.

Jun 27 '08 #4
On May 14, 9:03 am, vino <alex_v...@discussions.microsoft.comwrote:
Hello,

I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.

Thanks for your help.

Gilles.
I'd go lookup WPF and use it to do this.

Thanks,

Seth Rowe [MVP]
Jun 27 '08 #5
Hello and thanks all for your replies.

I have already heard about WPF to do something like i want but it is a new
technology introducing n Visual Studio 2008 and then and don't know how to
use it.
I expect find on the web topics about this even if there is not a lot.

Thanks.

"rowe_newsgroups" wrote:
On May 14, 9:03 am, vino <alex_v...@discussions.microsoft.comwrote:
Hello,

I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.

Thanks for your help.

Gilles.

I'd go lookup WPF and use it to do this.

Thanks,

Seth Rowe [MVP]
Jun 27 '08 #6
On May 15, 4:50 am, vino <alex_v...@discussions.microsoft.comwrote:
Hello and thanks all for your replies.

I have already heard about WPF to do something like i want but it is a new
technology introducing n Visual Studio 2008 and then and don't know how to
use it.
I expect find on the web topics about this even if there is not a lot.

Thanks.

"rowe_newsgroups" wrote:
On May 14, 9:03 am, vino <alex_v...@discussions.microsoft.comwrote:
Hello,
I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.
Thanks for your help.
Gilles.
I'd go lookup WPF and use it to do this.
Thanks,
Seth Rowe [MVP]
Sorry, I lost a bit of you replay in translation. Are you saying
you're having trouble finding examples for WPF? If so, a simple search
on google.com for "wpf tutorial" turned up quite a bit of samples for
me. I'm not sure if Microsoft has a video series out yet for this (if
so someone please share the link) but you could benefit from the
Silverlight ones at silverlight.net, it doesn't support as rich as a
model as WPF, but the XAML and event wiring (watch the 2.0 Beta ones
unless you like JSON) could still be useful for you.

Thanks,

Seth Rowe [MVP]
Jun 27 '08 #7
I have no time to learn WPF or Silverlight (i already use flash) in details
then i will continue using visual basic. I will see it later during my free
time because i agree with you it seems to be a powerfull technology for
graphics.
My goal is creating easily plan and after save it and generate data about
this one. There will have a link between data creating and other winforms of
my project.

"rowe_newsgroups" wrote:
On May 15, 4:50 am, vino <alex_v...@discussions.microsoft.comwrote:
Hello and thanks all for your replies.

I have already heard about WPF to do something like i want but it is a new
technology introducing n Visual Studio 2008 and then and don't know how to
use it.
I expect find on the web topics about this even if there is not a lot.

Thanks.

"rowe_newsgroups" wrote:
On May 14, 9:03 am, vino <alex_v...@discussions.microsoft.comwrote:
Hello,
I am creating a VB 2008 application and i would like to create a plan.
I try with Graphics of GDI but it doesn't work how i wish.
Each wall and window of my plan is a Graphic but Graphic is not an object
and then i cannot work on (move, delete).
Is there an other method wich is better to do this or may be i have to
create work with label which will be an object.
Thanks for your help.
Gilles.
I'd go lookup WPF and use it to do this.
Thanks,
Seth Rowe [MVP]

Sorry, I lost a bit of you replay in translation. Are you saying
you're having trouble finding examples for WPF? If so, a simple search
on google.com for "wpf tutorial" turned up quite a bit of samples for
me. I'm not sure if Microsoft has a video series out yet for this (if
so someone please share the link) but you could benefit from the
Silverlight ones at silverlight.net, it doesn't support as rich as a
model as WPF, but the XAML and event wiring (watch the 2.0 Beta ones
unless you like JSON) could still be useful for you.

Thanks,

Seth Rowe [MVP]
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: stefan | last post by:
Hello *, i've no expierence with XML and I hope someone can help me out with this. Following problem: I've an XML File and need just some parts (lines) in the result file. This should have...
2
by: Sean Staniforth | last post by:
I have a Database which contains anout 20 tables. each has different data. for a research centre studying Family History. I want to create a simple from end that researchers can entre a surname &...
0
by: niceware niceware | last post by:
They are best softwares and best price. The list is not full and now will be more new version, any more need, please mail me: ftpone@hotmail.com Amtec Tecplot 10.0 Bernina Artista 4 COADE...
4
by: bj7lewis | last post by:
I am currently C++/Win32/MFC & C# programmer using VS.NET 2002 and jumped into VS.NET 2003 but that was a waste so I skipped VS.NET 2005 cause buying VS.NET 2003. Now after checking out VS.NET 2008...
1
by: =?Utf-8?B?bGNhbg==?= | last post by:
Can I install Streets & Trips 2008 on my Desktop and my Laptop? I hard that the 2008 version could only be put on one computer.
0
by: Steve House | last post by:
I'm relatively new to VB 2005/2008 having done most of my work in VB6 and VBA. I'd like to deploy a VB 2008 project that doesn't need to be installed other than the controls in the GAC and the...
3
by: John | last post by:
Hi Is there advantage of installing VS 2008 SP1 for vb winform database developers? Any issues that I should know? Thanks Regards
2
by: Ian Thompson-Bell | last post by:
I did a fair bit of VB programming many years ago (>10) and have just downloaded the free VB Express 2008. What I need is a good tutorial (preferably in pdf format) or a good book that covers VB...
8
by: rcook349 | last post by:
I have a friend who's small company is on VB6 and SQL2000 for their apps. They would like to know what arguments (high level) there are for upgrading to the current version/platform of VB.NET 2008...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.