HuntingNut
HuntingNut
   Login or Register
HomeCommunity ForumsPhoto AlbumsRegister
     
 

User Info

Welcome Anonymous


Membership:
Latest: patrad69
New Today: 0
New Yesterday: 0
Overall: 13133

People Online:
Members: 0
Visitors: 124
BOT: 1
Total: 125
Who Is Where:
 Visitors:
01: Forums
02: Home
03: Photo Albums
04: Forums
05: Photo Albums
06: Forums
07: Forums
08: Forums
09: Home
10: Forums
11: Forums
12: Forums
13: Forums
14: Forums
15: Home
16: Forums
17: Forums
18: Your Account
19: Forums
20: Photo Albums
21: Home
22: Home
23: Forums
24: Photo Albums
25: Forums
26: Your Account
27: Forums
28: Forums
29: Home
30: Forums
31: Photo Albums
32: Forums
33: Forums
34: Forums
35: Forums
36: Forums
37: Home
38: Forums
39: Photo Albums
40: Home
41: Forums
42: Statistics
43: Forums
44: Forums
45: Home
46: Photo Albums
47: Photo Albums
48: Forums
49: Forums
50: Forums
51: Home
52: Forums
53: Forums
54: Home
55: Photo Albums
56: Forums
57: Forums
58: Forums
59: Forums
60: Forums
61: Forums
62: Forums
63: News
64: Forums
65: Your Account
66: Forums
67: Home
68: Forums
69: Home
70: Forums
71: Forums
72: Forums
73: Home
74: Forums
75: Forums
76: Forums
77: Photo Albums
78: Home
79: Forums
80: Forums
81: Your Account
82: Forums
83: Home
84: Forums
85: Home
86: Home
87: Forums
88: Forums
89: Home
90: Home
91: Forums
92: Forums
93: Forums
94: Forums
95: Home
96: Forums
97: Forums
98: Forums
99: Photo Albums
100: Photo Albums
101: News
102: Photo Albums
103: Your Account
104: Forums
105: Forums
106: Forums
107: Photo Albums
108: Home
109: Forums
110: Home
111: Home
112: Photo Albums
113: Forums
114: Forums
115: Forums
116: Forums
117: Forums
118: Forums
119: Photo Albums
120: Home
121: Forums
122: Forums
123: Home
124: Your Account
  BOT:
01: Forums

Staff Online:

No staff members are online!
 

Coppermine Stats
Photo Albums
 Albums: 308
 Pictures: 2452
  · Views: 825078
  · Votes: 1316
  · Comments: 86
 

Find a bug in PointBlank? Have a feature request?
Post your bug reports or feature requests here!
Go to page 1, 2  Next
View previous topic :: View next topic  
Author Message
DallanC
Site Admin
Site Admin


Joined: Jan 18, 2005
Posts: 3572
Location: Utah

PostPosted: Wed Jan 26, 2005 7:47 am    Post subject: Find a bug in PointBlank? Have a feature request? Reply with quote

This forum is for posting bugs related to Pointblank ballistics software or for requesting features for future versions.


-DallanC
Back to top
View user's profile Photo Gallery
ELKFEVER
Rookie Member
Rookie Member


Joined: Aug 23, 2005
Posts: 2

PostPosted: Tue Aug 23, 2005 10:47 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

I would like to see both "Zero" points listed for sight-in purposes. I use the first crossing of the zero line to fine tune before shooting at the final "Zero ". I hope this makes sense.
Thanks for a great program!!
Mike (ElkFever)
Back to top
View user's profile
DallanC
Site Admin
Site Admin


Joined: Jan 18, 2005
Posts: 3572
Location: Utah

PostPosted: Wed Aug 24, 2005 8:05 am    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Welcome to the site ELKFEVER,

I've had requests for this feature and will look into it for the next version of PointBlank


-DallanC
Back to top
View user's profile Photo Gallery
Al_Sohlstrom
Member
Member


Joined: Aug 30, 2005
Posts: 75

PostPosted: Wed Aug 31, 2005 10:32 am    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Hi

Zero-intercept on the ascending arc would be great, even if it were just a number, you know

Crosses sight line at: 12 Yards 2 Feet 3.31 Inches

Like that, maybe? ( Shocked Mmm - 3.31 inches, eh? Confused Oh well - when your desperate.... )

A solve-for-zero on the mathmatics side, or if you're doing the trajectory in a table, find the cheek-by-jowel entries where one elevation is below the sight line and the next is above, then interpolate.
Code::
/*  In poorly-remembered C:  I haven't done any of this stuff in years...  /*

for (Start = 0; Table[Start].Elevation < 0; Start++);  /*  Find the crossing     */
                                                       /*  Start = 3, for me...  */
