Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
~6K People Reached
Favorite Forums

4 Posted Topics

Member Avatar for Alex_71

Here is a snippet that sums all the items in column 1 (2nd column) of a listbox named "lstSnowfall" by using for..next to iterate through the list, starting with row 1 (assuming row 0 is a header). Private Sub btnSnowfall_Click() Dim i As Integer, Inches As Single For i = …

Member Avatar for ez4u2c
0
3K
Member Avatar for riahc3

A circle in CAD is a very simple entity--it's just a point with a radius. Not sure why you would want to import a .BMP just to draw a circle. Anyway, here is a link to the AutoDesk site with DXF manuals for many iterations. http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=24240325 I would suggest to …

Member Avatar for ez4u2c
0
2K
Member Avatar for hallianonline

You can simplify the task by writing the code in SQL instead of manipulating each record in DAO or ADO. The following code presumes you have a button called "btnSubtInv" on your form, and that this form also has a text box "Text1" containing product code 123518233 and text box …

Member Avatar for ez4u2c
0
319
Member Avatar for JamesPH

sum:= 0; j:= 0; for i:= 0 to 9 do begin inc(sum, i+j); inc(j, 2); end; inc(i); {this last inc() is just to make i end up with the same value (10) }

Member Avatar for ez4u2c
0
122

The End.