Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. D-Ward

    Poll #5: What other programming languages did you use, do you use, or are planning to use/learn?

    Started off with GW Basic back in the 80's and then onto QuickBasic writing accounts software and later CAD software for about 10 years. Used Visual Basic for 20 years do all sorts of stuff but mainly graphical based, CAD, ray tracing etc. Started working for a company in 1999 that ran on a...
  2. D-Ward

    Poll #4: What (proposed) successors of FoxPro have you tried, plan to use/learn about?

    Have recently looks at both Servoy and Alaska XBase, and like Joe above got excited about Polar Fox as it seemed to be exactly what I was looking/hoping for, but not sure if it is going to happen or not. Had a very quick play with FoxInCloud about a year ago, but struggled as was either beyond...
  3. D-Ward

    Poll #1: What versions of FoxPro/XBase languages did you use?

    I jumped into VFP9, but use FP2.6 to support an old DOS application that runs in one department, have been trying for years to get them to give it up, have it on my list to re-write in VFP just to get rid of it and the old XP machine that run a DOS emulator so they can use it !
  4. D-Ward

    C# DLL Declare Function

    Hi Chriss, My reply crossed over with yours, thanks for the link, will take a look. Darren
  5. D-Ward

    C# DLL Declare Function

    Thanks for the reply. Sounds a bit like a sledge hammer to crack a walnut as the functions are purely math based. Had the option of re-writing the functions in VFP but wanted them in a single location as are security related. Will convert to C++ and create an unmanaged DLL to use in VFP.
  6. D-Ward

    C# DLL Declare Function

    Hi, I need to access a C# DLL, but can not get it to work. I have access to the C# source code and the author, having been trying for a couple of days and just cannot get it to work. Have tried compiling it both ways, so you use DECLARE (preferred method) or as a COM object so you have to...
  7. D-Ward

    Cursor Adapter

    Hi Chriss, In terms of fondness, it would be like picking a favorite child :). The DE is so powerful, but the combination of working with the CA (which I had not used before) opened up new possibilities in terms of interacting with external data sources, previously had done all the work...
  8. D-Ward

    Cursor Adapter

    Hi Chris, Not meaning to misled, merely showing the limitation of my knowledge. My assumption on getting to this point was that I had created a CA with 3 child cursors, but following what you say, which makes sense, this is not what I have, it is in fact a data environment with 3 CA's each...
  9. D-Ward

    Cursor Adapter

    Hi Chris, I am using the cursoradapter to read and write data, I sync in both directions. The remote MySQL database and the local VFP database are duplicates, same tables and fields. All the data fields for example "Data1, Data2, Data3 ....' have corresponding time stamp fields...
  10. D-Ward

    Cursor Adapter

    Hi All, I have a project where you have a number of RPi's that are collecting data from wireless nodes, data is going into a MariaDB MySQL database held locally on the RPi. I have a VFP app that has a local database and sync the MySQL data to it for analysis etc. I started off with SQL pass...
  11. D-Ward

    BLE communication

    Have been playing a little, but need to correct something that I stated earlier. Notebook is Win 11, when you go into Bluetooth & devices you turn on Bluetooth and then press the 'Add device' button and it searches for nearby BT devices, and comes up with my phone etc. A little bit further...
  12. D-Ward

    BLE communication

    Hi Chris, Thank you for your reply and pointers. I have one of the BLE IoT devices that I want to use, it is based on the Renesas chips set, www.renesas.com/us/en/products/wireless-connectivity/bluetooth-low-energy. BLE is a massive jump from traditional Bluetooth where it was just simple...
  13. D-Ward

    BLE communication

    Hi All, I have a requirement to connect to some BLE IoT devices, I didn't know if anyone had done this in VFP. Did some stuff in the past with traditional Bluetooth using serial connections using the Windows RFCOMM I think from memory. But the world is a different place with BLE at GATT etc...
  14. D-Ward

    Macro's

    Hi Tarmar, You are correct, it is pronounced Tay-mar. Had not heard of FoxRockX, but Googled it and see that it is what FoxTalk became, just looked in an old filing cabinet here and found some copied of FoxTalk 2.0 which I think date back to 2005 when I attended the DevUK. Have also just...
  15. D-Ward

    Macro's

    Tamar, Sincere apologies, I have a feeling I read some of your articles in Code Magazine some time ago, so have no excuses. I live in the South West of the UK, and used to drive over the Tamar River on a daily basis, no real relevance but an interesting fact maybe, if you were not aware of...
  16. D-Ward

    Macro's

    Hi Chris, Nodes are created like this; SELECT dnPGroups SCAN FOR GID = thisform.cmbGroups.ListIndex WITH thisform.conArea cName = "lneGroup" + ALLTRIM(STR(dnPGroups.NodeID)) .NewObject(cName,"lneGroup","DexNet") cComm = "thisform.conArea." + cName WITH &cComm...
  17. D-Ward

    Macro's

    Chris, As per earlier post I missed out the ENDWITH when I typed the pseudo code into the forum originally, it is just before the ENDIF, and when I did the update I cut and pasted the original code. This is the actual code that I have; FOR ox = thisform.ConArea.ControlCount TO 1 STEP -1 IF...
  18. D-Ward

    Macro's

    You know when you wake up in the middle of the night and think, how stupid am I, or is it just me that gets that? Am still looking at using the collections in a different way as will speed up some of the object handling but, the answer to my original post is simple. I was doing this, and it...
  19. D-Ward

    Macro's

    Hi Chris, Thanks for the extra detail. I had managed to get part way down this route myself as you suggest, the shape and line objects I have classes for and add various properties to them when they are created, such as 'real size' as this reference is needed to scale the object against the...
  20. D-Ward

    Macro's

    Chris/Tamar, Thank you for your replies. The form creates the shapes when it loads, the lines are used to represent the groups, so they are created and destroyed as you want to view view different Groups, an RF node (shape object on the screen) can belong to several groups so it is not a one...

Part and Inventory Search

Back
Top