Below = Table[Start - 1].Elevation;        /*  -.32" At 10 yards      */
Offset = (Start -  1) * RangeIncrements;   /*  10 yards, as above...  */
Above = Table[Start].Elevation             /*  .26" at 15 yards       */

Total = abs(Below) + Above;                /*  = .58"  */
Scale = abs(Below) / Total;                /*  32/58ths = 0.55172 or there abouts */
Step = Scale * RangeIncrements;            /*  About how much of the step         */
                                           /*  is needed to get to the sight line */
                                           /*  2.7586 yards, or there abouts      */
DistanceConvert(Offset + Step, Yards, Feet, Inches);
....

Well - or something like that.

If you want some programming help, I'm your boy. I've got this copy of Delphi 6, bought for a database project some time ago, laying fallow in my bedroom, and have been looking for an excuse to upgrade.

....

(Okokok - it LOOKS like a Delphi app, anyhow. I've got Visual C++, Visual BASIC and Visual FoxPro laying around somewhere, too. Yes - I'm one of THOSE!)

I'm interested in doing some long-range shooting, so my interestes lay in the direction of 20 inches high at mid-arc and 25 low at terminal. I think that adding a maximum-range field, so that you could target at 425 and max out at 500, would be a nice addition.

Scaling the Y-axis to the ballistics would rock too, for the 1000-yard shooters in the group. Uhhh... shootER, maybe. Shooting the thou' with my software-only load gives me a mid-range of about 88 inches and a termianl of -81 zeroed at 875 yards. The software still only plots to a maximum high of about 5 inches and a low of about -10.

One swing through the mathmatics could provide a zero-intercept and minimum and maximum values, all of which could be usefull.

_________________
"Al's Postings," from the, "Good Eats Fan Page."
At the heart of evey complex problem lies a graceful solution involving explosives.
Back to top
View user's profile Photo Gallery
DallanC
Site Admin
Site Admin


Joined: Jan 18, 2005
Posts: 3572
Location: Utah

PostPosted: Wed Aug 31, 2005 2:00 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Download the PC version and look into the PBR calculations.


-DallanC
Back to top
View user's profile Photo Gallery
Earl_Gray
Rookie Member
Rookie Member


Joined: Dec 05, 2010
Posts: 1
Location: Mid Montana

PostPosted: Fri Sep 27, 2013 5:09 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Thanks DallanC,
I've been away for some time and just downloaded the newest version.
other than a couple of problems that I sent PM everything is outstanding.
I have been recommending this site and program to all my shootin' buddies.

I recently completed a 20 Practical and would like to see it available on the caliber list. I know the Tactical is close but I would like it to show up. I currently have it listed in my data as the Tactical. Is there a way I could "free field" the correct name into my data charts

_________________
The difference between ordeal and adventure is attitude
Back to top
View user's profile
DallanC
Site Admin
Site Admin


Joined: Jan 18, 2005
Posts: 3572
Location: Utah

PostPosted: Fri Sep 27, 2013 5:25 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Earl_Gray wrote:
Thanks DallanC,
I've been away for some time and just downloaded the newest version.
other than a couple of problems that I sent PM everything is outstanding.
I have been recommending this site and program to all my shootin' buddies.

I recently completed a 20 Practical and would like to see it available on the caliber list. I know the Tactical is close but I would like it to show up. I currently have it listed in my data as the Tactical. Is there a way I could "free field" the correct name into my data charts

I will update the master calibers listing. For now, you can rename the "Example_calibers_user.slk" to just be "calibers_user.slk" and edit it and add your caliber to the list. This is for users who have their own home-brew calibers and other user data.


-DallanC
Back to top
View user's profile Photo Gallery
Victorian
Member
Member


Joined: Jul 07, 2014
Posts: 29
Location: Melbourne

PostPosted: Wed Jul 09, 2014 6:58 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Great looking software, still getting the hang of it.
Suggestion/request ...
Can you have an option with metric for range/temperature, but all other (velocity, drop, drift etc) in feet/inches? Most load data is in fps and that's what I think in, but range and temperature for me in metric.

This would be nice if possible :-)

_________________
Ne Obliviscarus
Never Forget (1996)
Back to top
View user's profile
DallanC
Site Admin
Site Admin


Joined: Jan 18, 2005
Posts: 3572
Location: Utah

PostPosted: Thu Jul 10, 2014 1:14 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

I can look into it... maybe it would be better to put up a popup menu with checkboxes for specific things people want in metric, and others they want in SAE.


-DallanC
Back to top
View user's profile Photo Gallery
Victorian
Member
Member


Joined: Jul 07, 2014
Posts: 29
Location: Melbourne

PostPosted: Thu Jul 10, 2014 4:19 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Thanks :-)

