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 bkrike 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: *

  • Users: desi2002
  • Content: Threads
  • Order by date
  1. desi2002

    SQL server does not give compilation error for invalid table name

    Hi I deleted tables that I used while creating and compiling one stored procedure. After deleting the tables, I edited the stored procedure without changing the table names. SQL server should give me syntax error because the tables mentioned in the stored procedure do not exist. However it...
  2. desi2002

    Can we configure Maximum Row Size?

    In SQL server 2000, mAximum Bytes per row is 8060 Can we modify this value? Pl help
  3. desi2002

    How to create a data entry grid control

    Does anybody knows how to create data entry grid control in c#, control similar to datagrid in asp.net having edit facility? Pl help how to do it
  4. desi2002

    How to create instance of an object using reflection

    I am not able to create instance of an object using reflection (late binding) The code is as follows. Assembly myAssembly = Assembly.LoadFrom("C:\\dev20\\dll\\pwyUserSVCSLib.dll"); Type Atype = myAssembly.GetTypes()[0]; ObjectHandle objass =...
  5. desi2002

    XML Data source for server controls

    Hello, here is the task I need to complete. I have an xml file which describes fields in the form like this. <?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?> <FORMS> <form id=&quot;1&quot;> <title>Resource Details</title> <elements> <element id=&quot;1&quot...
  6. desi2002

    Windows Authentication

    Hi, Does anybody know how to access windows nt user's credentials in an ASP program? I want to find out the role, user group of an user who logs in to the system. I don't know how to use windowsprincipal.isinrole. Please help. Thanks
  7. desi2002

    Windows Authentication

    Hi, Does anybody know how to access windows nt user's credentials in an ASP program? I want to find out the role, user group of an user who logs in to the system. I don't know how to use windowsprincipal.isinrole. Thanks
  8. desi2002

    Data grid paging

    Hi, I am trying to use a built in paging functionality to set up a Data Grid. I set parameters as follows. <asp:datagrid id=&quot;myDataGrid&quot; runat=&quot;server&quot; Border=&quot;0&quot; width=&quot;100%&quot; CssClass=&quot;DataGrid&quot; AutoGenerateColumns=&quot;false&quot...
  9. desi2002

    Escape Character

    Hello, the query is insert into test1 (name) values (@string) if the @string includes the single quote character in ('), i need to escape that character in some fashion. Does somebody know how to do it? Thanks S

Part and Inventory Search

Back
Top