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 strongm 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: *

  1. networkthis

    Combo Box Question - Is it possible to incremental search more then one column on drop down???

    Is it possible to have a combo box with two columns and search both columns. We have two columns in this combo - both columns are stored as character fields. Example: 0001 | Description 1 0002 | New Description 2 0046 | Another Description Column 1 While in the dropdown - we would like to be...
  2. networkthis

    How to make a Header/Title Bar for a Combo Box

    Thanks for the info, I was hoping I just overlooked the obvious.... I can use a label/labels, but now my issue is this combo box drops down and to the left because of it's position on the page. Is it possible to bind the label to the top left position of the drop portion of the combobox? Or to...
  3. networkthis

    How to make a Header/Title Bar for a Combo Box

    I have a combo box that has 5 columns and it needs to have a Header/Title Bar to describe the columns. Is it possible to add that feature easily - the control has to remain on the form as a combo box.
  4. networkthis

    VFP 9 - Continuous printing with no line feeds and no page ejects across multiple platforms.......

    I am looking for ideas to create a VFP solution that can print across multiple platforms: Currently have an exe that we run on Windows XP, Vista and Windows 7. We connect through Citrix, Windows Terminal Server 2003, 2008 and 2008 R2. We have a .prg file that prints to a line feed printer...
  5. networkthis

    Report Form: How to show a complete page as the last page

    Mike, To clear it up for others, NOPAGEEJECT has been around for a while and works great when you need to print multiple reports as 1. You can use a NOPAGEEJECT with previews, but from my experience, it only chains reports together when actually printing. Doing this: Report Form...
  6. networkthis

    Report Form: How to show a complete page as the last page

    If you have VFP 9 Sp2 then you can use VFP's _ReportListener to chain reports together when previewing on the Screen as well as printing. This will allow them all to be displayed and printed as if they are one report. loListener = newobject('_ReportListener', home() +...
  7. networkthis

    Top Form - Move with _Screen? or Docking Reportpreview Toolbar?

    Thank you for the info! Another question... When I'm doing this in a .prg. How or rather where would I call the init procedure? I understand where it goes in a form .scx and that the events fire load then init when creating the form. I thought to call init it is Procedure object.init. I...
  8. networkthis

    Top Form - Move with _Screen? or Docking Reportpreview Toolbar?

    Is it possible to have a top form move with the Main VFP screen itself? I am asking because I have a custom reportpreview which I have set up as a topform. I only used a topform because I need the report preview toolbar docked at the top of the window. I can use the alwaysontop with the...
  9. networkthis

    Mouse Click and Hold over multiple Items in Listbox

    Thanks to everyone for the replies. I accomplished what I was trying to do. In interactivechange I simply looped through the list box and gathered each of the selected items. Based on the criteria in the columns of my List Box - I wanted to dynamically display the actual Report # for each...
  10. networkthis

    Mouse Click and Hold over multiple Items in Listbox

    Thanks for the reply - it made me realize that I forgot about Interactivechange :-/ It works great now.
  11. networkthis

    Mouse Click and Hold over multiple Items in Listbox

    Is there a mouse command for clicking and holding of a mouse button? Example - I want to display the list of what is highlighted as a user mouses over items in a listbox while the mouse button is held down. I can get it to work with ctrl + click, click and up, and click and down, just not sure...
  12. networkthis

    Progress Bar - Form and .Prg File

    Thanks... Exactly what I needed. I had to create the object of the form using( Do Form myForm ) in the prg before trying to refence the progress bar on the form itself.
  13. networkthis

    Progress Bar - Form and .Prg File

    I'm using the OLE control Active X progress bar with VFP 9. I can get it to work just fine in most case during large queries, etc... This time however I would like to show it on my form while a .prg file is being opened - until it is closed. In my form right now I am simply saying Do...
  14. networkthis

    GDIPlusx System.app - Include .app in project and call it

    That's what I was beginning to think since the .apps in the project didn't have the option to "include" them when you right click on the file. Thanks for the quick response Olaf!!!
  15. networkthis

    GDIPlusx System.app - Include .app in project and call it

    I have some code that uses the GDIPlusX system.app I also have a project that creates a .exe The code works great if the files are run not inside of a .exe by simpy saying Do "system.app" .... My problem is when it is included in the project - it says that the file system.app is missing...
  16. networkthis

    Report - Drawing - Images

    Okay, I just figured out how to plot based on exact pixels for the report/image on the report. I just need guidance with placing either a small graphic or drawing a small circle at these exact pixel locations on the report.........
  17. networkthis

    Report - Drawing - Images

    Here's my dilemma. I have an image that is going to be used as the backdrop for a Report (Takes up a full 8 X 11 paper). It is a very complex chart, which would take forver to draw in VFP. I need to ovelay points onto that image which will display onto the report dynamically by pixel...
  18. networkthis

    close a single table stored in a variable

    *Just Curious, but are you trying to do this with paths to your tables? team_name = "C:/appl/data/immune" *IF so, you can simply, cut the last part, used expects just the alias name tbl_alias = JUSTSTEM(team_name) IF !used(tbl_alias) USE &Team_name IN 0 ELSE WAIT WINDOW "Talble is...
  19. networkthis

    Timeout ? Keypress/Interactive Change

    Thanks Dan you made my life much easier with that advice!!! For the record... It's great being the new guy sometimes!!! hmmmmm.... Maybe I should have read 1002 Things about Fox Pro instead Anyways, now that I know this, I can't wait to make some cool things with it! Btw... this was super...
  20. networkthis

    Timeout ? Keypress/Interactive Change

    I'm trying to create a timeout after each keypress(that can't be seen) - but if it is interrupted by another keypress I need it to cancel the timeout. I know that you can do this: - wait window "" timeout .5 and not see the wait window - wait clear - clears the screen - that pressing a key...

Part and Inventory Search

Back
Top