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

    Controls in MDI container

    Hi! I have an MDI application and I want to put a background image (the company's logo) in the MDI container itself. The problem is that when I open a child form, it is displayed UNDER the logo instead of OVER it. I tried using the SendToBack method on the image (it's a PictureBox control) but...
  2. xezekielx

    Uploading image in MS Access database

    Hi! I'm making an application that connects to an Access database to add/delete/update fields. Now I want to be able to "upload" an image file in the database but I have no idea how I could possibly do that. I made an OpenFileDialog control to be able to select the file I want to put in the...
  3. xezekielx

    Windowshade mode?

    Hi! Just wanted to know if it was possible to make a "windowshade" mode (i.e. shrink the window to only show the title-bar, not the rest of the form) in VB.NET. Thanks in advance!
  4. xezekielx

    Default printer help

    Hi! I have a small (I hope!) problem. I change the default printer (using the registry keys) to the virtual PDF printer. This works. I can also change it back to whatever the old printer was without any problem. The problem is that when I open the report with the acViewNormal parameter after...
  5. xezekielx

    Scrolling changes selected record?

    I just noticed that if I use the mouse wheel on the main form, it changes which record is currently "selected". I certainly DON'T want that to happen. I want the records to be selected within an "Open customer file" form. I set the main form's Cycle property to "Current Record" but it doesn't...
  6. xezekielx

    catching "This document was previously formatted for printer..." error

    Is it possible to catch this error through VBA code?
  7. xezekielx

    Clear waiting documents list (printer)

    Is it possible to clear the list of documents for a certain printer? The problem is that when I print using CutePDF and press the Cancel button instead of the Save button, it seems to stay in the list and never go away... Then I have to double-click on the printer icon in the system tray and...
  8. xezekielx

    Printers collection in Access 2000

    Hi! I have yet another problem... I used the Printers collection of the Application object to change the printer that Access will print to when I use DoCmd.OpenReport "rptFinal", acNormal (or something like that). The code works number 1 in Access 2002 but I just saw that the Printers collection...
  9. xezekielx

    number formatting

    Is it possible to format a real number, like setting the number of decimals, the decimal separator ("." or ","), the thousand separator, etc... Thanks!
  10. xezekielx

    Total newbie needing help here!

    Hi! I'm totally new to PostScript. I want to use it to generate a report from Access and then convert it to PDF using GhostScript. I don't want to use any virtual printer (whether it's to generate a PS or PDF file). I would just need a few guidelines to know how to set a page's size, position...
  11. xezekielx

    Report to PDF without virtual printer

    Hi! I know there have been countless questions concerning the exportation of an Access report to the PDF format but I was wondering if it was possible to do so WITHOUT using an virtual printer or any other external program (i.e. to handle the whole creation process of the PDF with code). Thanks!
  12. xezekielx

    problem with bookmarks and newly created record

    Hi! I have a problem (AGAIN!!)... I have a small form with a listbox that contains the names of the customers in the database. When I select a customer and click the open button, the main form refreshes and displays the information for the customer that I selected in the "open customer" form (it...
  13. xezekielx

    problem with DoCmd.Quit

    Hi! I have a little problem... I have a main form with a subform control that is used to display several subforms (there are buttons on the main form used to switch which subform is currently displayed). In order to save/cancel the changes made in the subform, I made a Save button (how...
  14. xezekielx

    Update fields in OnUnload event

    Hi everyone! Here's what I'm trying to do: when a subform loads, I want to put the data of every field in a array. When the subform closes, the fields' data is restored from the array. The trick is that if the user pressed the 'Save' button located on the MAIN FORM, the array will be updated...
  15. xezekielx

    hide properties window for a report

    Hi! I have a function that generates a report by adding/deleting controls on it. When the report is opened in design mode (it needs to be opened in this mode in order to be able to delete/add controls), the properties window appears. It's not much of a problem but it's kind of annoying. Is there...
  16. xezekielx

    undo changes on report

    Hi! I have this report that I dynamically add some subreport controls on. Now the problem is that I DON'T want to be prompted to save the report or not when I close it. I want to undo/cancel the changes that I made on it (adding the subreport controls) without the small prompt. Is it possible...
  17. xezekielx

    close dynamically report without saving prompt

    Hi! I dynamically created a small report (with code) and I wanted to know if it was possible to close said report while avoiding the small "Do you wish to save" prompt. Thanks in advance!
  18. xezekielx

    pagebreak inside subreport

    I read somewhere that it was not possible to have a pagebreak inside a subreport. Is there any way to "emulate" one, to make the page "break" without using a pagebreak control? I need to do this because I have a large report containing several subsections (each section being a subreport) and I...
  19. xezekielx

    Report formatting with code

    Hi! I'm trying to format some text fields of my report through the code but it doesn't work. I want the text to be bold if a boolean field is true and regular if the boolean field is false. Here's what I tried : txtField1.FontBold = cBool(Me!blnField1) When I open the report, I get an error...
  20. xezekielx

    avoid saving data upon losing focus

    Is it possible to avoid saving data when a subform loses focus? The reason I want to do this is because I want to have a "cancel" or "undo" button on my main form, not on the subform itself (because the "form" within the subform is changed with the click of other buttons), but from what I read...

Part and Inventory Search

Back
Top