Hi All, I am using fn_listextendedproperty() to fetch column description of table ,it works perfect for table. But if I want coulm des cription of view columns it won't give me result. This Work fine FN_LISTEXTENDEDPROPERTY (NULL, 'schema', 'dbo','Table' ,'Company', 'column', default) It won't work FN_LISTEXTENDEDPROPERTY (NULL, 'schema', 'dbo','View' ,'CompanyView', 'column', default) Please help to to resolve this problem... Thanks.
Nagraj Naik
Posts
-
Problem with using fn_listextendedproperty() -
Returning XMLDocument from ServiceHi, I have created service in which I am fetching data from database write that in xmldocument and returning XMLDOCUMENT. But it raised error in client page "System.Xml.XmlDocument" can not serialized. is anybody have any solution. Thanks, Nagraj
-
Returning XMLDocument from serviceHi, I have created service in which I am fetching data from database write that in xmldocument and returning XMLDOCUMENT. But it raised error in client page "System.Xml.XmlDocument" can not serialized. is anybody have any solution. Thanks, Nagraj
-
Returning XMLDocument from ServiceHi, I have created service in which I am fetching data from database write that in xmldocument and returning XMLDOCUMENT. But it raised error in client page "System.Xml.XmlDocument" can not serialized. is anybody have any solution. Thanks, Nagraj
-
Integration of outlook in .net applicationHi, I want to give mailing facility to user along with that user should able to see mails from his outlook inbox and contacts from outlook.
-
Integration of outlook in .net applicationHi, I am using outlook APIs in my .net application.I am able to fetch contacts and mails from inbox of my account (xyz@mpcs.co.in)., now I want to show the mails and contacts of different user (abc@mpcs.co.in). Don't say to configure outlook for abc@mpcs.co.in..:)) Can we set this emailId through code....any idea. Thanks, Nagraj.
-
Image display problem on crystal report in asp.net pageHi all, I am using crystal report 10 and framework 1.1 to develop a website. I have created 1 report which contain a company logo image.It is working perfectly on local system,but when I release it on testing environment it doesn't show company logo image on report(other all default images print,crytal logo are visible). If I export this report to .pdf it display logo image in .pdf file. Do I need to any access to IIS user or anything else. Please let me know the solution if anybody have any idea about the same. Thanks, Nagraj
-
How to avoid button call event on page refreshWhen ever i call asp.net button it will do what are the code inside the button. after refresh that page automatically button event call once again run the button event. How can i avoid this problem? Thanks, Nagraj.
-
How to disable viewstate of textbox.Hi, I have set textbox enableViewstate="false" but it won't work. Is there any link or article I can refer for same.
-
How to disable viewstate of textbox.Hi, I have a requirement in which I want to hide list(viewstate) which save previous values entered in textbox and list get popup while entering text in textbox. I mean I want ot clear viewstate values of textbox. is there any way to remove viewstate of control. Thanks in advance, Nagraj
-
To show print dialog box in web applicationHI, My problem is to print microsoft project file through code.I can do it by using Fileprint API but it doesn't show dialog box. As u suggestion I can't call Fileprint API in javascript and print it,so only Window.print() will not serve my purpose. Thanks, Nagraj.
-
To show print dialog box in web applicationHi, I use FilePrint() API which print file directly from code,but I want to show print dialog box to select printer before printing the content. Please share ur idea with me. Thanks, Nagraj
-
Selecting interested columns to print using FilePrint() API of MSProject.Hi, I have developed web application,in which I used to print Microsoft project plan file.I am succed to do this using FilePrint() API of MSProject.But It prints all columns present in project plan instead of that I want to print only first 3 columns. Any suggestions are always welcome. Thanks, Nagraj.
-
Hide panel control in javascript.Hi, I have used panel server control on my webpage in asp.net. I want to hide this panel on button click. which property I need to set. I tried document.getElementById(pnlColumn).style.display=none but it won't work. Thanks, Nagraj.
-
Javascript confirmation in asp.netHi, Absolutely...I want to write some code on "OK" select. Thanks, Nagraj.
-
Javascript confirmation in asp.netHi, It will not work. u can try any sample application. thanks, nagraj
-
Javascript confirmation in asp.netHi Imran, I want to show confirmation dialog box and not a dialog box. Thanks, Nagraj
-
Javascript confirmation in asp.netHi Kapil, Actually on button click I check duplication of record which I want to insert and set variable cnt to 1 for dulication and display confirmation msg. now parameter I need to send in javascript function is get assigned on button click...so how could I...... button_click() { Dim cnt As Integer = CheckProjectDuplication(ProjectName) If (cnt > 0) Then /// show confirmation end if } I hope u understand my problem.... Thanks, Nagraj
-
Javascript confirmation in asp.netHi, To show confirmation dialog on button click we use button1.Attributes.Add("OnClick", "var ans =Check_Duplication();") But in my case I need to check some value if that value is zero then I want to display confirmation box. ex. button_click() { if customerId=0 then //// show confirmation box end if } Thanks, Nagarj.
-
Javascript confirmation in asp.netHi, I have used javascript confirmation on button click.On button click confirmation message pop up correctly. I have "update()" and "addnew()" function calls in button click event,If user click button confirmation message should get pop up and on confirmation "update()" function should get called else "AddNew()" function should get called. I hope someone know solution plz share ur idea with me. Thanks, Nagraj.