Graphic Designer Vs. Programmer To Design GUI (WPF Issue)?

Aug 26, 2009

In my friends company the management brought up the topic of moving in the WPF to design rich UIs. Majority of the employees of the company are programmers and only 3-4 graphic designers. The management wants to train the graphic designers with WPF so that their graphics skills could be applied in creating UIs. However, programmers have a mighty obligation for this. They have written several complaints to the management that WPF is not just Graphics but it has programming in XAML. SO the programmers wants to take over UI design as well (in the past programmers did the UI part as well)...... I'm a programmer therefore i'm with the programmers.

What would be the most suited solution for my friends compnay, should they move the graphic designers the WPF or should they train the current programmers to design UIs in WPF?

View 1 Replies


ADVERTISEMENT

Countdown Timer Hourglass Graphic Design In VB

Oct 9, 2011

I am making a countdown timer and i want to make an hourglass that can show the how much time there is left. What i want to do is: In the side of my program there should be an hourglass. When there is a lot of time left, the hourglass should have a green light. When there is half the time left, the hourglass should shift to a yellow light. And when there is 10 % time left, the hourglass should shift to a red light. Is it possible to do this, and how should i do it?

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

Photoshop/ILLustrator/Indesign Topics - Graphic Design | Dream.In.Code?

Oct 24, 2011

Have never used this website for such questions. Need to create a resume/ Have researched, but have had 4 resumes rejected from a design perspective. Cannot be just a normal resume. Background can be created in Photoshop, Logo in Illustrator.Think I have that one okay. More a problem with the background and design in Indesign.

View 8 Replies

C# - Why Are Many Designer Classes In System.Design Marked As Internal

Aug 28, 2009