We call yards, feet inches etc "imperial" measures, but I figured unshackelling your selves from the empire in 1776 you would have another name. SAE (Standard American Engineering?)

_________________
Ne Obliviscarus
Never Forget (1996)
Back to top
View user's profile
DairyFarmer
Rookie Member
Rookie Member


Joined: Dec 21, 2014
Posts: 4
Location: South Africa

PostPosted: Sat Dec 20, 2014 11:50 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

I too would like the ability to change certain fields between metric and imperial.

Also is it possible to make it easier to add bullets, powder, cases and primers to the database? I find that using notepad I do get a lot of corrupt files and Excel just plain corrupt the file. I have just resigned myself to adding them manually into the fields when creating a load. But it would be nice to see them in the drop down.

Some suggested fields to add:
Times case fired
Type of resizing (full / neck)
Type of crimp (none / roll / taper ... )
OAL (actual / to ogive)
Die settings (i.e +0.5 in / -0.25 out ....)

Many thanks
Back to top
View user's profile
Vince
Site Admin
Site Admin


Joined: May 25, 2005
Posts: 15725
Location: Brisbane AUSTRALIA

PostPosted: Sun Dec 21, 2014 12:55 am    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Dallan checks these threads regularly DairyFarmer, so hang in there mate, he won't be too far away with an answer of some sort.

_________________
Cheers, Vince Cheers

Illegitimi non carborundum
(Never let the bastards grind you down)

Live simply. Love generously. Care deeply. Speak kindly. Leave the rest to God.

"Nulla Si Fa Senza Volonta."
(Without Commitment, Nothing Gets Done)
Back to top
View user's profile AIM Address MSN Messenger Yahoo Messenger Photo Gallery
DairyFarmer
Rookie Member
Rookie Member


Joined: Dec 21, 2014
Posts: 4
Location: South Africa

PostPosted: Sun Dec 21, 2014 9:39 am    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Great thanks

_________________
NSA Member. Dedicated Hunter. Dedicated Sport Shooter. Owner of many firearms.
Back to top
View user's profile
DallanC
Site Admin
Site Admin


Joined: Jan 18, 2005
Posts: 3572
Location: Utah

PostPosted: Mon Dec 22, 2014 4:52 pm    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

DairyFarmer wrote:
I too would like the ability to change certain fields between metric and imperial.

This might be possible in a future update. The whole conversion thing is rather messy but I can take a look at it.

Quote::
Also is it possible to make it easier to add bullets, powder, cases and primers to the database? I find that using notepad I do get a lot of corrupt files and Excel just plain corrupt the file. I have just resigned myself to adding them manually into the fields when creating a load. But it would be nice to see them in the drop down.

Some suggested fields to add:
Times case fired
Type of resizing (full / neck)
Type of crimp (none / roll / taper ... )
OAL (actual / to ogive)
Die settings (i.e +0.5 in / -0.25 out ....)

Many thanks

I haven't run into any issues using EXCEL for editing data. SLK is one of the oldest and most supported formats out there. We could go to XML or LUA but then most people would find it even harder to edit as outside of programming circles, those formats aren't used by lay-people and they don't have the tools to edit.

It seems people in general, dont modify the files too much... I'd estimate around 2-3% of the total users have custom data.

-DallanC
Back to top
View user's profile Photo Gallery
JimHelvetia
Rookie Member
Rookie Member


Joined: Aug 28, 2012
Posts: 1
Location: Helvetia, Oregon

PostPosted: Tue Jan 06, 2015 8:06 am    Post subject: Re: Find a bug in PointBlank? Have a feature request? Reply with quote

Hello Dallan,

I've been using PointBlank v2.0 for some time now and have liked it so much I bought the license! Starting a week or so ago, the drop down menus for selecting bullet manufacturer and type of bullet no longer drop down. Plus, the ballistic coefficient field doesn't autopopulate. It worked in the past and I didn't knowingly do anything to change it. I can manually type in the information.

I'm running Win7-64.

Thank you for any help that you can provide!

_________________
--
Good hunting ...
Jim


Last edited by JimHelvetia on Wed Jan 07, 2015 9:48 am; edited 1 time in total
Back to top
View user's profile
Display posts from previous:   
Post new topic   Reply to topic   Printer Friendly Page    Forum Index » Bug Reports / Feature Requests
Page 1 of 2
All times are GMT - 7 Hours
Go to page 1, 2  Next



Jump to:  


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Valid CSS! Valid HTML 4.01!
Click to check if this page is realy HTML 4.01 compliant for speed :)

All logos and trademarks in this site are property of HuntingNut.com.
The comments are property of their posters, all the rest © 2011 by HuntingNut.com
Interactive software released under GNU GPL, Code Credits, Privacy Policy

.: Upgraded to DragonFly 9.2 by *Dizfunkshunal* :.