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: gd082
  • Content: Threads
  • Order by date
  1. gd082

    connection to sybase database

    I want to connect to a sybase database on a server. I don't have a odbc driver for this. Where can i get one? I would like to use a dsn-less connection but don't know the string to fill in into the connectionstring-property either. Can someone help me please? thanks
  2. gd082

    I want to connect to a sybase datab

    I want to connect to a sybase database on a server. I don't have a odbc driver for this. Where can i get one? I would like to use a dsn-less connection but don't know the string to fill in into the connectionstring-property either. Can someone help me please? thanks
  3. gd082

    connection to sybase database

    I want to connect to a sybase database on a server. I don't have a odbc driver for this. Where can i get one? I would like to use a dsn-less connection but don't know the string to fill in into the connectionstring-property either. Can someone help me please? thanks
  4. gd082

    connection to sybase database

    I want to connect to a sybase database on a server. I don't have a odbc driver for this. Where can i get one? I would like to use a dsn-less connection but don't know the string to fill in into the connectionstring-property either. Can someone help me please? thanks
  5. gd082

    Frames

    We have a page with 2 different frames. There's a dropdownlist on the left frame, in which you can choose a company, the data on the right frame is depending on the company. How can we change the right frame if we choose another company in the dropdownlist? We cannot use hyperlinks because we...
  6. gd082

    how to open excel ?

    How can I get an excel window visible on my screen? I can create and manipulate and even save it but it doesn't appear on the screen, although its process is running in my task manager. btw, we are using 2 computers, the other problem with the acces-problem is not over :s
  7. gd082

    How to export data?

    We'd like to export data from an asp.net-page to excel. We tried this : Dim oExcel as Excel.application Dim OBook as Excel.Workbook Dim oSheet as Excel.Worksheet oExcel = New Excel.Application() oBook = oExcel.Workbooks.Add oSheet = oBook.Worksheets(1) oSheet.Cells(1,1) = "hello&quot...
  8. gd082

    treeview

    Is it possible to use something like header1, header2, ... (as in Word), or set the colors, font, ... in a treeview you made dynamically? I tried to use the CSS-styles, but it's not working. After this I tried to change the colors, ... in the code, but this isn't working either...
  9. gd082

    frames and switching pages

    I have a page that consists of 2 frames.The left frame is a column with links. When i click one, the right frame shows me another page. so far so good. Now the problem is that i use hyperlinks in the left frame, while i need a click event on that page for that certain link. So i thought, use a...
  10. gd082

    centralization of subs

    I have 10 webform-pages. I have written some subs that i need on every page. For instance, to get data from my database i have a self-written function get_data(str) with a sql-instruction as a parameter and it returns a dataset which contains my requested data. Now i copy and paste this sub on...
  11. gd082

    Mayday mayday, .NET is eating my code!

    Since yesterday, Visual Studio sometimes "eats" my code. All of a sudden some textboxes, labels, listboxes and dropdownlists disappear. This is really annoying, especially when you don't know exactly what was on the page. The strange thing is that those items are still on the list in...
  12. gd082

    Urgent: page-event

    Is there an event that is triggered when a page is closed? I want to do some clean up when the user leaves the current page. Is there anyone who can help me? thnx in advance
  13. gd082

    leave a page

    Is there an event that is fired when a user leaves the current page? We have a page in which you can enter data (in a database), the key is saved from the moment you enter the page. The problem is you can leave the page in another way (we use different frames), without saving the changes you...
  14. gd082

    CONCAT_NULL_YIELDS_NULL

    Hi I have a problem setting this value. I'd like to concatinate 2 strings, but sometimes one of those 2 is empty. So I tried to set 'CONCAT_NULL_YIELDS_NULL' to False. USE ADRES EXEC sp_dboption 'adres', 'CONCAT_NULL_YIELDS_NULL', 'False' I used this function. SQL Server Enterprise Manager...
  15. gd082

    problems with datetime

    hi I have a little problem. I have to display, insert and update dates from our database (sql server). To display the dates isn't a problem. But when I try to insert a date he isn't doing anything. Sub set_date() Dim strsql As String Dim dataset1 As New DataSet() strsql...
  16. gd082

    Clipboard

    How could we transfer data to the clipboard? Thx in advance
  17. gd082

    pop-ups

    Is it possible to make pop-ups in ASP.NET? If it is possible, how could we do this?
  18. gd082

    urgent: getting data out of a dataset in different subs

    I filled a dataset in my page_load sub from an sql-server db. Now i want to extract that same information from my dataset into a variable but in a different sub (for example.. in a clickevent of a button). Where and how must i declare my dataset to be able to access the data in it everywhere on...

Part and Inventory Search

Back
Top