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

    <DIV> compressing to size of child control on print (not screen)

    I have a .jpg file with a white opaque <div> overlaying the top of it. Embedded in the <div> is a smaller .jpg logo. This works fine on the screen, but the <div> is not opaque in printing, although the embedded logo is. I can only surmise that for some reason, the <div> is compressing to the...
  2. RandyBlackburn

    Web Panel Not Printing

    My web page uses a .jpg file as the low z-index. Then places an opaque web panel (not html panel) over the top part of the .jpg. In that panel is embedded an small image control. This has the successful effect of replacing one image over another on the screen. However, in print preview, the...
  3. RandyBlackburn

    Print Preview Problem

    I have a complex PDF page that I am trying to render to a web page that I want to print. All the methods below yield a viewable web page, but when I print preview the page is turncated and generally overflows onto ansedcond page. I have tried the following, and have ensured that the browser...
  4. RandyBlackburn

    Want to window.print then redirect

    I'm trying to automatically prompt the user to print the already rendered page, then redirect to another page. I can't get window.location to work at all, though window.open works. If I use response.write to write the javascript, the page has not yet rendered. If I use script = "<script...
  5. RandyBlackburn

    How to print multiple generated html pages?

    I am generating a complex html page multiple times based on query resuts (like a report). I would like to be able to print the pages by a single action (like clicking a button, or... automatically). I would prefer to generate the pages in the background. Any help will be most appreciated. Randy
  6. RandyBlackburn

    How to incorporate existingb html form

    I have just converted a rather complex pdf form to html so that I can fill in data via asp.net/vb, and print out the form. What is the best way to incorporate it into my web app / existing asp pages? Thanks, Randy
  7. RandyBlackburn

    Turbo Delphi Data Explorer - Paradox

    I can't seem to view my delphi I paradox database with turbo Delphi's Data explorer. Is it possible? Randy
  8. RandyBlackburn

    Incompatible types: PResStringRec and String

    I'm using an old (Delphi I) component in turbo delphi, and I'm getting the error above. The code generating it is below... I got the error on both of the bolded lines. I don't understand what's wrong. Are there components that perform these file copy/move functions in turbo delphi or...
  9. RandyBlackburn

    Incompatible types Tform and TCustomForm error

    I'm trying to up-convert a delphi application to turbo delphi. I'm using a control called TEnterEdit, which has the following code line: MYForm := GetParentForm( Self ) I'm getting the Incompatible types Tform and TCustomForm error. First, is a control like this to handle...
  10. RandyBlackburn

    Dataview returns 0 records, but it's source dataset is ok

    I have a dataset (dsEmp1), a dataview (dvEmpActive), a datagrid(LeadGrid) and a dropdownlist(ddlRep) as a template in the grid. The source table of the dataview is dsemp1.employee. Right now the rowfilter is empty, and the sort is on EmpLastFirst. When I use the dataset as the datasource for...
  11. RandyBlackburn

    Can't update a sessioned dataview

    I created a dataview on one aspx.vb page, and I'm successfully using it on another page by bringing it in a sessioned variable. However, if I change the value of one of the fields in the dataview on the second page, it does not change the database. Can this be done without setting up a new...
  12. RandyBlackburn

    How to set UpdateText programmatically

    My "new" button adds a blank record to the top of my asp.net 1.1 datagrid. To complete the transaction the user currently hits the "update" command column. I would prefer that the column be titled "Add". So I need to change the UpdateText property of the editcommandcolumn from "Update" to...
  13. RandyBlackburn

    How to compare multiple db versions

    I'm trying to update the production version of a db with changes made to the developent version. At the moment, I'm trying to use a utility called "DatabaseComparer" but I'm running into a problem: the database names and filenames are, of course, identical. My approach has been to copy and...
  14. RandyBlackburn

    How to sort an asp.net datagrid on a computed column

    I'd like to sort my datagrid on the value of a dropdown lookup. which is not in the database. What's the best approach? Also, I'd eventually like to sort on some complex computed values which are computed in the datagrid. Thanks in advance, Randy
  15. RandyBlackburn

    Databind error on datagrid using dataview

    ASP 1.1 I'm getting a null reference error when I delete a record that has just been added, and then rebind a datagrid. I delete the record from a dataset (dsLeadCreditor). A dataview (dvLeadSearch) uses that dataset as it's source, and a datagrid (LeadGrid) uses the dataview as its...
  16. RandyBlackburn

    Problem with using dataview as sourced/filter for a datagrid

    I have a web datagrid which is using a dataview as its data source. In the designer, the LeadGrid's data source is set to dvLeadSearch. dvLeadSearch's table is set to a dataset.table. It's rowFilter is originally set to "LeadLastName = 'kelly'" in the designer. The first population of the grid...
  17. RandyBlackburn

    Problem setting RowFilter for datgrid

    I have a web datagrid which is using a dataview as its data source. In the designer, the LeadGrid's data source is set to dvLeadSearch. dvLeadSearch's table is set to a dataset.table. It's rowFilter is originally set to "LeadLastName = 'kelly'" in the designer. The first population of the grid...
  18. RandyBlackburn

    Datagrid Validation controls don't work on server

    I've got 3 validation contols in my datagrid. They work fine on my development machine, but don't fire when I move them to the production server, causing inappropriate errors. Everything else seems to work, however. Any help would be appreciated. Randy
  19. RandyBlackburn

    Datagrid insert problem

    I'm using the datagrid insert technique where a default record is inserted, then updated. What I have found is that it is possible for a user to edit or delete another lineitem before updating or cancelling the insert. How would I best solve this problem? I guess I can hide the delete...
  20. RandyBlackburn

    What's the vb.net equivalent?

    I'm trying to implement in vb.net an example which is provided in c#. What would be the equivalent of the image logic below in bold? using iTextSharp.text; using iTextSharp.text.pdf; public class Chap0602 { public static void Main() { Console.WriteLine("Chapter 6 example 2...

Part and Inventory Search

Back
Top