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

    Error Printing Material Plan

    Hi all, I was wondering if anyone had ever run into this error while trying to print the material plan: Error in Macro PRINTER-WRITE - call to Write Data Error (0x000006BE) in call to StartPage General Error Print Document Error I looked up the error code (0x000006BE), it's a generic...
  2. dace

    error posting invoices

    Hi, I'm having an error trying to post invoices- when I try, it ends up giving the error: "SQL Error - Open Failed -OEBWRK. = Table not Found" followed by "Opening Procedure Failed" I'm using 7.6.100a SQL. Does anyone have any suggestions? Thanks!
  3. dace

    Print Resizing

    Hi all - I have quick a question regarding resizing an image for printing. Right now I'm basically just capturing an image and feeding it to a PrintDocument object, then using a PrintDialog dialog box. However, it will only print part of the image if it's too big. So, is there a way to...
  4. dace

    Instance Variables / HTTP Handler

    Hi, I have a fairly basic question - If I have a class acting as a custom http handler that handles http page requests (by implementing (HttpHandler.ProcessRequest), when does it get instantiated, and is it shared across sessions? I'm basically wondering, if I have private class variables in...
  5. dace

    Getting the Build Version

    Hi all - I just have a quick question about build versions. With other .NET languages, you can get the build version from System.Windows.Forms.Form.Application.ProductVersion. Is there an equivalent for ASP.NET? I tried looking for a property in System.Web.UI.Page, but I haven't been having...
  6. dace

    Creating a New Page

    Hi all - I was wondering if it's possible to programmatically create and display an aspx page. So, basically something like: dim newPage as new Page Then: response.redirect( ? ) I can't seem to find anything on it. Thanks!
  7. dace

    Session Data Problem - HTTP Handler

    Hi all- I have a bit of a sticky problem. I've created a custom http handler, following the article: http://support.microsoft.com/default.aspx?scid=kb;en-us;307997 So, I have a page that, in its Page_Load, adds some stuff to the session with the syntax: Page.Session("NewKey") =...
  8. dace

    Problem with response.write + javascript

    Hi everyone- I'm using response.write in an asp.net codebehind to add some javascript to the http response: Response.Write("<script language=" & Chr(34) & "javascript" & Chr(34) & "> document.getElementById('PageContentFrame').src='WebForm3.aspx' </script>") Basically, I want this to set the...
  9. dace

    Problem with Response.Write

    Hi everyone- I'm using response.write in an asp.net codebehind to add some javascript to the http response: Response.Write("<script language=""javascript""> document.getElementById('PageContentFrame').location.href='WebForm3.aspx' </script>") Basically,, I want this to set the contents of an...
  10. dace

    Problem referencing iframe

    Hi everyone- I have an asp.net page which uses response.write to add some javascript to a page when it loads. Basically, I have a page that contains an iframe, and I want to set the source of this iframe to a different page. I have tried the following: <script language="javascript">...
  11. dace

    Deleting an Excel Worksheet

    Hi- Is there a way to delete/remove an Excel worksheet without popping up the "are you sure you want to do this" dialog? Thanks!
  12. dace

    Create a Pivottable

    Hi everyone- I can't seem to create a pivottable on an excel worksheet in-code. I have: Dim excelApp = applicationObject Dim workBooks As Excel.Workbooks = excelApp.Workbooks Dim activeBook As Excel.Workbook = workBooks(1) Dim workSheets As Excel.Sheets = activeBook.Worksheets Dim...
  13. dace

    Get Datagrid from Excel?

    Hi- Is it possible to expose a data structure (such as a datagrid) such that it could be accessed from Excel? I know I can push data into Excel from code, but I'm looking for a way to allow Excel to pull data from code instead. I've already implemented a custom data provider, but I...
  14. dace

    Installation Advice

    Hi all- Well, I dual-booted my laptop with WinXP and Debian (Knoppix installed to harddive), and everything seemed fine, except for the fact that it doesn't support power management for my laptop. So, I want to switch to another distribution. I have Mandrake 10 and RedHat. So, my...
  15. dace

    Using a .NET Application as an Excel Data Source

    Hi- Is it possible to use/expose a data structure within code as a data source? What I'm more or less looking to do is make a Visual Basic .NET application a provider for an ODBC data source. I don't want it to just serve as a provider for connecting to a database, I need it to actually allow...
  16. dace

    Creating An OLEDB Driver?

    Hi- I was wondering if anyone had any suggestions about where to start if I wanted to create an oledb driver/provider. I'm trying to find out if this is feasible.. Thanks!
  17. dace

    Web Control Inheritance

    Hi- I was wondering if anyone knew if it's possible to have a custom web control inherit from a windows control- ie have something that would normally inherit system.web.ui.webcontrol to inherit from another custom control that's derived from system.windows.forms.usercontrol. I haven't been...
  18. dace

    Design Question

    Hi- I'm just exploring options, and wanted some general opinions- I have a large-scale custom .NET application that basically front-ends a lot of SQL database data, and controls a user's access to data, etc etc based on their Windows VPN login. I'm looking to allow users to create Excel...
  19. dace

    Query Help?

    Hi- I'm having a problem with a simple query: -my problem is that I want everything from table1, plus anything from field2.wanted_field in a record that has a match in the comm_field fields. However, there's multiple entries for comm_field that match in both tables, but I only want one. Is...
  20. dace

    Array Problem

    Hi- I have a string array of variable size (I redimension it on the fly). I need to be able to get a variant that is an array of the contents of the string array- for example, say I had stringArray(0) to stringArray(2) I need to be able to declare something like: dim differentKindOfArray...

Part and Inventory Search

Back
Top