Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. liorlankril

    TextBox ReadOnly problem

    I have a web form in .NET 2005 (c#). My form contain a TextBox control (called "BirthDate") and ImageButton. One of the TextBox property is ReadOnly=true. Click on the button open a calendar object thatlet the user to select date. The selected date get into the TextBox control (by javascript...
  2. liorlankril

    User control problem

    I have a User Control that contain this c# code: public partial class MyUC: Moia.Components.BaseUserControl { protected string str = string.Empty; protected void Page_Load(object sender, EventArgs e) { this.str= "aaa"; string strScriptKey = "Replace"...
  3. liorlankril

    Searching Users Profile query

    I have a web part that contain SQL Query for serching users profile string SQL_QUERY="SELECT " + \"urn:schemas-microsoft-com:sharepoint:portal:profile:FirstName\", "+ "\"urn:schemas-microsoft-com:sharepoint:portal:profile:LastName\" "+ "FROM " + "( TABLE Portal_Content..Scope() " + "UNION...
  4. liorlankril

    TextBox Validation

    I need Javascript code that check that my string value contain only: a-z, A-Z, ',- or space. How to do it???
  5. liorlankril

    DataGrid question

    I have DataGrid in my code: DataGrid dg= new DataGrid(); I have in this DataGrid defenision of 3 BoundColumn: BoundColumn bc = new BoundColumn(); the 3 columns are: FirstName, LastName, IDnumber I want to do this: When the user click on any FirstName in the DataGrid, It will open more...
  6. liorlankril

    QueryProvider question

    I have a Web part code (in c#) that contain this code PortalContext context = PortalApplication.GetContext(); QueryProvider qp = new QueryProvider(context.SearchApplicationName); string query = "SELECT " + "\"urn:schemas-microsoft-com:sharepoint:portal:profile:FirstName\", " +...
  7. liorlankril

    How to get to specific List?

    I have a web part code (in c#) that try to get to specific List that appear in several Webs (Sub areas) in the portsl. the List name is equal in all instances of the list (called "MyList"). In my code I try to search all instance of this List: SPSite site = SPControl.GetContextSite(Context)...
  8. liorlankril

    UserProfileManager problem

    I have a web part (in c#) that contain TextBox, Button and Datagrid. I want that when the user enter name into the textBox and click on button , it will give him all the users in the DataGrid (can be more then one). For this I use in me code the UserProfileManager object and I run in a While...
  9. liorlankril

    How to get a Excel Chart\Graph object??

    I have a sheet in Excel that contain a Chart\Graph object How can I get this object for display in a c# code. Can I do it??? How I display it? as a Image in the c# page (like Html page). How to do it????
  10. liorlankril

    Open a Word document

    I want to know how to open Word application. (not a spesific word file, I want to open the word application - new document)
  11. liorlankril

    Web Part code question

    hii! I want to know if there is any option to write a web part code that open a word application - I want to put a button in my web part that click on it open to me a word application (new document).
  12. liorlankril

    How to get Sub webs List (Sub area)?

    I have c# code WebPart that contain this code: SPSite site = SPControl.GetContextSite(Context); SPWeb newsWeb= site.AllWebs["News"]; "newsWeb" hold the area (Web) of News. I want to get the list of all sub webs (sub area) that under it!!!! How to do it????
  13. liorlankril

    How to get to "Writings in Portal" object/list?

    I want to access (by c# web part code) to "Writings in Portal" object which in specific area (Web). as I notice it's not SPList object. So I dont know how to catch it!!! any help???
  14. liorlankril

    How to get to the news Items?

    I need code example (Web part code in c#) that get all news items from specific News area?
  15. liorlankril

    Web Part project in VS 2005

    I have server contain SharePoint Server 2 and VS 2005. I want to open a Web Part project in VS 2005 but i dont see that option. What should I do???
  16. liorlankril

    Move list to other Area

    I have a list in specific area in the portal site. I want to put this list in the Sub Area of this area, but when I click on Add WebPart I dont see this list on the list. I try also to save the list as template but I still dont see it on the list. How to do it?
  17. liorlankril

    Sharepoint searching

    I operate Backup of SharePoint portal server on exist server. Somthing was wrong with the restore server about the searching in the sharepoint. Can I fix it or should I reinstall SharePoint?
  18. liorlankril

    How to Secure ActiveX control?

    I wrote an ActiveX (I use VB 6). I want to make it secure. I know I need to sign it but I need to know how to do it: 1) Do I need Digital Signatures or Digital Certification? 2) After I get one the Sign tools. How do I sign the code ???
  19. liorlankril

    Problem with Subtotal on SQL Report!!!

    I have a SQL report that contain a Matrix (Example of Matrix fields) CallStatusType NumberOfCalls % HandlingOrg SubjectName SUBTOTAL Explanation: "HandlingOrg" and "SubjectName" are Row Groups...
  20. liorlankril

    LogOff frop portal

    I have a SharePointPortal server portal. I want to put in it WebPart that contain a button that click on it operate log off of the oser from the portal ? How to do it????

Part and Inventory Search

Back
Top