CHIRP - New Model # 1343

Size: px
Start display at page:

Download "CHIRP - New Model # 1343"

Transcription

1 CHIRP - New Model # 1343 Status: Closed Priority: Normal Author: Robert Elsinga Category: Created: 01/02/2014 Assignee: Robert Elsinga Updated: 06/28/2018 Due date: Chirp Version: Equipment Loan Offered: No Subject: Description Polmar DB-50M (Anytone AT-5888UV clone) Hi, I purchased a Polmar DB-50M, which is a clone of the Anytone AT-5888UV, with minor differences. The most important difference is that it supports 7 character channel names. I read the model name from the debug file: User selected AnyTone 5888UV on port COM9 Clone thread started 000: d d 00 IDB-50M. 008: e V I also read the Intek 2040 issue and tried to create a polmar-db50m.py file based on the intek.py file (changed the vendor, model and classname), but loading the module seems to time-out when reading the class PolmarDB50Madio(chirp_common.CloneModeRadio, chirp_common.experimentalradio): """Polmar DB-50M""" VENDOR = "Polmar" MODEL = "DB-50M" Is there a FAQ on how to create a *.py file yourself? I don;t mind tinkering a py file and I'm not scared of programming. Associated revisions Revision 2169:4f12abd6d77a - 01/04/ :22 am - Dan Smith [anytone] Add Polmar DB-50M clone support Fixes #1343 Revision 2170:e1eb3f50c25b - 01/04/ :31 am - Dan Smith [anytone] Add Polmar_DB-50M.img test image Related to #1343 History #1-01/02/ :17 am - Tom Hayward - Status changed from New to Feedback 01/09/2019 1/7

2 A timeout when reading the radio indicates Chirp doesn't understand the radio's protocol or the cable isn't working. Maybe it isn't a clone after all. You may need to sniff the protocol and compare to the Anytone code. Check [[Developers]] for more information. The mailing list or IRC would be a good place to ask your questions. #2-01/02/ :36 am - Robert Elsinga I will ask in the developer mailing list, if I can sniff the protocol without any additional hardware I will gladly do so. I can upload and download using the official software without any problems. I know what the (binary) frequency file which is used by the official software is made up of and I can create one from Excel through a hexeditor (to convert the hex-string to actual binary data, something Excel can't create). So maybe that will help too. #3-01/02/ :56 am - Dan Smith IMHO, the timeout is likely just because the proper ident string isn't being sent and the radio never responds, so CHIRP times out. If you see the new model in your model drop-down during clone, then it's loading it properly. I expect messing around in _ident will yield some progress. #4-01/02/ :15 pm - Robert Elsinga It is in the dropdown list after loading the py module. I noticed that I didn't change the response in _ident, now it is IDB-50M, like it is in the debug file. Still no joy though, load from radio does nothing. From the debug log: NOTE: driver re-registration enabled Registered Polmar_IDB-50M = PolmarDB50Madio Traceback (most recent call last): File "chirpui\mainapp.pyo", line 1357, in mh File "chirpui\mainapp.pyo", line 615, in do_download File "chirpui\mainapp.pyo", line 573, in _confirm_experimental File "chirpui\common.pyo", line 348, in show_warning File "chirpui\common.pyo", line 308, in _add_text TypeError: GtkTextBuffer.set_text() argument 1 must be string or read-only buffer, not None Traceback (most recent call last): File "chirpui\mainapp.pyo", line 1357, in mh File "chirpui\mainapp.pyo", line 615, in do_download File "chirpui\mainapp.pyo", line 573, in _confirm_experimental File "chirpui\common.pyo", line 348, in show_warning File "chirpui\common.pyo", line 308, in _add_text TypeError: GtkTextBuffer.set_text() argument 1 must be string or read-only buffer, not None But it didn;t even display the Experimental radio popup, which does show when querying the DB50M as a AT-5888UV. But the trackback suggests there is some sort of argument problem, but I didn't change any argument, only the class and response in _ident. I asked for a capture tool in the developers mailinglist, hope I get a response so I can start debugging. 01/09/2019 2/7

3 #5-01/02/ :18 pm - Dan Smith The string in the image file is not the same as what the radio expects to start the clone, IIRC. Get Portmon and you can watch exactly what the OEM software is doing. #6-01/02/ :18 pm - Robert Elsinga My changes to the intek.py file (now saved as polmar_db50.py): def _ident(radio): radio.pipe.settimeout(1) _echo_write(radio, "PROGRAM") response = radio.pipe.read(3) if response!= "QX\x06": print "Response was:\n%s" % util.hexprint(response) raise errors.radioerror("unsupported model") _echo_write(radio, "\x02") response = radio.pipe.read(16) _debug(util.hexprint(response)) if response[1:8]!= "IDB-50M": < only this line print "Response was:\n%s" % util.hexprint(response) raise errors.radioerror("unsupported model") class PolmarDB50Mradio(chirp_common.CloneModeRadio, chirp_common.experimentalradio): """Polmar DB-50M""" VENDOR = "Polmar" MODEL = "IDB-50M" BAUD_RATE = 9600 (all except first and last line) So no arguments changed. Must be somthing in the data, I guess. #7-01/02/ :20 pm - Robert Elsinga Dan Smith wrote: The string in the image file is not the same as what the radio expects to start the clone, IIRC. Get Portmon and you can watch exactly what the OEM software is doing. Okay. I thought the string in the debug logfile would be what I needed to change in the py file. Couldn't find the debug.log from the intek to compare. :) I will download portmon and check what the official software sends and receives. Will post the result here. #8-01/02/ :49 pm - Robert Elsinga 01/09/2019 3/7

