Search found 115 matches

by ehowington
Sun Aug 04, 2024 6:06 pm
Forum: Coding Questions
Topic: PB_EventType_PopupWindow
Replies: 0
Views: 1481

PB_EventType_PopupWindow

How do you get url from #PB_EventType_PopupWindow when blocking the url being attempted to open but blocked?
by ehowington
Sat Mar 02, 2024 3:00 pm
Forum: General Discussion
Topic: Statements of Support for Software Measurability and Memory Safety
Replies: 5
Views: 987

Re: Statements of Support for Software Measurability and Memory Safety

Well seen to be saying c and c++ for people stop developing in those languages due to insecurity in memory and in other news reports. Waiting on Fred chime in on this one???
by ehowington
Sat Mar 02, 2024 5:11 am
Forum: General Discussion
Topic: Statements of Support for Software Measurability and Memory Safety
Replies: 5
Views: 987

Statements of Support for Software Measurability and Memory Safety

https://www.whitehouse.gov/oncd/briefin ... f-support/

Kinda throwing this out there for developers of pure basic and their response to this?????
by ehowington
Fri Nov 24, 2023 3:17 pm
Forum: Coding Questions
Topic: curl output inconsistent?
Replies: 5
Views: 1108

Re: curl output inconsistent?


One question:

Why do you use the external curl program :?:

The shown request can be also done with HTTPRequest()


he is right giggles

If OpenLibrary(0, "libcurl.dll")
Endif


OK
OK
5468400
result: 0
HTTP code: 200
HTTP data:
<!doctype html><html itemscope="" itemtype="http://schema.org ...
by ehowington
Mon Jul 24, 2023 3:18 pm
Forum: Feature Requests and Wishlists
Topic: SoundTouch Audio Processing Library
Replies: 0
Views: 912

SoundTouch Audio Processing Library

SoundTouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or audio files. The library additionally supports estimating stable beats-per-minute rates for audio tracks.


Open-source implementation
Supports any processor and OS platform ...
by ehowington
Thu Mar 30, 2023 9:22 pm
Forum: Windows
Topic: Latest version 601 gives a Malwarebytes error
Replies: 6
Views: 1586

Re: Latest version 601 gives a Malwarebytes error

well all I know not having edge is holding up all my development one thing that needed fixed years ago
by ehowington
Thu Mar 30, 2023 2:22 am
Forum: Windows
Topic: Latest version 601 gives a Malwarebytes error
Replies: 6
Views: 1586

Re: Latest version 601 gives a Malwarebytes error

Same for Microsoft windows defender for latest web gadget fix which should be edge not explorer which is not supported anymore!
by ehowington
Sat Oct 08, 2022 12:03 pm
Forum: Coding Questions
Topic: calendar drag drop
Replies: 1
Views: 441

calendar drag drop

Is there a way to drag drop schedule events in calendar module of a calendar perhaps? examples?
by ehowington
Sun Jul 31, 2022 3:19 pm
Forum: Coding Questions
Topic: Cartesian & Polar coverting some source
Replies: 5
Views: 762

Re: Cartesian & Polar coverting some source

EarthRadius.d = 6378.1370; 6372.795477598;6,378.1370
Structure point3d
x.d
y.d
z.d
EndStructure

Structure point2d
x.d
y.d
EndStructure

; /**
; * Convert [lat,lon] polar coordinates To [x,y,z] cartesian coordinates
; * @param {Number} lon
; * @param {Number} lat
; * @param {Number} radius ...
by ehowington
Sun Jul 31, 2022 3:10 pm
Forum: Coding Questions
Topic: Cartesian & Polar coverting some source
Replies: 5
Views: 762

Re: Cartesian & Polar coverting some source

Pointer null line 36?


I took out the definitions for Deg2Rad and Rad2Deg and substituted the PureBasic functions Degree() and Radian().
Aside from that you had a few typos.

EarthRadius.d = 6378.1370; 6372.795477598;6,378.1370
Structure point3d
x.d
y.d
z.d
EndStructure

Structure point2d
x.d ...
by ehowington
Sun Jul 31, 2022 2:12 pm
Forum: Coding Questions
Topic: Cartesian & Polar coverting some source
Replies: 5
Views: 762

Cartesian & Polar coverting some source

Wonder If I could get some input from anyone if this seems correct or better way to do it?

EarthRadius.d = 6378.1370; 6372.795477598;6,378.1370
Structure point3d
x.d
y.d
z.d
EndStructure
Structure point2d
x.d
y.d
EndStructure
ProcedureDLL DEG_TO_RAD()
ProcedureReturn 1/0.0174532925199432958 ...
by ehowington
Sun Jul 31, 2022 2:06 pm
Forum: Coding Questions
Topic: Snap7 communication library for Siemens PLC
Replies: 12
Views: 5963

Re: Snap7 communication library for Siemens PLC

mk-soft wrote: Sat Jul 23, 2022 4:59 pm
ehowington wrote: Sat Jul 23, 2022 4:53 pm hey do the have siemens virtual plc software? that this works with? for testing?
would this work for example PLCSIM Advanced
I haven't tried that yet. We can test it sometime (in the company).
Let me know 8)
by ehowington
Sat Jul 23, 2022 4:53 pm
Forum: Coding Questions
Topic: Snap7 communication library for Siemens PLC
Replies: 12
Views: 5963

Re: Snap7 communication library for Siemens PLC


Works fine with snap7 files
- /1.4.2 - for Windows, macOS and Linux
- /Snap7-loT/snap7-iot-arm - for Raspberry PI

For Raspberry (Linux for Arm) must be remove ASM-Backend code from snap7_include.pbi :!:


hey do the have siemens virtual plc software? that this works with? for testing?
would ...
by ehowington
Sat Jul 23, 2022 3:17 pm
Forum: Coding Questions
Topic: Snap7 communication library for Siemens PLC
Replies: 12
Views: 5963

Re: Snap7 communication library for Siemens PLC

have you updated this to 1.4.2 just curious
======================================================================[2016-12-04]
Version 1.4.2 - Platform release
----------------------------------------------------------------------------------
[Changed]
- Removed all the dependencies on STL to start ...
by ehowington
Sat May 14, 2022 4:56 pm
Forum: Coding Questions
Topic: trying to solve a bit of code conversion
Replies: 8
Views: 845

Re: trying to solve a bit of code conversion

# How To: Display a map at the proper reference scale

## Summary

​ In order to conceptualize the size of features and distances on a map, we must establish and indicate a consistent relationship between size on the map and size in real life. This relationship is the map's reference scale. For ...