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 SkipVought 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. mvillara

    How to refresh form on each new record

    You should to write the code for setting the locked and enabled variable in an event that ocurr when each record appear.
  2. mvillara

    Including a Label in a Report

    Well, I'll expose exactly my intention. I am trying to elaborate a dinamic report that at the end shows a summarize of chapters. Each chapter is related to a header in a report. This means that every time this header is executed, I store a name in a colletion variable. For example, lets say...
  3. mvillara

    Including a Label in a Report

    By now, I have been trying many ways with no success. PLEASE HELP!!!!
  4. mvillara

    Including a Label in a Report

    I have been trying to include a Label in a report at runtime, this means that depending on what happen, I could insert several Labels into my report. Whats the way of including a Label in VB? Thanks.
  5. mvillara

    HOW CAN I SHOW CALCULATIONS IN MY FORM

    Of course you can. You have to place a TextBox at the Form Footer of the Form in Design Mode. Once placed, write int the Control Source Property the formula you want to show. You do ont especify anything about what you want to do. Control Source -> "= any formula " If you fell...
  6. mvillara

    Creating Labels in Run Time

    Hello, I am trying to create Labels in Run Time in a Form but it appears an error that I do not know how to solve. The code is the next: *************************************** Dim text(2) as Label dim i as integer For i = 1 To 2 With text(i) .Top = 2 + i .Left = 2 + i...
  7. mvillara

    Creating a unique id from 2 fields with a twist!

    Please, Try to explain it a little better the problem. I can not grasp it. Try to expone me an example to understand the whole concept.
  8. mvillara

    Creating a Total Field in a Form that contains a Subform

    KenReay, ok..... ALl is OK!!!!!! PERFECT!!!! I made a mistake but now all is all right. Many thanks.
  9. mvillara

    Creating a Total Field in a Form that contains a Subform

    Ken Reay, thanks for your answer. I have done it as you expline in your answer but the result is: "#Name?" In the "Offers" form I show many Products form "Products List", so, How the program know how many records from "products List" should sum?
  10. mvillara

    Creating a Total Field in a Form that contains a Subform

    Well, I have two forms called: "Products List" and "Offers". They are related to each other by the field IDOffer. So, the "Offers" form have "Products List" as a subform. This means that for each offer I create, I have many Products that are selected in...
  11. mvillara

    Expression within forms

    You have to make a Filter. One of many ways you can do this is the next: In the Row Source of each Combo_Box you click in the Button with three dots placed on the right. Once in the SQL Statement:Query Builder, drag the field (e.g.: Team Name) from the Table you are Querying (this is the TEAMS...
  12. mvillara

    Visual Basics Editor

    Its not so difficult to look for a manual within that web page..... you just try to go to the programs section and once in, look for the manuals you want.
  13. mvillara

    Mouse and Keyboard

    I think that you should to catch the Keyboard and Mouse events and do nothing. Go to the [b]WinProc[b] procedure from your code like this: case WM_LBUTTONDOWN: // Here is the action code when the left // button havs been pressed, so leave it empty...
  14. mvillara

    unresolved external symbol ????

    Thats mean that at the time of linking the libraries, the functions and definitions: __imp__dx_stopch __imp__dx_open ..... and so on.... can not be found to be linked. Try to look them and add them to your project. Good Luck.
  15. mvillara

    Visual Basics Editor

    Try to look for in the next Web Page: www.manualesgratis.com This Web is dedicated to distribute manuals and tutorials of any kind of stuff related to computers. Its a spanish web. Good Luck
  16. mvillara

    The HBITMAP Structure

    I have a question that I am sure that many people haven't asked themselves and its quite interesting if it had an answer. I have been trying to modify a bitmap in running time and I can not find any member within the HBITMAP Structure. I have been looking at specializated Web pages and I...
  17. mvillara

    Calling a CDialog from other CDialog

    Ok, now it works perfectly. Could you tell me who can I change the font, the background color of Label, CEdit,.... ? How can differ in propoerties of this kind two differents Labels? I can not find each particular properties to change it. Maybe I am working on Windows CE. In Visual Basic is...
  18. mvillara

    Calling a CDialog from other CDialog

    How can I get CDialog::DoModal() source code to override the mine? A simple comment is that the bEnableParent variable is declared, inicializated but not used. Whay should I do with it? Another thing that I havent mentioned is that I am programming for the Windows CE 3.0 and the function...
  19. mvillara

    Calling a CDialog from other CDialog

    Thanks tchouch. Well, I have got an Application based on Dialogs, and my first Window is precisely a CDialog. The code is the next: CMyDialog1 dlg1; m_pMainWnd = &dlg1; dlg1.DoModal(); At this point, this first dialog appear being my main window. From this dialog I have some...
  20. mvillara

    Drawing in Dialogs Windows

    Ok, Perfect. Many Thanks.

Part and Inventory Search

Back
Top