PDA

View Full Version : i need interface designing


manne
05-02-2008, 03:46 PM
hi every one

any one here tell me how to create good interfaces in some popular softwares such as flash, photoshop 3d max etc.,

please any one just give me some idea abt that



thankyou

gxsaurav
05-02-2008, 04:26 PM
I can help u with Interface design as that's one of my hobbies. What application r u making it for?

blueshift
05-02-2008, 06:31 PM
Interface for what?

vandit
10-02-2008, 04:39 PM
wht is interface designing????? does it mean making the front end for the application...(like the os has 2 parts kernel and frnt end...) ??

Tech.Masti
10-02-2008, 05:49 PM
^^ yah, whats the interface designing??

redhat
10-02-2008, 07:12 PM
Interface Designing means designing a interactive front-end for the user. Interface Designing is also a skill, since designing a good, user-friendly interface especially for a big application is a tough job.

manne
14-02-2008, 12:00 PM
i need designing a taskbar application in any software like visual studio blend or vb etc

Charan
14-02-2008, 12:36 PM
^^ if blends then gx is the guy , if winforms then me , zeeshan, giga can help. :)

joyti
26-02-2008, 10:12 AM
hello,
Using Flash u can create the Interface design very impressive. and very good desgin u can create.

nd4spd
01-03-2008, 09:28 AM
i am also trying to make a program on VB 2008, but i am stuck somewhere, can anybody help me "reading a particular row values of database, when that row is specified"

QwertyManiac
01-03-2008, 04:46 PM
Learn basic SQL (http://www.sqlcourse.com) before you start working with Databases.

SELECT Field1, Field2, (....) FieldX FROM TableX WHERE FieldX = "Value"

Or to select all fields:

SELECT * FROM TableX WHERE FieldX = "Value"

Here, ' WHERE FieldX = "Value" ' is the condition. Like, in Table1, if the row you want has the Name field as "ABC", you give:

SELECT * FROM Table1 WHERE Name="ABC"

Zeeshan Quireshi
01-03-2008, 06:26 PM
i am also trying to make a program on VB 2008, but i am stuck somewhere, can anybody help me "reading a particular row values of database, when that row is specified"
Since You're using Visual Basic 2008 , I'd recommend you Learn LINQ .

Much better and easier method to query databases than ADO.NET .