Search:
Type: Posts; User: jggtz
Search :
Search took 0.04 seconds.
You could use a RecordSelectionFormula in your rpt
Let's say that your parameter is named @quarter, then the formula could be like this:
( {@quarter}=1 And {Tablex.Month}>=1 And...
I didn't tested... but you could give it a try
http://www.nirsoft.net/vb/console_application_visual_basic.html
April 23rd, 2013 03:43 PM
Do You know how to resolve them manually ?
April 11th, 2013 06:25 PM
You should use the connection
cn.Execute ("create table " & text1.text & " (id int)")
Also
She should post in VB.Net forum
Do as David says:
If Dir("H:\SNH\" & Name, vbArchive) Then
objWord.Documents.Open("H:\SNH\" + Name, , , True)
Else
MsgBox "File Not Found"
End If
March 22nd, 2013 10:07 AM
If it's possible it would be better if you could generate the data in the desired format by modifying the application
March 20th, 2013 02:18 PM
One way :
Right click over field to count
Select Insert
Select Summary
Display an Insert Sumamry box
Select "Count" in "Calculate this Summary"
Select "Summary Location" ---> here choose the...
March 19th, 2013 02:45 PM
March 17th, 2013 09:48 PM
I never used Data Control but try next
For a = 1 to 97
For b = a + 1 to 98
For c = b + 1 to 99
For d = c + 1 to 100
numbs.recordset.addnew
numbs.recordset!Num1 =...
March 16th, 2013 12:43 PM
Insert a new formula field, name it MyTotal or whatever you like
WhilePrintingRecords;
numberVar totIncomes;
numberVar totSpends;
numberVar totStore;
numberVar tottot;
totot:= totIncomes -...
March 16th, 2013 02:44 AM
You could use the Month function "Parameter field = Month({table.datefield})"
March 16th, 2013 02:40 AM
Also, you can use only 1 formula field instead of 3, as :
#1
WhilePrintingRecords;
numberVar totIncomes;
numberVar totSpends;
numberVar totStore;
If {Emp016.PelProm} = "1" Then
March 16th, 2013 02:14 AM
(Sorry, I gave you only the half of the solution)
Yes
You can insert each variable at report Footer Section with another formula field as :
#4
WhilePrintingRecords;
numberVar totIncomes;...
March 15th, 2013 03:29 PM
"insert them in Detail Section & suppress them "
It means that you must insert the 3 formula fields in the details section of the report
and mark them as "suppress"
Right click on each formula,...
March 15th, 2013 09:59 AM
Create 3 new formula fields
name it as you like
insert them in Detail Section & suppress them
#1
WhilePrintingRecords;
numberVar totIncomes;
If {Emp016.PelProm} = "1" Then
Have you verified database?
This a small listview example
Let's start with it
Study it
Modify it...
add textboxes Qty, Description, Price & Total
add columns to listview
Repost when done
Say your Country
DID YOU REPLACE ALL YOUR CODE POSTED IN #1 FOR THE CODE POSTED IN #4 ?
The code in post #4 only add to listview without accumulate
So
Do not say... post your actual code
Then use code in post #4 instead of your code in post #1
Dim Itm As MSComctlLib.ListItem
Dim X As Integer
Dim Dbl1 As Double
Dim Dbl2 As Double
Dim Aux1 As String
Aux1 = ""
For X = 1 To ListView1.ListItems.Count
If...
If you want to just add to listview control every scanned item, then replace all your posted code by the next:
Dim itm As MSComctlLib.ListItem
Set itm = ListView1.ListItems.Add(, ,...
That's what you asked for in your previous post and that's what your code does
February 27th, 2013 05:58 PM
To check if the code is already in the listview you should iterate all the listview's rows
February 26th, 2013 11:04 PM
I don't think so... this guy has almost 2 months with the same problem in this and other forums
Click Here to Expand Forum to Full Width