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. novice001

    treeview problem

    Hi guys, Could anyone help me please... I'm not very proficient with visual c++... I have a treeview control on the dialog form. It shows the data from the database. A function is getting the data and populates the treeview. It works fine. Then, there's a button "Refresh" which calls...
  2. novice001

    Popup menu on a button click

    Hello, Guys, do you know if there's a way to show a popup menu when user clicks a command button? Something like button "Print" on a form that will show a small menu with choices "Report1", "Report2", etc Thanks! I will really appreciate any help.
  3. novice001

    Adding items to combobox

    Hello, Can anyone please help me. I'm trying to add/remove items to combobox from the code, but can't figure out how to do that. I tried to use addString, but I don't know how to use it correctly. comboname.listname.addString("string") doesn't work I don't need to use...
  4. novice001

    Report becomes blank

    There's no single query to show... This is report that shows what documents are not finished. Like orders, customer records, etc. Altogether 6 types of different things. For each one is a different query and different report for only that type. When program starts it executes all the queries and...
  5. novice001

    Report becomes blank

    Both
  6. novice001

    Report becomes blank

    Guys, thanks for help, but... I know this problem sounds strange, it really is like a fiction. I have a button that prints this report. There's almost no code there, just a few env. variables are assigned and one line to print this report. All the answer tables are done by multiple queries on...
  7. novice001

    Report becomes blank

    Hi All! I have a very strange problem with a report. I have a summary report that uses pretty complex data model - about 20 tables. One of the tables is used a few times under different aliases (I dont know what is important and what is not). It is usually just one page long. When I run or...
  8. novice001

    Select From (Select From...)...

    Hi All! Is it possible in Paradox to use SQL queries with subqueries in the form of Select [...] From (Select [...] From [...] ) Where [...] I believe this is standard SQL syntax, but it seems to be unsupported in Paradox. What I'm trying to do is the following (maybe you have other ideas...
  9. novice001

    Trying to sort the table in descending order

    NotAllThere, Thanks a lot! That's what I needed, I didn't know I can specify the sort order on the report. Probably that's why it didn't allow me to use another index in filter, because it can be done much easier. Thank you all.
  10. novice001

    Trying to sort the table in descending order

    Hi All, I'm trying to sort the table descending. The problem is that the table is the answer table generated from the query and i don't know how to specify secondary index. I tried this: rptQuery = Query ANSWER: :Private:Detail2.DB :Data:DETAIL.DB | Lot Id | Customer No |...
  11. novice001

    How to use record navigation buttons for one table only?

    Hello All! I have two tables on the form and I want to use record navigation toolbar to move through the first table only, despite which table is active at the moment. So if the cursor is on the second table and user clicks "Next" it moves to the next record in the first table. Is...
  12. novice001

    Printing the form from code

    Hello All, I have a question - is there a way to print the paradox form from ObjectPal? It is possible to print the form through File/Print, but I'd like to have a button on the form that prints the form itself. I believe it should be possible, but couldn't find any references in documentation...
  13. novice001

    cMax

    Hello All, I need to find maximum value in one of the fields of the table. I open it using tCursor, and use cMax to get the maximum: tcData.open(":data:table") tcData.edit() nuValue = tcData.cMax("field 1") It works fine, however, i'm afraid this can fail in multiuser...
  14. novice001

    disable events in the code

    Hi All Does anyone know if it's possible to disable/enable event responses from the code? I have a field that has some code attached to changeValue event, and i have a button that sets some value in that field, but i don't want the field to react on changeValue in this case(but still react if...
  15. novice001

    Cursor problem

    Does anyone experience the problem with the cursor in text field? When I'm typing text, the cursor moves further then the character width, so that when the text reaches middle of the box the cursor is already outside. It is very irritating and it makes editing the text very hard for user, as...
  16. novice001

    Report is created too long

    The answer turned out to be very simple - the report is generated very fast and reliable on another computer. Probably the problem is in Windows XP that I'm using, or I just need to reinstall everything. Thanks for help.
  17. novice001

    How to get rid of sorting in table frame?

    Hello All, I probably do something very stupied, but I can't figure out what. I have a tableFrame connected to a table. Each line is a combo (I don't know if it's important). When I insert any value in there, the table is automatically sorted alphabetically and data is moved up, so that just...
  18. novice001

    Report is created too long

    Hi all I have a report that gives me info from one record of the table. It's not big, just one page, a few fields, some calculation fields, etc. Nothing too complicated. However, it takes very long time to generate it - sometimes 20-30 seconds, sometimes even a few minutes. I have Pentium 4, so...

Part and Inventory Search

Back
Top