I have been developing some components for our products at work, and one of them is based off the flow layout panel.What i would like to do is provide a custom designer for it, but without loosing the features provided by it's default designer (System.Windows.Forms.Design.FlowLayoutPanelDesigner) which is marked as internal.Using Reflector i thought i would just implement it again myself, seeing as it inherits from 'FlowPanelDesigner and that from PanelDesigner` all of which are internal.

Why would these classes be specifically marked as internal? Is it due to them being specifically for Visual Studio use, and thus not 'framework' code?Also, is there an easier option that re-implementing all the functionality?

View 2 Replies

VS 2010 Properties Set During Design-time Are Not Serialized To Designer File

Aug 22, 2011

I am creating a UserControl with rich design-time support that should eventually look like the Options window in Visual Studio (or many other applications). Basically a split container, to the left is a TreeView with 'option categories', and each node in the treeview corresponds to a 'panel' to the right with certain options.

Just for terminology, the nodes in the TreeView are OptionsNode objects, the panels (containing the controls that determine the options) are OptionsPanel controls. My UserControl itself is called OptionsView and is the control that contains the treeview as well as a panel that contains the OptionsPanels.

I have some experience in design-time coding, and I have gotten pretty far. The OptionsView control contains a property Panels that returns the ControlCollection of the right side of the split container. The user can add/remove OptionsPanels via this property (and automatically an OptionsNode is created). The property uses a custom CollectionEditor that tells the designer to create instances of type OptionsPanel (instead of just Control which is the usual collection type of ControlCollection). Furthermore, in the CreateInstance method I use the DesignerHost object and its CreateComponent method to create the panels, instead of just creating New OptionsPanel objects. This way the OptionsPanel created is selectable and editable (via property grid) during design-time:

vb.net
Protected Overrides Function CreateInstance(ByVal itemType As System.Type) As Object
If itemType Is GetType(OptionsPanel) Then

[Code].....

View 1 Replies

C# - Design A Simple Label Designer That Could Print Labels For Shelf Items

Feb 23, 2010

I need to design a simple label designer that could print labels for shelf items, just like in a grocery store. The requirements are that the label shall contain a name, a barcode (e.g. Code39 symbology), price and room for some extra text.

[Code]...

View 2 Replies

IDE :: Design A ContextMenuStrip In A Designer Without A Relation To A Specific Form Or UserControl Class?

Oct 16, 2011

in VS 2008, is there a way to design a ContextMenuStrip in a designer without a relation to a specific Form or UserControl class? For example,if you need the same ContextMenuStrip in Form1, Form2 and Form3, in which of them am I to design the ContextMenuStrip? Do I have to add a "pseudo-Form" to the project that contains my shared ContextMenuStrips and create only one instance of that Form, or is there another way? I consider this a programmatic hack, that's why my question is whether the IDE offers something better.

View 10 Replies

VS 2005 - Designer Error - Exception Of Type System.ComponentModel.Design

Apr 26, 2012

When I attempt to open forms in the designer in the IDE, I get this error:

Exception of type System.ComponentModel.Design.ExceptionCollection was thrown.

My project is building OK. Any ideas?

View 9 Replies

Adding Items To The Collection At Design Time , There Is No Code Generated In The .Designer File?

Mar 17, 2009

i have created my own custom propertythe property is of type collection ,it displays a form which allow the user to add a list of images and strings,it stores the data in a collection ,my problem is , i have noticed that after adding items to the collection at design time , there is no code generated in the .Designer file of the form and there for when i close the for / save it and reload it , all the items that i added to my custom property are gone.my question , what did i miss here ? how do i make my custom property generate code at the .designer file for the items i have added to my property?

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

Modify Designer.vb (form Designer) To Remove A DataSet Control From Winforms Windows?

Jan 27, 2011

I am attempting to update an existing winforms application, that was created with a dataset control on all the winforms pages. I have ported it from VS 2008 to VS 2010 and I need to update the database section and connect it to the SQL backend using traditional code method.In the Solution explorer, when I click on the Dataset files, and click "Exclude From project" I am unable to build the project.Is it advisable to comment out the code lines that refer to the dataset in the .designer.vb files?

View 1 Replies

How To Become A VB Programmer

Oct 7, 2009

I was wondering if anyone could point me in the best direction to becoming proficient in Visual Basic and later maybe other languages? I work full-time as an Information Management Officer for the DoD and I am also a full-time student (CMIT Major) and father. I have to try as it is to balance my time and find ways to get programming practice in but admittedly it has proven difficult. I am currently taking my second class in Visual Basic and had a previous class in Java as well.

Next term I will be taking advanced VB but i don't feel at all like I'm very good at VB, especially not good enough to be taking an advanced class. I desperately want to become a proficient programmer and was wondering if anyone could suggest a good, at-you-own-pace program or instructional books, videos, anything, that would walk me through creating beginner, intermediate, then advanced VB programs and techniques and different ways to deploy applications created in VB?

View 12 Replies

Best DI-IOC References For Programmer?

Mar 29, 2010

I code primarily in vb.net. I've been doing basic dependency injection manually and am looking to learn more about DI/IoC and maybe use a DI/IoC framework/container like Ninject. There are lots of examples and write-ups using Java and C# code. I'm looking for the best resources for vb.net programmers. Likewise, is there a particular framework that would be easiest for a vb.net programmer to pick up?

View 3 Replies

Learn C# As Programmer?

Jan 13, 2010

I am looking to switch to C#. I come from a C / C++ background but C# is a little different for me. I am switching mainly because of Silverlight and MVVM; all examples are in C#. Any information is in C# and I am confused when I read through it all.

What is a good place to start learning C# when starting with existing C / C++ knowledge?

View 6 Replies

Learning C# Or VB For A PHP Programmer

Jan 21, 2011

For a few years I developed websites in PHP, but couldn't get a job doing this nearly two years ago. I spent a year teaching (and if your thinking of teaching, my advice is don't! In the UK anyway), but kept handing my CV out to different web development companies. One of these offered me a job, but the downside (or upside, depending on your views) that they only developed websites in ASP.NET. I made the decision for a career change and accepted the job.

In ASP.NET, you can develop in either C# or VB.NET. The guys I work with are using VB.NET, and I have to say I'm struggling with it. I can understand the basics but it just seems weird, especially as I've come from PHP. C# on the other hand, looks similar to PHP. I'm contemplating learning C# instead of VB, but I'd like to know what other peoples opinions are about doing this?

View 5 Replies

Tell A Programmer He Is Wrong?

Jan 25, 2010

How to tell a programmer he is wrong?

View 1 Replies

VB Programming Usually Im A PHP Programmer?

Feb 10, 2009

I'm new to VB programming usually im a PHP programmer, i am advancing fairy fast on the structure, theres one thing i have been stumped on[URL]..What im trying to do is when i put the detaisl in the fields, i press save and then am prompted to save with my own extension

[Code]...

View 2 Replies

Sending Commands To USB Programmer?

Sep 3, 2011

I'm writing a program in VB.NET 2010 that will connect to the PICkit(TM) 1 FLASH Starter Kit's USB programmer and send it commands to turn on or off something connected to the attached eLab16m board, for example, an LED. This is all done by using the libhid.net DLL. The vendor id is &H4D8 and the product id is &H32.

Update I've written a console program that outputs what's happening. Here's the output:Where it says device with report id 0x10, I am trying to query the firmware version from the USB Programmer.Update 2 I've fixed the problem with the Wacom Bamboo tablet by uninstalling its software and drivers from my computer. The error has disappeared from the command line, but it still shows the 0x10 error.

View 1 Replies

The Last Change Wasn't Successfully Persisted.Please Shut Down The Running Application. Sending Message To Designer Failed.Designer May Not Be Running.''?

Jun 4, 2011

what account for this error message in ls beta 2?'' The last change wasn't successfully persisted.Please shot down the running application.

View 1 Replies

Database Programmer Handling The Connecting?

Apr 16, 2010

I need some basic assistance understanding how to mess with bytes. And when I say basic, I mean dumb it down for me, I'm a self taught hobbiest mostly and only spent 4 years proffessionally in development. And that 4 years was a database programmer handling the connecting, retreiving and inserting of data into various databases.

I can't honestly think of the last time I had to do anything with Bytes, but I do know that when I did, all of the functions that actually did anything were written by someone else. So start off, I've been trying to handle them like strings, and that's not working for me (you probably guessed that).

[Code]...

View 2 Replies

Learning Visual Basic For C Programmer?

Dec 13, 2010

I've been programming in C/C++ for several years and want to learn enough Visual Basic to create GUI front ends for some of my C programs & also so I know that C functions I have written can be called by VB programs that others write. I expect that the C programs would have to be turned into DLLs for this to work.

I have created some C DLLs & created other C programs that sucessfully call the functions in the DLLs. BTW I did this with Visual Studio 2010, would there be any advantages to using other versions?Can anyone recommend a book or a website to quickly get me up to speed on VB while allowing me to skip over the parts that are intended for people who are new to programming?

Many of my programs call functions from the Windows API such as CreateFile. IINM these functions can be called from VB, but it is done differently than in Visual C++, eg: in C++ Create file returns a HANDLE variable, but the HANDLE variable type doesn't exist in Visual Basic. So I'll need to learn enough about how Visual Basic uses the Windows API to pass the file HANDLE from the C functions to the VB calling program & back.

View 4 Replies

NET Programmer Write Code For Windows CE?

Sep 12, 2011

A job recruiter asked me if I could take over writing code for a device that uses Windows CE. He didn't know much about it except that he thought the previous programmer was using Visual Basic, and he thought it might be Visual Basic.NET, along with SQL Server. I'd like to take over this programming job if I am qualified, but I don't know if I am. I have developed code using VB.NET, C#.NET, SQL Server for standard Windows. I used .NET to build programs that run on Windows desktop, and also the WPF platform. I also built ASP.NET and Silverlight programs for the web. In addition I have written programs that interface with machinery using serial and TCP coimmunications.

Would I be able to get up-to-speed on taking over the coding of a program that targets Windows CE? Does Windows CE allow .NET managed code or just C++ and VB6? Would it be advisable to try to get this job or would taking it lead to problems and disappointment?

View 5 Replies

New Programming Language To Choose As VB Programmer?

May 31, 2012

I would like to learn a new programming language to be able to compile the same code for different platforms.

My background in programming: VB.NET (I have been using it as my main language for the past 3 years), some Java (to which I couldn't really adapt) and very limited PHP. I use a Mac Book with OS X to code.

I'd like to find a PL with a very easy learning curve from VB.NET, cross-platform IDE and able to compile the same for Windows, Mac and Linux.

I am a beginning programmer, so a object-oriented, .net like language is probably my best bet.

View 2 Replies

Beginners Tutorial For VB 2008 - From The Perspective Of A Former VB6 Programmer?

Jan 12, 2010

I'm thinking of trying to learn VB 2008, and I was wondering if there's an online guide or tutorial to get going from the ground up - from the perspective of a former long-time VB6 user (makes it a bit easier to relate functions in VB 2008 and how they replace older functions in VB6)?

View 1 Replies

Exercises To Advance A Student Programmer On Down Time

Aug 11, 2009

Currently on an internship from my CS degree, we have some down time and I'd like to spend it working through a series of problems (although none too large) that would advance my programming skills and allow me to dip my toes in a large breadth of different topics and areas. Unfortunately, everything I do must be done in vb.net on .net 2.0, without downloading any particular libraries.I've already worked through many of the "code-golf" tagged problems on here and the programming praxis problems posed by dailywtf.

View 7 Replies

Getting Values From Array Of Programmer-Defined Type

Mar 22, 2009

I've declared a class called WindowIDNamePair in which I associate the hwnd of a window with the window's text. (See end of this post)

I've declared an array of type WindowIDNamePair as follows:

Private windowList(0 To 500) As WindowIDNamePair To test the array and class I'm doing the following:

windowList(0) = New WindowIDNamePair(1, "a")
windowList(1) = New WindowIDNamePair(2, "b")
windowList(2) = New WindowIDNamePair(3, "c")

[Code]....

View 5 Replies

VS 2008 How Can More Than One Programmer Work On Same Project At One Time

Feb 23, 2010

How can more than one programmer work on the same project at one time? is this possible? it surely must be possible??

View 2 Replies

Vb6 Programmer, Even Completed MCSD Cert Back In 2000?

Jul 27, 2009

I am an experienced vb6 programmer, even completed MCSD cert back in 2000. I have done alot since then, and I am thinking about learning vb.net where should i get started? From what I have seen briefly, the ADO is some of the biggest change from vb 6

View 3 Replies

Css - Design A Webpage In Asp.net Design View Which Support Multi Resolution?

Nov 26, 2010

I have created my webpage in asp.net in 1024*768 resolution, my problem was that when i change my monitor resolution then the controls in my webpage will be displayed in unmanaged manner .

How to arrange items in my webpage which support multiple resolution ...

Whatever the resolution of my monitor the controls in my webpage will display as it is as managed in 1024*768 reolution !

View 1 Replies







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