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

    Get Bytes Sent to Page

    Hi All, I am trying to retrieve the bytes sent to a page (probably use a BinaryReader). What is the easiest way to do this? I'm assuming there is some property in the Page object in which I can read from - but I don't know where to find it. I am using VS2005 .NET 2.0 C#. Thanks! Slo-No...
  2. Slonoma

    Stream Text File

    Hi all. For a C# webapp, I'm having a hard time streaming a text file. Heres my code: DateTime fileDate = (DateTime) Session["ExportFileDate"]; Response.Clear(); Response.Buffer= true; Response.ContentType = "text/plain"; Response.Charset = ""; this.EnableViewState =...
  3. Slonoma

    Response.Redirect Question

    Hi All, Can anyone tell me how to redirect to a page that is in a directory above the current directory? For example: Currently at /pages/thisfolder/thatfile.aspx want to redirect to /pages/thisfile.aspx Thanks! Slo-No The trouble with programmers is that they get high on their own...
  4. Slonoma

    RowFilter/DataGrid Question

    Hi all, I am displaying a report using a DataGrid. I am using a RowFilter to get only the records I need to display. One of the fields, contains 3 different string values. I need to display that record based on if ANY of those values are equal to what the user selected from a dropdown...
  5. Slonoma

    smtp problem

    Hi all, I am writing a simple mail program with C++. Here is ths code: //MAIL command to server write(sock, "MAIL FROM:", 10); write(sock, this->sender.c_str(), sizeof(this->sender.c_str())); write(sock, "\n", 1); And here is the error I get when I run it: To Server: MAIL...
  6. Slonoma

    Search Table Question

    Hey All, When you do a search table, what is returned if the record you are looking for is not found? Slo-No The trouble with programmers is that they get high on their own supply. -Dimandja
  7. Slonoma

    No keys to link

    This is getting really annoying and I cannot figure out a solution. I have 2 tables like the following: To | From | Date | QTY 1 2 6-14 3 1 2 6-15 8 1 4 6-14 2 and To | From | Date | QTY 1 2 6-14 4 1 2 6-15 7 1 4 6-14 1 In...
  8. Slonoma

    Subtotal problem

    Hey all, Any help will be greatly appreciated. I have a table like this: To | From | Date | Quantity 2 1 5-27 100 2 1 5-27 300 2 3 5-27 400 2 3 5-27 100 2 3 5-28 200 I would like to change the query have subtotals to show the...
  9. Slonoma

    Linking string field to number field?

    Hey all, What are my options as far as linking a string field to a number field using CR 9 and Oracle? Thanks, Slo-No
  10. Slonoma

    Oracle Driver for CR 9?

    Hey all, I am trying to access an Oracle database and I get an error message: "Could not find crdb_oracle.dll" I looked at Oracle's page as well as installed Hot Fixes and searched all of Crystal's site. Anyone know where I can find this dll? Thanks, Slo No
  11. Slonoma

    Left([field],integer) function doesnt work.

    Hi all, I was hoping someone might know why the Left() function doesnt work in Access 2000, but does in Access97. I have a query that is supposed to update a field, this query runs in Access 97, but when the database is opened in Access 2000(converted or not) I get an error message of...
  12. Slonoma

    Opening Access

    Without creating a connection or anything, all I want to do is open a certain Access 97 file with VB. Is there a siple way to do this? ( I only need to open the file, not make any chages to it )
  13. Slonoma

    Relinking Tables in Access 97

    Using two Access 97 databases that are linked using Linked Tables, I need to relink them to different databases. Is there a fast way to do this?
  14. Slonoma

    SQL Problem?

    Why does this statement: UPDATE Table SET Field = (Left([Field],6)) Work in Access 97, but not in Access 2000?
  15. Slonoma

    Filebox Filtering

    I need a filebox to display filenames if they contain the string "mon" or "tues" etc. I know this is simple, but I'm stuck.
  16. Slonoma

    ShowMenu.....

    I turned off the ShowMenus options in Access 97 and now cannot figure out how to turn it back on....HELP!

Part and Inventory Search

Back
Top