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. 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.
  16. desi2002

    developing compression algorithm

    Would you tell me more about the input data? what type of data you want to compress? Is it a bit map like 000011110000? How do you store input data (in a file)?
  17. desi2002

    Problem with SP and TEXT Column Type

    declare @error int output check if len(NewXMLRequest) > 8000 set @error=1 return error else your SP code Hope it helps you.
  18. desi2002

    single quote mark in Dyanamic sql string

    You need to add only one quote before S as below SELECT OID FROM InsurancePlanHeader WHERE PlanCode = 'PHYSICIAN''S MUTUAL' AND DELETEOID = '0'
  19. desi2002

    really a basic question

    i am not sure but i think it will work if u use rtrim, ltrim functions.
  20. desi2002

    Copying table structure

    One of the solutions could be First generate SQL script of the original table through SQL server enterprise manager. right click on the oroginal table name, Clock on All Task: Generate script. Save this script to a file. Replace the original table name by the new table name and run the script...

Part and Inventory Search

Back
Top