No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: 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 = … | |
Re: 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 … | |
Re: 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 … | |
Re: 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) } |
The End.