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 SkipVought 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: bduke
  • Order by date
  1. bduke

    Cookies between asp and asp.net

    I only found one that deals with loading the information into a database and retrieving the information from there, Could someone else give me some other ideas. thanks, and happy programming.
  2. bduke

    Having problem with viewer working with CR9

    We use Crystal 9 Enterprise and use the 8.5 viewer -- does CR9 use the server dll or do you have to install something on the clients machine..
  3. bduke

    Empty recordset field creates an empty temporary string >:-(

    You should check your field for spaces if that is causing the problem, and to check for certain positions you can use the Right,Left,Mid cammands to get those.. and if = spaces just move spaces to the field.
  4. bduke

    Height of Checkboxes in template colum of Datagrid Question

    You should be able to right click on your data grid and select edit template and choose the checkbox and change the font size in the property area and do this for item template and the edit item template..
  5. bduke

    Updating 2 SQL tables from 1 form

    I would move my updates after the connection
  6. bduke

    Performing a group by query on a datatable?

    Are you using a stored procedure/dataset/or direct SQL statement to the data table. SELECT CustomerID, CompanyName, ContactName, ContactTitle FROM Customers GROUP BY CustomerID, CompanyName, ContactName, ContactTitle Hope this is what you're looking for if not just let me know...
  7. bduke

    Include pages in ASP.Net

    Thanks -- So do you create your super pages in all your solutions and then inherit them or do you setup it up in a system setup and inherit from there like you can do with the system.object.
  8. bduke

    Include pages in ASP.Net

    We are converting to ASP.Net, but we have some Javascript functions in a directory and we use an include to bring the functions into the page --- Is there an easy way to do this, can we access this directory in ASP.Net Any help would be greatly appreciated.. Happy Programming....
  9. bduke

    Problems Saving

    Are you using the .NET IDE if so just rebuild the solution.. and this will save the projects that are associated to it...
  10. bduke

    Constraint Error with filling a dataset

    Try usgin some other field in the where clause and see if it works might just be the format of the dates....
  11. bduke

    Using variabels in an SQL statement

    dim srvPath as string = "http://server/public" sel = "SELECT " " & DAV:contentclass & " '" & , & "' " & DAV:displayname & " " & FROM scope('shallow traversal of "srvPath"') WHERE & " " & DAV:contentclass & " " & = 'urn:content-classes:folder' and & " " & DAV:displayname & " " & = 'Folder'"...
  12. bduke

    Update Joined Tables

    Is any of your fields keys to the table...
  13. bduke

    ASP.NET on Apach?

    http://msdn.microsoft.com/asp.net/technologyinfo/sysreqs/default.aspx Check this page out, I'm not sure about Apache Servers..
  14. bduke

    Like statement error on a SQL DB using vb.net

    Try address = "' & address & '" "'%'"")
  15. bduke

    Connecting to Oracle & Login/Passwd screen?

    I don't know if there is a automatic way of doing it - Why don't you create a screen having a login and password and then on your connection string you are accessing the fields that you accepted.
  16. bduke

    FSO and SecurityException problem

    Try adding to the directory manually by using windows explorer and if you can do it there let me know and we can go from there... happy Programming......
  17. bduke

    How to use SQLDataSources( ) in VB.NET?

    What are you trying to do with the data source.. Could you use the SQLDataAdapter, SQLDAtaConnection
  18. bduke

    Object being updated in one place but not another...

    How are you removing the record, are you using a stored procedure, delete method defined by the dataAdapter. What??
  19. bduke

    How to connect to oracle using OdbcConnection

    Are you using a dataAdapter to do this connection.. if not you would have to supply the UserId,Password, and you might even have to supply the server name... If you give me more information I might be able to help more...
  20. bduke

    datagrid drag n drop help..

    If I understand you correctly you just want to update the view and not the actual data from the database is that correct.

Part and Inventory Search

Back
Top