Showing posts with label design. Show all posts
Showing posts with label design. Show all posts

Saturday, March 31, 2012

Table Schema Editor

Friends are there any tools/controls in asp.net which can help design create
a table in a database.
thanks!!!There are many databases out there, and many tools for creating database
objects in them. There are some tools as well in VS.Net.

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"sunil" <sunil_godiyal@.yahoo.com> wrote in message
news:eVgxxNAPDHA.3016@.TK2MSFTNGP10.phx.gbl...
> Friends are there any tools/controls in asp.net which can help design
create
> a table in a database.
> thanks!!!
Ah, thanks for the clarification. Hopefully someone here knows of such
third-party apps.

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"sunil" <sunil_godiyal@.yahoo.com> wrote in message
news:u1QzTxAPDHA.1216@.TK2MSFTNGP11.phx.gbl...
> Kevin, Thanks for your reply. Here is my problem. I want the user using
my
> web application to be able to create table using the web interface
provided
> with in the web app. Iam looking for any activex controls or asp.net
> components which can do this.
> Appreciate your help.
> Thanks
>
> "Kevin Spencer" <kevin@.SPAMMERSSUCKtakempis.com> wrote in message
> news:%23S9lmhAPDHA.4024@.tk2msftngp13.phx.gbl...
> > There are many databases out there, and many tools for creating database
> > objects in them. There are some tools as well in VS.Net.
> > HTH,
> > Kevin Spencer
> > Microsoft FrontPage MVP
> > Internet Developer
> > http://www.takempis.com
> > Big things are made up of
> > lots of Little things.
> > "sunil" <sunil_godiyal@.yahoo.com> wrote in message
> > news:eVgxxNAPDHA.3016@.TK2MSFTNGP10.phx.gbl...
> > > Friends are there any tools/controls in asp.net which can help design
> > create
> > > a table in a database.
> > > thanks!!!
> >

Wednesday, March 28, 2012

Tables and Design

I am using a table in grid layout and position my controls where I want them. Does anyone know why when I view it in a browser my controls are not positioned like the way I have them in design view. Some images are overlapping other images.

post your html table code here.

Monday, March 26, 2012

tables in asp.net

I am using Visual Microsoft Web developer express. I am using tables to control layouts, and I have hard time controlling tables. In the design view, the layout looks perfect, but actual display of the layout on a browser is horrendous. Design view and actual view are different.

Yup. You'll also find that different browsers will display differently as well. You can live with it, control the layout precisely with specific width and height attributes as well as font sizing and hope it works in most browser, or work with CSS instead of tables. But it's the nature of the environment, you don't control what the user sees, the user and the user's browser does.

Jeff


i would have loved the older way. ie coding it and not using the design way. so that u get a better control of where you want to put the control

Saturday, March 24, 2012

tabstrip graphics

I believe it's possible to do the following but I'm not sure. I want to load a graphic or different "design" into my IE Tabstrip control for the tabs. How would I do this and where can I find some free graphics??

<IEWC:TAB DefaultImageURL="images/StatusTabs/Tab_Inop_Unsel.gif" HoverImageURL="images/StatusTabs/Tab_Inop_Sel.gif"
SelectedImageURL="images/StatusTabs/Tab_Inop_Sel.gif" />

i found a tab i liked - altered it with photoshop, made 2 states (hover/selected and unselected) then used as above

images.google.com - used advance search for small gif

HTH