4 Portmon is not supported on x64 systems and I'm running Win7 x64... Will try to locate another tool to monitor the serial comms... #9-01/02/ :50 pm - Dan Smith It works fine on x64 Windows 7. #10-01/02/ :55 pm - Robert Elsinga Strange, I downloaded version 3.03 which seems the latest. It shows Error 2 and quits or does not show any serial ports. The Serialcomms registry hyve only shows the 3 commports I have (one physical, 2 USB2serial Prolific ones). Do you have a link to the working one? #11-01/02/ :58 pm - Dan Smith See this (the first hit on google for "portmon windows 64"): There are answers below about how to make it run. #12-01/02/ :16 pm - Robert Elsinga Already found that one and tried all suggestions. Doesn't work. Every 2000/XP compatibility mode still shows error 2. Also copied from USB disk to fixed D: drive and still no joy. Ran from CMD box and/or as admin, nothing. :( Problem is, all my other machines are Win7 x64 or Windows Server 2008 x64. And i doubt it runs from VMware Workstation, but I might just install a Windows 7 x86 VM just to try... But that mght have to wait until next week. ;) Since I can export from my massive ( frequencies) Excel file to Chirp CSV format, I rather use Chirp than input the channels by hand (even if it's "only" about 300). I tried to hack the binary *.fre file together and it loads fine in the official software, but it won't upload. :( So I really want to get Chirp to work... Then I can upload the channels with Chirp, read from the radio and then alter all settings and upload the complete file to the radio. So any suggestion on how to get Portmon to work or an alternative is appreciated. Tried Api Monitor v2, but couldn't find the right calls to monitor for the serial data yet. #13-01/02/ :19 pm - Dan Smith Why wouldn't it work in VMware? It just hooks into Windows APIs, so I don't see why it would be specific to any hardware (or lack thereof). It works in virtualbox and KVM for me. I sure as hell don't have windows installed on any real hardware here :) #14-01/02/ :22 pm - Robert Elsinga Okay, will install Win7 x86 real soon and monitor from within the VM. Only thing I need is get the USB serial cable to work, but it is a generic Prolific one, so hope that works. If I can read the radio then I wil monitor the serial data and log it. 01/09/2019 4/7

5 Will report back when I have something to show. ;) Thanks for the support so far. :) #15-01/04/ :07 am - Robert Elsinga Okay, fired my XP SP3 x86 VM, installed the serial driver and the programming software and ran Portmon. I attached the logfiles (both captures in ASCII and HEX, without all status calls so only the read/written data). <edit, can't submit with the 4 logfiles attached, I placed them here for download: Is there anyone who has a similar capture of a AT-5888UV or Intek HR-2040? Then I could compare the way they read/write to the DB50M #16-01/04/ :14 am - Dan Smith - File Portmon_read_5888UV_hex.log.txt added - Assignee set to Robert Elsinga Here is a hex read from my Anytone. I think that from looking at your own log and the code, you should be able to suss out the differences pretty easily, but hopefully this will help. #17-01/04/ :46 am - Robert Elsinga Okay, I have compared the two files and they start of exactly the same with the sending PROGRAM and receiving PROGRAMSQ Ox06. Then the command sent is the same every time (0x , at least for the first couple of times I compred them), but the answer is different. Not a surprise, since it starts with a query for the model number. However, the length of the answer is the same (26). And later in the log, when querying the channels, the command seems to be the same for both models and theanswer is the same length. I cannot find any fundamental differences, which is not a surprise since both radio's share the same body. That could mean I can just change the intek.py file, but that didn't work... But I now know for sure the DB50M returns "DB-50M" as the model name (omitting the 0x0249 which is returned for both radios). Assuming the DB50M is behaving the same as the 5888UV or Intek HR2040, do I just need to change the model name and the class definition? #18-01/04/ :48 am - Dan Smith This sort of back-and-forth development discussion is much easier on the dev mailing list. Can you start a thread there and we'll pick up? Thanks! #19-01/04/ :52 am - Tom Hayward #20-01/04/ :56 am - Robert Elsinga Changed all occurrences of Intek to Polmar and HR-2040 to DB-50M the intek.py file, but reading the radio does nothing and the logfile starts this: NOTE: driver re-registration enabled Registered Polmar_DB-50M = PolmarDB50MRadio 01/09/2019 5/7

