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 Mike Lewis 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?

    You didnt understand me..... I cant access to webs under C1 or C2... folders
  8. 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)...
  9. 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...
  10. liorlankril

    How to get a Excel Chart\Graph object??

    That's what I need to know! How to save the static graph as jpg in my web part. How to access it by code?
  11. liorlankril

    How to get a Excel Chart\Graph object??

    2 things 1) I dont want to creat a graph, I want to display in wy web part a graph object that exist in an Excel sheet!!! 2) Where can I fint metirial for those Microsoft web controls???
  12. liorlankril

    How to get a Excel Chart\Graph object??

    I will explain: I'm writting a Web Part file for a SharePoint portal server page Can I do it? if yes, how??
  13. 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????
  14. liorlankril

    Open a Word document

    Can I do it in .NET (c#) or it can be done only in VB. If yes... can i do it as a Web Part file??
  15. liorlankril

    Open a Word document

    so..... as I understand there is no option to do this??? my code is Web Part in c#
  16. 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)
  17. 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).
  18. 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????
  19. liorlankril

    How to get to the news Items?

    I dont find it!!!! The problem is that I know how to read data (by c# code WP) from a SharePoint list in site (like events). But I dont know to read data from "writing in portal" object which is not act like SharePoint list!!!! How to access it by code???
  20. 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???

Part and Inventory Search

Back
Top