|
Hi All,
I worked on MS Studio 2003 and I want to resize Columns to fit content length.
How Can I do that in MS Studio 2003?
Ala Qunaibi
Ala Qunaibi

|
|
|
|
|
ALAQUNAIBI wrote: MS Studio 2003
ALAQUNAIBI wrote: I want to resize Columns to fit content length.
Columns of what ?
|
|
|
|
|
the quick way out is to untick the "wrap text within cell" property of column items.
|
|
|
|
|
how to move items one reorderlist to another reorderlist in AJAX
www.serkannet.com
|
|
|
|
|
hi folks...
i am developing a project using Asp.net (2005) i Have a button called CmdEdit . and the caption(Text) will change from edit to Update when clicked on it.. now i need to use the confirmation using javascrpt when he clicks on update... Like
Do u want To update and two buttons OK Cancel
Totally i need to display a confirm box after he updates and clicks on update button
thanks in advance

|
|
|
|
|
Write javascript function and the call it in button property OnClientClick.
God Bless you.
Always do good to others
|
|
|
|
|
devkranth wrote: now i need to use the confirmation using javascrpt
return confirm("Are you sure to update");
|
|
|
|
|
hi
thanks for ur reply
i am using it OnCLientClick Propety now wannt 2 update based upon the return value in the codebehind
|
|
|
|
|
devkranth wrote: Re: Please help....
Please give meaningful subject Always
devkranth wrote: i need to use the confirmation using javascrpt
write the function and do the following
function CallMe()
{
var K = confirm("Do you want to Update");
if (k)
{
//Do the code after click on OK
}
else
{
//Do the code after click on Cancel
}
}
and call the function onClick event
Hope It Helps
regards,
koolprasad2003
If the message is useful for U then please Rate This message...
Be a good listener...Because Opprtunity knoughts softly...N-Joy
|
|
|
|
|
hi prasad
i want to display the confirm message after he selects the id and updates the data
The Flow is as follows
1.user clicks in edit the catpion is changed 2 Update
2.User Selects the id n accoording to the selected id the data is displayed in there respective textboxes
3.User Changes the neccessary data..
4. When user clicks on the Update Button i need the Confirm Message DO u wantto update?
|
|
|
|
|
I'm exporting a crystal report to ms word but it generates bolcks when i try to edit. I want the word to be normal without blocks
nzibi
|
|
|
|
|
In the label, you have a property called AssociatedControlID and in TextBox, you have a property called AutoCompleteType. Can you tell me what is the use of it?
Regards,
LEE
|
|
|
|
|
Hi,
AssociatedControlID
property any click on the Label extends to the associated control. In case of an associated TextBox the effect is that when clicking on the Label the TextBox gains focus.
AutoComplete
monitors a text box and creates a list of values entered by the user. When the user returns to the text box at a later time, the list is displayed. Instead of retyping a previously entered value, the user can simply select the value from this list.
God Bless you.
Always do good to others
|
|
|
|
|
Try single clicking on the properties you will get a brief definition of the property and its usage.
Most of the time it is enough to understand the functionality!!
I was born dumb!!
 Programming made me laugh  !!!
--sid--
|
|
|
|
|
Hi
I am developing an application in ASP.NET USING c#.
In that , I am using javascript for on mouse-over on my icon and showing some message.But these messages are in french like Réservation.
So here is special character as `.
So it gives me error in javascript as UnTerminated String.
Please let me know if any body knows solution.
Swapnil Bhavsar
|
|
|
|
|
Place a \ sign in front
<br />
var msg;<br />
msg = 'Please enter \'Some Text\' here';<br />
|
|
|
|
|
|
I think the document charset needs to be like Unicode right. I have encountered similar issues using ALT+145 (æ ) character in .JS file. But the same works from .ASPX page.
|
|
|
|
|
Hi
I am Narayana
I am developing one WebAppliction that Application needs Upload Videos to Server and store them in Database, while uploading i need to Stream that Video
Can Anybody Help me Regarding VideoStreaming and Upload Video to Wevserver and store that video in database
Thanks& Regards
Narayana.J
|
|
|
|
|
Which format are you using?
WMV can be made to utilise Media Services server right?
|
|
|
|
|
hi
Thank you For Replying
I am using mpeg and WMV Format
I need to Convert into Bytes(stream) that files and store them in Sqlserver Database.
Thanks & Regards
Narayana.J
|
|
|
|
|
Pleae help me to acess Menu Control's Items. How Can I manipulate Menu Items from code (C#)?
Thanks,
I'm using Master Pages if it makes some differance.
|
|
|
|
|
Use the following!!!
menu_name.Items[i]."properties....
You can get and set them as you like!!!
I was born dumb!!
 Programming made me laugh  !!!
--sid--
|
|
|
|
|
Thansk for response, I knew that but It doesn't work That's Why I asked it here. Here is my situation:
I have a master page where the menu is located, and in Page_Load i'm tring to write this:
if (!Context.User.IsInRole("Administrator"))
{
// here i'm tring to disable some menu items
}
but When I type Menu1 (which is Menu's ID) nothing heppens. and i do not know why...
Thanks
|
|
|
|
|
To access the objects in the master page you need to create a masterpage object in the page you are referring!!!
Before pageload write
master_page_class_name masterpage_objectname;
and write this is pageload:
masterpage_objectname= (master_page_class_name)Page.Master;
Now use the masterpage object to alter the menu
hope that helps!!
I was born dumb!!
 Programming made me laugh  !!!
--sid--
|
|
|
|