API GetWindow get all the windows hwnd. But I don't want to get the system's window, I just want to get the window's title which saw in ALT + TAB ,How ?
Also the hidden nonsystem windows' hwnd(s) and titles ?
Dim strTest As String
strTest="+" ' Or "+++" and so on
Sendkeys strTest, True
An error occurs when the codes run. How can I use Sendkeys to send character "+"?
Thought I use code to set the toolbar's height but it dosen't seem to work.(I Want to keep it at a fixed height no matter how many buttons added)
Set width is OK.
Can anyone help me ?
METHOD #1
Continue with the same technique you used from my previous post.
Field 1: Description
=IIF((nz([Old ESUP]-([Old ESUP]*[Old DKLPCT])-[Old MPA])<>nz([ESUP]-([ESUP]*[DKLPCT])-[Current MPA])),[Description],'')
Field 2: Item Number
=IIF((nz([Old ESUP]-([Old ESUP]*[Old DKLPCT])-[Old...
Assuming that your "form letter" is an Access Report,
Either in the query for your form letter or in the textbox control on the form letter
If using a query create a column
DearName: =IIF(LEN([FirstName])>1,[FirstName],"Mr. " & [LastName])
and reference [DearName] in your...
dsk525,
One solution is...
Include the test
(nz(Field1 expression)<>nz(Field2 expression))
in the iif of each field
EXAMPLE
Field 1: OLD PRICE
=IIf([Old ESUP]>0 AND (nz([Old ESUP]-([Old ESUP]*[Old DKLPCT])-[Old MPA])<>nz([ESUP]-([ESUP]*[DKLPCT])-[Current MPA])),[Old ESUP]-([Old ESUP]*[Old...
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.