6 Traceback (most recent call last): File "chirpui\mainapp.pyo", line 1357, in mh File "chirpui\mainapp.pyo", line 615, in do_download File "chirpui\mainapp.pyo", line 573, in _confirm_experimental File "chirpui\common.pyo", line 348, in show_warning File "chirpui\common.pyo", line 308, in _add_text TypeError: GtkTextBuffer.set_text() argument 1 must be string or read-only buffer, not None Since the communication is exactly the same until the radio responds with the model name and I have the correct model name, it should at least get that. But I don;t even get the experimental warning, which is the first call in the class PolmarDB50MRadio(chirp_common.CloneModeRadio, chirp_common.experimentalradio): """Polmar DB-50M""" VENDOR = "Polmar" MODEL = "DB-50M" BAUD_RATE = May try to mirror the OEM behavior later _ranges = [ (0x0000, 0x8000), def get_experimental_warning(cls): return "FOO" What is next? I am no Python programmer, so real debugging is not a viable option for me at the moment... #21-01/04/ :57 am - Robert Elsinga Dan Smith wrote: This sort of back-and-forth development discussion is much easier on the dev mailing list. Can you start a thread there and we'll pick up? Thanks! As Tom responded, I already posted there, but no reply since then. And, as any user, I'm impatient. ;) #22-01/04/ :59 am - Dan Smith Sorry, I missed that you had done that. I just replied there, please, lets take the discussion to the list. #23-01/04/ :07 am - Robert Elsinga Check, responded there. Tnx! #24-01/04/ :30 am - Robert Elsinga Dan was a great help and added Polmar DB-50M support in the nightly build. Thanks! 01/09/2019 6/7

7 #25-01/04/ :31 am - Dan Smith - Status changed from Feedback to Closed - Target version set to Fixed in r2169 Files debug.log 4.8 kb 01/02/2014 Robert Elsinga polmar-db50m.py 12.1 kb 01/02/2014 Robert Elsinga Portmon_read_5888UV_hex.log.txt 2.2 MB 01/04/2014 Dan Smith 01/09/2019 7/7

8

CHIRP - New Model # 2475

CHIRP - New Model # 2475 CHIRP - New Model # 2475 Status: Feedback Priority: Normal Author: Gary M Category: Created: 03/30/2015 Assignee: Jim Unroe Updated: 06/19/2015 Due date: Chirp Version: daily Equipment Loan Offered: No

More information

CHIRP - Bug # Description

CHIRP - Bug # Description CHIRP - Bug # 3539 Status: Closed Priority: Normal Author: Bob Belbeck Category: Created: 04/02/2016 Assignee: Pavel Milanes Updated: 06/16/2017 Due date: Chirp Version: daily Model affected: QYT KT8900

More information

CHIRP - Bug # Cannot upload to Yaesu FT-897D (US) Mac OS X Description

CHIRP - Bug # Cannot upload to Yaesu FT-897D (US) Mac OS X Description CHIRP - Bug # 1715 Status: Feedback Priority: Normal Author: Chuck Reti Category: Created: 06/23/2014 Assignee: Filippi Marco Updated: 08/05/2014 Due date: Chirp Version: 0.4.0 Model affected: FT897 Platform:

More information

CHIRP - Bug # Description. does not read data from the radio. History. #1-05/07/ :51 pm - Jim Unroe

CHIRP - Bug # Description. does not read data from the radio. History. #1-05/07/ :51 pm - Jim Unroe CHIRP - Bug # 1617 Status: Closed Priority: Normal Author: Александр Герман Category: Created: 05/07/2014 Assignee: Updated: 08/24/2016 Due date: Chirp Version: 0.4.0 Model affected: (All models) Platform:

More information

CHIRP - New Model # 5825

CHIRP - New Model # 5825 CHIRP - New Model # 5825 Status: In Progress Priority: Normal Author: Michel A Category: Created: 05/26/2018 Assignee: Pavel Milanes Updated: 06/05/2018 Due date: Chirp Version: daily Equipment Loan Offered:

More information

CHIRP - New Model # 217

CHIRP - New Model # 217 CHIRP - New Model # 217 Status: Closed Priority: Normal Author: James Beckner Category: Created: 06/13/2012 Assignee: Tom Hayward Updated: 10/30/2015 Due date: Chirp Version: daily Equipment Loan Offered:

More information

related to Bug # 3211: Kenwood TK-260G bug Closed 01/24/2016 related to Bug # 3213: Kenwood TK-270G Closed 01/24/2016

related to Bug # 3211: Kenwood TK-260G bug Closed 01/24/2016 related to Bug # 3213: Kenwood TK-270G Closed 01/24/2016 CHIRP - Bug # 3349 Status: Closed Priority: Normal Author: tom ryan Category: Created: 02/17/2016 Assignee: Pavel Milanes Updated: 03/17/2016 Due date: Chirp Version: daily Model affected: Kenwood Series

More information

Guides for Installing MS SQL Server and Creating Your First Database. Please see more guidelines on installing procedure on the class webpage

Guides for Installing MS SQL Server and Creating Your First Database. Please see more guidelines on installing procedure on the class webpage Guides for Installing MS SQL Server and Creating Your First Database Installing process Please see more guidelines on installing procedure on the class webpage 1. Make sure that you install a server with

More information

CHIRP - Bug # Description. When trying to download from radio, recieve "Incorrect Model Selected" error, Associated revisions.

CHIRP - Bug # Description. When trying to download from radio, recieve Incorrect Model Selected error, Associated revisions. CHIRP - Bug # 5625 Status: In Progress Priority: Normal Author: David Gordley Category: Created: 03/04/2018 Assignee: Unroe Updated: 08/22/2018 Due date: Chirp Version: daily Model affected: BTECH GMRS-V1

More information

Windows Xp Sp3 Unable To Use Windows Update Not Working

Windows Xp Sp3 Unable To Use Windows Update Not Working Windows Xp Sp3 Unable To Use Windows Update Not Working Use the troubleshooter in this article to resolve Windows Update errors "0x80248007". If you are running Windows Vista or Windows XP Service Pack

More information

UKNova s Getting Connectable Guide

UKNova s Getting Connectable Guide UKNova s Getting Connectable Guide Version 1.2 2010/03/22 1. WHAT IS "BEING CONNECTABLE" AND WHY DO I NEED IT? Being connectable means being able to give back to others it is the fundamental principle

More information

"Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug :14

Missing log in edit viewer, all media gone Posted by prodeuser - 17 Aug :14 "Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug 2013 06:14 So, this has happened a couple of times now. I am a new Lightworks user and have been doing some testing. As I increase

More information

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration Who am I? I m a python developer who has been working on OpenStack since 2011. I currently work for Aptira, who do OpenStack, SDN, and orchestration consulting. I m here today to help you learn from my

More information

https://github.com/gns3/gns3-registry/blob/master/schemas/appliance.json

https://github.com/gns3/gns3-registry/blob/master/schemas/appliance.json Mini How-To guide for using and modifying appliance templates. The appliance templates from the marketplace are a way to sort of make it a bit easier to import a Qemu virtual machine into GNS3. I've noticed

More information

Windows 7 Disable Changing Proxy Settings Registry

Windows 7 Disable Changing Proxy Settings Registry Windows 7 Disable Changing Proxy Settings Registry 127.0.0.1 Proxy Settings Keep Changing back? 127.0.0.1 Step2: Remove Proxy Server. I tried to disable it through LAN settings, but it shows up in Light

More information

CHIRP - Bug # 359. Unable to clone from FT8800 Description. MacOS , Python 2.5.4, CHIRP 0.2.3

CHIRP - Bug # 359. Unable to clone from FT8800 Description. MacOS , Python 2.5.4, CHIRP 0.2.3 CHIRP - Bug # 359 Status: Rejected Priority: Normal Author: Richard Perlman Category: Created: 12/05/2012 Assignee: Updated: 01/04/2013 Due date: Chirp Version: 0.2.3 Model affected: FT8800 Platform: MacOS

More information

Sorry The Operation Could Not Be Completed Error Code 0

Sorry The Operation Could Not Be Completed Error Code 0 Sorry The Operation Could Not Be Completed Error Code 0 I get an error message that says Sorry the operation could not be completed because an unexpected error occurred (Error code 0). Any ideas? I successfully.

More information

Manual Boot Camp Installer Windows 8 From Dvd Could Not Be Found

Manual Boot Camp Installer Windows 8 From Dvd Could Not Be Found Manual Boot Camp Installer Windows 8 From Dvd Could Not Be Found Boot Camp helps you install Windows OS on Intel-based Mac by If Create a Windows 7 install disk option is not available on your Mac, is

More information

Data Reduction Helpdesk First Responder Guidelines

Data Reduction Helpdesk First Responder Guidelines Data Reduction Helpdesk First Responder Guidelines Kathleen Labrie Science Users Support Department V1.1 12 March 2018 Revision History V1.0 16 January 2018 Kathleen Labrie V1.1 12 March 2018 Kathleen

More information

QGIS Application - Bug report #18988 QGIS Server rendering different from Desktop rendering

QGIS Application - Bug report #18988 QGIS Server rendering different from Desktop rendering QGIS Application - Bug report #18988 QGIS Server rendering different from Desktop rendering 04:13 PM - Status: Closed Priority: rmal Assignee: Paul Blottiere Category: QGIS Server Affected QGIS version:3.1(master)

More information

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications Hello World! Computer Programming for Kids and Other Beginners by Warren Sande and Carter Sande Chapter 1 Copyright 2009 Manning Publications brief contents Preface xiii Acknowledgments xix About this

More information

Sample Online Survey Report: Complex Software Application

Sample Online Survey Report: Complex Software Application Sample Online Survey Report: Complex Software Application www.sage-research.com shannon@sage-research.com 720-221-7003 Example Overview In this research project, the goal was to survey current users of

More information

Ping Error Code 5 Windows Xp

Ping Error Code 5 Windows Xp Ping Error Code 5 Windows Xp Quickly fix Ping Error Code 1231 Windows 7 and get your computer running to its peak Windows 8, Windows 7, Windows Vista (SP-2), Windows XP (SP-3). Ping Error Code 11010 Windows

More information

CHIRP - Bug # Baofeng 997-S - CHIRP - No Response Issue Description. I have reviewed redmine ticket 1957 and the rejected ticket 2471

CHIRP - Bug # Baofeng 997-S - CHIRP - No Response Issue Description. I have reviewed redmine ticket 1957 and the rejected ticket 2471 CHIRP - Bug # 3173 Status: Feedback Priority: Normal Author: John J Category: Created: 01/16/2016 Assignee: Updated: 01/20/2016 Due date: Chirp Version: daily Model affected: 997-S Platform: Linux Subject:

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Casio SK-1 MIDI Retrofit Guide User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Page 1 of 3 1 2 3

More information

Windows 7 Cannot Install Any Printer Driver Access Denied

Windows 7 Cannot Install Any Printer Driver Access Denied Windows 7 Cannot Install Any Printer Driver Access Denied 1 Cannot install HP printer drivers - "Access is denied" in Windows 7. I have a newly purchased HP Deskjet 3050A e-all-in-one Printer series -

More information

QGIS Application - Bug report #8942 R6034 runtime error

QGIS Application - Bug report #8942 R6034 runtime error QGIS Application - Bug report #8942 R6034 runtime error 2013-10-23 04:42 PM - Leszek Pawlowicz Status: Reopened Priority: rmal Assignee: Category: Build/Install Affected QGIS version:2.18.11 Regression?:

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Casio SK-5 MIDI Retrofit Guide User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Page 1 of 2 1 2 >

More information

============================================================================

============================================================================ VMware 7 Eve stutters in windowed mode Posted by innriwins - 2014/02/10 10:28 Hi, So i started running eve on VMware 7 and i got a problem with very frequent stutters. It goes away when i change to "intervale

More information

Manually Uninstall Service Pack 1 Win7 7 X64

Manually Uninstall Service Pack 1 Win7 7 X64 Manually Uninstall Service Pack 1 Win7 7 X64 Failed Dec 11, 2014. Win 7 x64 Home Premium (and x86 VirtualBox VM) An update is available to remove KB 3004394 from Windows 7 SP1-based and Windows Server

More information

Chamilo LMS - Bug #6044 AICC import - "The package you are trying to upload has an unknown format."

Chamilo LMS - Bug #6044 AICC import - The package you are trying to upload has an unknown format. Chamilo LMS - Bug #6044 AICC import - "The package you are trying to upload has an unknown format." 19/03/2013 02:13 - Terence van Jaarsveldt Status: Bug resolved Start date: 19/03/2013 Priority: Normal

More information

Default centurylink modem c1100z

Default centurylink modem c1100z Default centurylink modem c1100z Enter the PPPoE username and password obtained from the router / customer service. With the C1000A set to transparent bridge mode, has anyone tried to use more than one

More information

> Community > Search. 1) Did they act this way out of the box with the baseline Dell install BEFORE you installed anything?

