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!

Search results for query: *

  • Users: 5679
  • Order by date
  1. 5679

    Output parameter in Stored Prodedure

    I need to write a stored procedure with two output parameters. Please give me an example or an idea.
  2. 5679

    Upload word files on the web server and access them later

    I`m trying to upload files in the following directory "c:\\inetpub\\wwwroot\\projectname\uploads", but I`m getting the error "Access Denied". What permissions should i modify to get this working?
  3. 5679

    Datarepeater Databind

    Instead of using <%# DataBinder.Eval(Container.DataItem, "fieldname")%> in html, How can i bind data in C# itself, that is, without using the above line in html.
  4. 5679

    validating xml against schema

    I have an xml file and a schema.I have to validate the xml file against the schema. How can i do this in c#?
  5. 5679

    Passing TableName as parameter in SP

    my stored procedure is:- CREATE PROCEDURE testTables @tableName sysname, @name_New varchar(50) AS EXEC ('INSERT INTO ' + @tablename + '(name) VALUES (' + @name_New +')') But, when i execute it as follows:- testTables 'TESTING','myName' I get the following error:- server: Msg 128...
  6. 5679

    Passing TableName as parameter in SP

    I want to pass a a table name as parameter in a stored procedure to allow it to chioose its table, but it doesnt work. i`ve tried the following:- CREATE PROCEDURE testTables @tableName varchar (50), @name_New varchar(50) AS INSERT INTO [@tableName] VALUES (@name_New) testTables...
  7. 5679

    DataSet and XML

    I have loaded an xml file in a dataset. i want to save the resulting data in a database. any help or hints?
  8. 5679

    passing parameters to a web service in ASP

    I have a web service in C# that takes 4 parameters and saves them in a database. How can i invoke this web service in an ASP page and pass the 4 parameters? Note that i dont expect any response from the web service.
  9. 5679

    Consuming a web service in ASP

    Hi, I have to consume a web service in ASP (not ASP.NET). Can anyone give me sample code please.
  10. 5679

    replace \\ with \

    newPath = newPath.Replace("\\","\"); ^ new path is a string. with the above line of code, i get an error. how to solve this?
  11. 5679

    Unzip a file

    Hi, the dll is interesting. Where can i get code samples to illustrate the compression in zip using this dll.
  12. 5679

    Unzip a file

    I have to unzip a zip file using C#. do i need any plugins to do this in C#?
  13. 5679

    XSLT hyperlink

    I am tryiny to render an xml doc to HTML. the xml is like this: <?xml version="1.0"?> <links> <link name="XML Pitstop" url="http://www.XMLPitstop.com" description="A great place for XML Demos."/> </links> I have to display the "name" and "description" attributes as html, that works fine...
  14. 5679

    how cai i count the number of occur

    how cai i count the number of occurences of a substring in a larger string?
  15. 5679

    merge NTFS Partitions

    How can i merge 2 NTFS partitions, one of which is my primary partition. In windows 98, we could use the boot disk to manipulate partitions. is there a way to do this in XP?
  16. 5679

    from FAT32 to NTFS

    I have upgraded from win98 to to WINXP, but my file system in primary partition in still FAT32. how can i convert it to NTFS?
  17. 5679

    Internal messaging

    How can i use Outlook to implement an internal messaging system in a small intranet, which resembles a mailing system. including security features like usernames and passwords. Or is there another way of doing this?
  18. 5679

    List Property in combo box

    a combobox that allows users to choose from several values. the user may write values in the combobox(as in a textbox). the new values writtem should be saved in the list property so that the next time the program is used, the new value is not lost. and all this without using a database. Can...
  19. 5679

    Dual Screens

    Of course you need 2 VGA cards, one for each screen. You will need to do some windows kernel programming!! Can`t tell u more
  20. 5679

    convert string data type to form data type

    i have some form names stored in an access database. I retrieve them in a recordset named rstFormName. but i annot use this recordset to open the forms. how can this be done?

Part and Inventory Search

Back
Top