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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by desi2002

  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

    Thanks Keith. Pl let me know how to develope editable datagrid in webform applications. Regards, Desi2002
  4. 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
  5. desi2002

    How to create instance of an object using reflection

    I could solve this. To get a name of the class, I used Type myType = Type.GetTypeFromProgID(Atype.FullName.ToString());
  6. 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 =...
  7. 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...
  8. desi2002

    Windows Authentication

    Thanks harmmeijer. But I want to know how to do this with .net.
  9. 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
  10. 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
  11. desi2002

    Data grid paging

    Chiph, I set parameters as follows. <asp:datagrid id=&quot;myDataGrid&quot; runat=&quot;server&quot; Border=&quot;0&quot; width=&quot;100%&quot; AutoGenerateColumns=&quot;False&quot; AllowSorting=&quot;True&quot; onsortcommand=&quot;OnClick_Sort&quot; Allowpaging=&quot;True&quot...
  12. desi2002

    Data grid paging

    I solved the problem. thanks
  13. 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...
  14. desi2002

    how to retain Oracle connection from parent process to child

    store the connection string in a variable and pass this parameter to the child process (char *argv[], int argc), and let the child process access the value. hope it helps you.
  15. desi2002

    info on low level programming in C

    Ray Duncan's &quot;Advanced MS-DOS Programming&quot; is very helpful. tells more about the interrupt handling and low level programming.

Part and Inventory Search

Back
Top