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...
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.
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...
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...
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?
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...
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...
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.
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...
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.
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
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.