> Community > Search. 1) Did they act this way out of the box with the baseline Dell install BEFORE you installed anything? Shop Support Participate Dell.com Print Share > Community > Search Dell Community All of Dell E4300 locking up Community Home Forums Tech Support Topics Laptop General Hardware Common Links View all users

More information

Azon Master Class. By Ryan Stevenson Guidebook #5 WordPress Usage

Azon Master Class. By Ryan Stevenson   Guidebook #5 WordPress Usage Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #5 WordPress Usage Table of Contents 1. Widget Setup & Usage 2. WordPress Menu System 3. Categories, Posts & Tags 4. WordPress

More information

============================================================================

============================================================================ Wired Ademco/Honeywell devices Posted by hamw - 2010/10/14 14:10 I have several wired IR motion detectors and glass breaks. Is there some way that the AD2USB can register these devices so that I can use

More information

Hp Recovery Disc Instructions Windows 7 32 Bit

Hp Recovery Disc Instructions Windows 7 32 Bit Hp Recovery Disc Instructions Windows 7 32 Bit Version Desktop Gaming (Reply Only), Desktop Recovery (Reply Only), Desktop CD & DVD (Reply Can i use same Win 7 64 bit license key into 32-bit Windows. rely

More information

It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek

It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek Seite 1 von 5 Issue Date: FoxTalk July 2000 It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek This month, Paul Maskens and Andy Kramek discuss the problems of validating data entry.

More information

HELPLINE. Dilwyn Jones

HELPLINE. Dilwyn Jones HELPLINE Dilwyn Jones Remember that you can send me your Helpline queries by email to helpline@quanta.org.uk, or by letter to the address inside the front cover. While we do our best to help, we obviously

More information

============================================================================

============================================================================ [Solved] Title effects in v11 free? Posted by Driftwood Productions - 08 Jul 2012 15:24 I'm running LWKS v11 free edition, and am trying to figure out how to add title effects to my project, however, I

More information

How To Reset Your Computer To Factory Settings Windows Vista Without Cd

How To Reset Your Computer To Factory Settings Windows Vista Without Cd How To Reset Your Computer To Factory Settings Windows Vista Without Cd This method is the easiest way to restore your computer to factory condition. Video (English Only) - How to reinstall Windows without

More information

ARIN Online User Survey Results

ARIN Online User Survey Results ARIN Online User Survey Results ARIN conducted a survey on ARIN Online usage this fall, and solicited direct feedback from the community at the ARIN Online User Forum at ARIN XXVIII in Philadelphia, PA.

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

Now. I know the meaning of each one, but how do you have multiples of all those running at the same time?

Now. I know the meaning of each one, but how do you have multiples of all those running at the same time? Need Help running multiple miners. Posted by xcorps - 2011/01/25 20:17 Someone help me understand all of this... I'm a little confused with the terms.. accounts, characters, clients, and bots. Now. I know

More information

VOX TURBO QUESTIONS AND ANSWER

VOX TURBO QUESTIONS AND ANSWER VOX TURBO QUESTIONS AND ANSWER While the dropdown rate is a must-have feature, I have also seen it become the source of some new problems. The most significant of these problems are punctuation and numbers

More information

During d/l from radio the error " Value contains invalid character X" in CHIRP daily No debug file found in chirp folder.

During d/l from radio the error  Value contains invalid character X in CHIRP daily No debug file found in chirp folder. CHIRP - Bug # 202 Status: Closed Priority: Normal Author: David Bowman Category: Created: 06/07/2012 Assignee: Dan Smith Updated: 06/08/2012 Due date: Chirp Version: daily Model affected: Baofeng UV-5R

More information

Remove Default Program Association Windows 7 Regedit

Remove Default Program Association Windows 7 Regedit Remove Default Program Association Windows 7 Regedit All the guides I've found seem to only work in Windows 7 or below, and Control Panel _ Programs _ Default Programs _ Set Associations doesn't have a

More information

Windows 7 Will Not Installing Update Shutdown Without

Windows 7 Will Not Installing Update Shutdown Without Windows 7 Will Not Installing Update Shutdown Without When I'm in a hurry to shut down my PC and I only see "Shut down installing updates" and You using windows 8 or 7 (assuming 8 because of the tag you

More information

Windows 7 Will Not Load On My Computer Says Its

Windows 7 Will Not Load On My Computer Says Its Windows 7 Will Not Load On My Computer Says Its Hey Guys i been working on a customers computer for a couple days now, did a virus that although all the settings seemed right and it says I was connected

More information

Understandable manual? Posted by Max Besser - 02 Feb :10

Understandable manual? Posted by Max Besser - 02 Feb :10 Understandable manual? Posted by Besser - 02 Feb 2011 17:10 www.lightworksbeta.com/index.php?option=com_kunena&func=view&catid=6&id=5100& amp;limit=6&limitstart=6&itemid=202#5167 Forum Admin wrote: @ Besser

More information

Getting Started. Excerpted from Hello World! Computer Programming for Kids and Other Beginners

Getting Started. Excerpted from Hello World! Computer Programming for Kids and Other Beginners Getting Started Excerpted from Hello World! Computer Programming for Kids and Other Beginners EARLY ACCESS EDITION Warren D. Sande and Carter Sande MEAP Release: May 2008 Softbound print: November 2008

More information

Controller from an updated msi found here:

Controller from an updated msi found here: Server not starting on phone Posted by danwilkerson - 2014/07/17 13:34 Like several others, I am having issues starting the server on my phone. The windows app shows to be started, but the app on my phone

More information

Post Experiment Interview Questions

Post Experiment Interview Questions Post Experiment Interview Questions Questions about the Maximum Problem 1. What is this problem statement asking? 2. What is meant by positive integers? 3. What does it mean by the user entering valid

More information

If Statements, For Loops, Functions

If Statements, For Loops, Functions Fundamentals of Programming If Statements, For Loops, Functions Table of Contents Hello World Types of Variables Integers and Floats String Boolean Relational Operators Lists Conditionals If and Else Statements

More information

Xbox 360 Controller Manual Pc Driver Windows 8

Xbox 360 Controller Manual Pc Driver Windows 8 Xbox 360 Controller Manual Pc Driver Windows 8 If you have any of these Operating Systems: Windows 8.1, Windows 8, Windows 7, please follow the directions below. Download PC drivers for your Xbox One Wireless

More information

Manually Java 7 Update Bit Windows 7 Minecraft

Manually Java 7 Update Bit Windows 7 Minecraft Manually Java 7 Update 25 64 Bit Windows 7 Minecraft Java software allows you to run applications called "applets" that are written in the Java programming screen_shot_2015-06-25_at_9.36.59_am Download

More information

Manually Windows Update Vista Not Work In

Manually Windows Update Vista Not Work In Manually Windows Update Vista Not Work In Safe Mode Doesn't To boot Windows Vista in Safe Mode, follow these steps: If Windows Updates aren't installed automatically in your Windows Vista system, you need

More information

Setup Error Code 43 Nvidia Windows 7 Bluetooth

Setup Error Code 43 Nvidia Windows 7 Bluetooth Setup Error Code 43 Nvidia Windows 7 Bluetooth Windows 7 code 43 error fixing trick How to fix errors on windows 7 64 bit and 32 bit please. I have an Nvidia GTX 460 and have had it for four years without

More information

QGIS Application - Bug report #418 QGIS fails to read undefined projection from user datum in shape.prj file

QGIS Application - Bug report #418 QGIS fails to read undefined projection from user datum in shape.prj file QGIS Application - Bug report #418 QGIS fails to read undefined projection from user datum in shape.prj file 2006-12-03 02:38 AM - neteler-itc-it - Status: Closed Priority: Low Assignee: Magnus Homann

More information

Marketing Alliance Pre Built Funnel SWIPES..

Marketing Alliance Pre Built Funnel SWIPES.. Marketing Alliance Pre Built Funnel SWIPES.. Here s the link to access all of the swipes in a basic Google Doc.. https://docs.google.com/document/d/1p9unjsedesq2yeq6k8klvihg5cjezesuk0b7n_fr3h4/edit?us

More information

Advanced topics, part 2

Advanced topics, part 2 CS 1 Introduction to Computer Programming Lecture 24: December 5, 2012 Advanced topics, part 2 Last time Advanced topics, lecture 1 recursion first-class functions lambda expressions higher-order functions

More information

Code Blocks Cannot Find Compiler Executable Windows 7

Code Blocks Cannot Find Compiler Executable Windows 7 Code Blocks Cannot Find Compiler Executable Windows 7 Windows. Once you've installed a new compiler, be sure to read the I couldn't find a way to force CB to use a unix-link shell, but was able to find

More information

QGIS Application - Bug report #17043 Browser keeps scanning directory with gpkg file

QGIS Application - Bug report #17043 Browser keeps scanning directory with gpkg file QGIS Application - Bug report #17043 Browser keeps scanning directory with gpkg file 2017-08-21 12:50 PM - Richard Duivenvoorde Status: Closed Priority: High Assignee: Alessandro Pasotti Category: Browser

More information

MITOCW watch?v=w_-sx4vr53m

MITOCW watch?v=w_-sx4vr53m MITOCW watch?v=w_-sx4vr53m The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To

More information

How To Manually Update Android Apps On Kindle Fire Hd Without Rooting

How To Manually Update Android Apps On Kindle Fire Hd Without Rooting How To Manually Update Android Apps On Kindle Fire Hd Without Rooting Just got a New Kindle Fire HD (The kid won it) It says 4th generation 7 inch Fire HD/ In of the HTC One M9 is receiving an over-the-air

More information

Trying To Uninstall Norton 360 Wont Let Me Connect

Trying To Uninstall Norton 360 Wont Let Me Connect Trying To Uninstall Norton 360 Wont Let Me Connect Wasn't sure if I could just delete all files to do with Norton 360/symantec from the C: when trying to open Norton or trying to remove it using add/remove

More information

How To Add Songs To Ipod Without Syncing >>>CLICK HERE<<<

How To Add Songs To Ipod Without Syncing >>>CLICK HERE<<< How To Add Songs To Ipod Without Syncing Whole Library Create a playlist, adding all the songs you want to put onto your ipod, then under the How to add music from ipod to itunes without clearing itunes

More information

Upgrading And Fixing Computers Do-it-Yourself For Dummies PDF

Upgrading And Fixing Computers Do-it-Yourself For Dummies PDF Upgrading And Fixing Computers Do-it-Yourself For Dummies PDF An illustrated, step-by-step guide to repairs and upgrades Whether you want to prepare your computer for Windows 7, avoid investing in a new

More information

Manually Repair Windows 7 Update Service Not

Manually Repair Windows 7 Update Service Not Manually Repair Windows 7 Update Service Not Running Message Error message 1 Could not start the Windows Installer service on Local Computer. Fix the problem manually rights, use one of the following methods,

More information

BEGINNER PHP Table of Contents

BEGINNER PHP Table of Contents Table of Contents 4 5 6 7 8 9 0 Introduction Getting Setup Your first PHP webpage Working with text Talking to the user Comparison & If statements If & Else Cleaning up the game Remembering values Finishing

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Roland Juno-6 User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Thread Tools Search this Thread Display

More information

CHIPS Newsletter Vol 16 - Yahoo! Mail. Official Newsletter of

CHIPS Newsletter Vol 16 - Yahoo! Mail. Official Newsletter of CHIPS Newsletter Vol 16 From: "chips@elproducts.net" To: "Chuck Hellebuyck" Sunday, June 12, 2011 9:45 AM CHIPs Vol 16 / June 2011 Official Newsletter of Chuck

More information

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02 Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May 2018 21:02 Using trial version. Im unable to import anything. Ive tried converting to mp4/aac/mp3/mpg2(ive tried many more

More information

MITOCW watch?v=9h6muyzjms0

MITOCW watch?v=9h6muyzjms0 MITOCW watch?v=9h6muyzjms0 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Command Line Windows 7

Command Line Windows 7 How To Force Uninstall Internet Explorer 10 Command Line Windows 7 Jul 10, 2014. Since, you are unable to uninstall Internet Explorer 10 from View installed updates, let us try forcefully removing it using

More information

QGIS Application - Bug report #295 rendering vectors got tremendously slow

QGIS Application - Bug report #295 rendering vectors got tremendously slow QGIS Application - Bug report #295 rendering vectors got tremendously slow 09/22/2006 02:16 PM - Redmine Admin Status: Closed Priority: Low Assignee: Martin Dobias Category: Map Canvas Affected QGIS version:

More information

Best practices to achieve optimal memory allocation and remote desktop user experience

Best practices to achieve optimal memory allocation and remote desktop user experience E-Guide Best practices to achieve optimal memory allocation and remote desktop user experience Many virtual machines don t fully utilize their available RAM, just like they don t fully utilize their available

More information

A simple Windows remote control program for Rotel RCX-1500, RDG-1520 and RT-09 devices. v3.3

A simple Windows remote control program for Rotel RCX-1500, RDG-1520 and RT-09 devices. v3.3 A simple Windows remote control program for Rotel RCX-1500, RDG-1520 and RT-09 devices. v3.3 History & Credits. This simple control program was born after inspiration from Simonb68 (htguide member) who

More information

Windows Media Player Manual Update 12 For 7 32 Bit

Windows Media Player Manual Update 12 For 7 32 Bit Windows Media Player Manual Update 12 For 7 32 Bit Media Optimizer Adobe Flash Player 18 (Win and Mac) and 11.2 (Linux) - 32 bit and 64 bit builds of Flash Player for Windows 8 are a part of the Windows

More information

Manual Boot Camp Install From Usb Windows 7 Greyed Out Bootcamp

Manual Boot Camp Install From Usb Windows 7 Greyed Out Bootcamp Manual Boot Camp Install From Usb Windows 7 Greyed Out Bootcamp Boot Camp helps you install Windows OS on Intel-based Mac by downloading the (Create a Windows 7 install disk) to create a bootable Windows

More information

Manual Windows Update Xp Not Working 2012 R2 Windows7

Manual Windows Update Xp Not Working 2012 R2 Windows7 Manual Windows Update Xp Not Working 2012 R2 Windows7 Update for Windows 8, Windows 8.1, Windows Server 2012, and Windows Server Vista, Windows 7, Windows Server 2008, and Windows Server 2008 R2. The problems

More information

How To Change My Wordpress Database

How To Change My Wordpress Database How To Change My Wordpress Database Password On Instagram Account Built by one of the world's largest Instagram browsers INK361, this comprehensive widget that can showcase your Instagram account in the

More information

Manual Do Ipod Shuffle 2nd Gen Take To Charge My

Manual Do Ipod Shuffle 2nd Gen Take To Charge My Manual Do Ipod Shuffle 2nd Gen Take To Charge My You can check the battery status of ipod shuffle (4th generation) when it's connected to your computer or disconnected. The status light tells you approximately

More information

============================================================================

============================================================================ Linux, Cinnamon: cannot create panel icon Posted by JN_Mint - 2019/01/05 21:28 In Cinnamon (on Mint 19.3), with 'show tray icon' enabled in Rainlendar, there is no icon in any panel on my system and Cinnamon

More information

Flash Drive Won T Mount Windows 7 Won T Recognize

Flash Drive Won T Mount Windows 7 Won T Recognize Flash Drive Won T Mount Windows 7 Won T Recognize So after inserting the flash drive, if I go to Start _ Computer, I won't see anything there for Windows 7 Professional doesn't mount my usb flash drive

More information

Windows 7 Will Not Update Says Service Not Running

Windows 7 Will Not Update Says Service Not Running Windows 7 Will Not Update Says Service Not Running Dec 1, 2014. Found my answer here:win7 - Windows Update Error "Service is not running" which will probably not work, and could potentially harm other

More information

P1_L3 Operating Systems Security Page 1

P1_L3 Operating Systems Security Page 1 P1_L3 Operating Systems Security Page 1 that is done by the operating system. systems. The operating system plays a really critical role in protecting resources in a computer system. Resources such as

More information

What will be the ideal workflow for Blackmagic+Lightworks+DaVinci Resolve?

What will be the ideal workflow for Blackmagic+Lightworks+DaVinci Resolve? Blackmagic Cinema Camera with Lightworks Posted by stajan - 04 Jun 2012 06:20 I am planning to shoot an Indian language Movie with Blackmagic cinema camera & Lightworks for Editing.I read an article that

More information

QGIS Application - Bug report #5475 Problem to insert splitted geometries in postgis

QGIS Application - Bug report #5475 Problem to insert splitted geometries in postgis QGIS Application - Bug report #5475 Problem to insert splitted geometries in postgis 2012-04-23 01:20 PM - Luca Lanteri Status: Priority: Severe/Regression Assignee: Marco Hugentobler Category: Affected

More information

5 Templates You Can Use To Get More Product Reviews

5  Templates You Can Use To Get More Product Reviews 5 Email Templates You Can Use To Get More Product Reviews Brought to you by: Visit Our Website: https://wholesalesuiteplugin.com Email Template #1 Hi {first_name} Thanks for your recent order {days_ago}

More information

Shell Script Not Running Via Cron Runs Fine Manually

Shell Script Not Running Via Cron Runs Fine Manually Shell Script Not Running Via Cron Runs Fine Manually to run every 15 minutes. I can execute the script manually but Crontab will not launch it successfully. shell script not running via crontab, runs fine

More information

C13: Current Threats and Countermeasures 2010 Lou Spahn, Accuvant, Inc.

C13: Current Threats and Countermeasures 2010 Lou Spahn, Accuvant, Inc. C13: Current Threats and Countermeasures 2010 Lou Spahn, Accuvant, Inc. Threats and Countermeasures Human Factor and Physical Security Agenda o Social Engineering Phone Based Email/Web (Phishing) Physical

More information

ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile

ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile Status: Closed Priority: Normal Author: Enno Grà per Category: Created: 2011-07-17 Assignee: Updated: 2012-06-23 Due date:

More information

Manual Install Ubuntu Alongside Windows 7 Using Usb

Manual Install Ubuntu Alongside Windows 7 Using Usb Manual Install Ubuntu 12.04 Alongside Windows 7 Using Usb First off, I had to create a UEFI 3.0 USB stick for the WIN7 install because it would not recognize the SSD. recognize the WIN7 OS, and I would

More information

Atrium Webinar- What's new in ADDM Version 10

Atrium Webinar- What's new in ADDM Version 10 Atrium Webinar- What's new in ADDM Version 10 This document provides question and answers discussed during following webinar session: Atrium Webinar- What's new in ADDM Version 10 on May 8th, 2014 Q: Hi,

More information

Guides for Installing MS SQL Server and Creating Your First Database. Please see more guidelines on installing procedure on the class webpage

Guides for Installing MS SQL Server and Creating Your First Database. Please see more guidelines on installing procedure on the class webpage Guides for Installing MS SQL Server and Creating Your First Database Installing process Please see more guidelines on installing procedure on the class webpage 1. Make sure that you install a server with

More information

This is a list of questions and answers about Unicode in Perl, intended to be read after perlunitut.

This is a list of questions and answers about Unicode in Perl, intended to be read after perlunitut. NAME Q and A perlunifaq - Perl Unicode FAQ This is a list of questions and answers about Unicode in Perl, intended to be read after perlunitut. perlunitut isn't really a Unicode tutorial, is it? No, and

More information

Manually Java 7 Update Bit Windows 7

Manually Java 7 Update Bit Windows 7 Manually Java 7 Update 25 64 Bit Windows 7 Oracle strongly recommends that all Java SE 7 users upgrade to one of these releases. See the 7u25 release notes for more information. the Java Accessibility

More information

Manually Install Windows Updates Xp On 7 Laptop

Manually Install Windows Updates Xp On 7 Laptop Manually Install Windows Updates Xp On 7 Laptop Just selecting manually install updates and installing updates when you In Windows XP and Windows Vista, your computer might automatically install updates

More information

Blog post on updates yesterday and today:

Blog post on updates yesterday and today: Beta Bug Prioritization meeting IRC Transcript 12 November 2013 Meeting was held in IRC, on the #devmo channel. Meetings are weekly, every Tuesday at 17:00 UTC (10am PST) ok, everyone, we're ready to start

More information

MITOCW watch?v=flgjisf3l78

MITOCW watch?v=flgjisf3l78 MITOCW watch?v=flgjisf3l78 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To

More information