Jump to content
AVIC411.com

avic_weo

Members
  • Content Count

    48
  • Joined

  • Last visited

Everything posted by avic_weo

  1. nope, they just turn green. I don't know whether you noticed, but it is not the _current_ sign that changes color but the _next_ sign: the sign that is displayed while on the intersection Weo
  2. Well, yes. I used your installer, although I left out the US map update (am afraid this is not much use in Belgium) Anyway, I promised you a video, so here it is. Only thing is: I shot it with my cell phone, and I managed to hold it upside down :$. Mind you: this is a freeway intersection, so I am using both of my hands a lot of the time Weo VIDEO0005.wmv
  3. Sorry, don't have the AVICEdit software. But if you just want to sort your contacts, try the following: Generate a sorted CSV file with SQLite: enter following SQL (under the tab "execute SQL"), click on "Actions" and save as CSV SELECT * FROM phonebook order by chShowName Delete all records from the phonebook (Table->Empty Table) import the CSV you created using the Import Wizard I know, it is a bit of a pain, but like I said: the AVIC does not do any sorting, it just takes all records sequentially hth, Weo
  4. Which file do you mean? I can still access the Outlook macro I was talking about? Weo
  5. Will try to make a video of it, although it will only show the change of colour, nothing else seem to change. I know you don't live in Belgium, but one spot I am certain of is when I switch from the A12 to the R0 around Brussels (Belgium). Although I have seen it on lots of other intersections too, this is one I take almost every day. This junction around Brussels is a clover-leaf interchange (a 4-way interchange in which inner loops are provided for left turn movements and direct outer connections for right turn movements). As soon as I get onto the interchange, technically I am no longer on
  6. Hi Diaftia, have been on your 2.3 for ages, and now you being back and all is just great. I went thorugh the motions with this 3.1 and 3.2.1, and there is something that is, well bizarre I very much like your idea of having one version for us and europe, where you can switch between roadsigns. But there already was a quirk in 2.3 (version edited by Merten3000) which still is there in 3.2.1: when selecting to have the Euro freeway signs, and the blue background, this only works on the freeways. On the intersections / ramps / changers or whatever you want to call them, they always revert
  7. Without the avicedit software it is still possible to roll your own with a minimum of hassle. You could use the Outlook based method, or you can use FireFox with the SQLite Manager addon. Here is a way to start from scratch: [*:414e90zo]open the addon, and create a new database [*:414e90zo]go to the "execute SQL" panel, and enter following SQL CREATE TABLE phonebook (ID INTEGER PRIMARY KEY, chShowName TEXT, chPhoneCode TEXT, dwType INTEGER ); [*:414e90zo]next you enter the relevant information in the newly created table via the "browse & search" tab.
  8. OK, I think the easiest thing to do is to monitor how the phone number appears on your AVIC when you recieve a call. The format in which you store the phonenumbers (and the SQL) has to match just that. The thing is when you try to call '052123456', this will work. But when you recieve the call, the number that is presented to the AVIC, will be '+3252123456' (the 'national' 0 will be replaced by the international code for the country of the caller) Now if your phonebook entry does not match this exactly, it will not work. HTH, Weo
  9. Correct: the numbers need to be stripped of all non-numeric stuff. There is a thread in which this is explained. Outlook tries to store the phone numbers in a country-related style, e.g. for Belgium +32 (52) 19 12 14. This won't work. What I always do is to set my Outlook country setting to Generic. Then it will let you enter the phone number in the format you want. Some work, but it pays of.. It is of course possible to have the Macro do the work for you. In the last paragraph, you could write: Private Sub PrintSQLElement(Name, Phone, qualifier) Phone = Replace(Phone, " ", "") '
  10. It is a standard SQLite file, so pretty easy to figure out... and yu could have a look at http://avic411.com/forum/viewtopic.php?f=34&t=25308&hilit=phonebook weo
  11. I do have another problem, with the Europe implementation of this mod. In Belgium, our highway signs have a blue background, as opposed to green in the US. Merten has changed this, but apparently on highway intersections this reverts back to white on green. Anybody has a clue where this ambiguity comes from? Weo
  12. Same here, but not to worry: I also had this a few months ago, and again now. Probably has to do with discrepancy between Europe and US DST settings. Annoying, but harmless. Weo
  13. jezzik, cool, I must have been blind to miss this one. Thanks for pointing out. Weo
  14. Hi Klex, no, this will not work. This is an update for version 3, not an upgrade from Version 2 You could try the non-official upgrade as described in this forum cheers, Weo
  15. Bud, can't say I can confirm, but did some interesting find myself: this morning, voice guidance was mute only (happens often when it was cold outside). The only solution to remedy this is to reboot. Unfortunately, rebooting means I have to turn the ignition off. But after I did this, the trip computer worked! Now I was wondering: would it be possible to issue a soft-reset from within the application? Perhaps another shortcut on the menu, but I do not know which command to use to issue this reboot command. In the Testmenu there is this reboot button, but that one calls Restart.exe
  16. Marlysa, Your approach is not bad or wrong. After all, nobody said you have to do it one way or another. But what I mean is that there could be a problem with class 0. The way I wrote the macro the first thing it does is check if there is more than 1 telephone number for the same contact. If there isn't, the variable numQual becomes 0. (lines 69 through 73 on the attachment in the first post). This means that ANY class 1, 2 or 3 will be forced to 0. So I can only use 3 classes effectively. What you are trying to achieve, is to use 4 classes, with 0 being Other Phone number. I do no
  17. Marlysa, Had a look at your french post (oui, je parle francais aussi), but I have to make the same comment as I did to Magna on http://avic411.com/forum/posting.php?mode=reply&f=34&t=25308#pr183319: there is a problem on line 132: Call PrintSQLElement(myItem.FullName, myItem.OtherTelephoneNumber, numQual * 0) Other than that: I am glad this macro is appreciated Weo
  18. I couldn't tell: I don't have +400 numbers in my phone It wll let you make a selection of the numbers though, by using the filter category hth, Weo
  19. Jörg, was googling around, and came accross this one: http://www.batchgeocode.com/ somewhere on this web page they say: this what you looking for? Weo
  20. Jörg, was already afraid about that: the kml file lists the coordinates where the contact is located. It is no problem to generate the XML file, but then you will have to input the coordinates in some Outlook custom fields. That is the only solution I see for now. Of course if you could compile this list from say Google Maps, you would not have to spend weeks. Sorry about that Weo
  21. could do... where can I find the layout of a kml file? weo
  22. This is where I got the info from: I will make sure the original file works that way. (Might be I am a little lysdectic???) I did try out all combo's, and did not have any problem with them, but I do not really understand what you mean by Home+Mobile should result in Home+Mobile (that's what it does on my computer anyway ) Weo
  23. Hi Magna, the character conversion is nice, but there might be a problem with the following lines: Call PrintSQLElement(myItem.FullName, myItem.HomeTelephoneNumber, numQual * 1) Call PrintSQLElement(myItem.FullName, myItem.MobileTelephoneNumber, numQual * 3) Call PrintSQLElement(myItem.FullName, myItem.BusinessTelephoneNumber, numQual * 2) Call PrintSQLElement(myItem.FullName, myItem.OtherTelephoneNumber, numQual * 0) The AVIC only supports 3 dwTypes: 1, 2 and 3. Type 0 is used for no type. What I do with numQual is determine whether there is more than 1 phon
  24. you could of course use this customised CopyTool.mscr. It will give you 3 options: 1. Copy MiTACAP folder to Flash Disk --> the way the testmode v1 worked 2. Process '\Storage Card\Stage\ProcList.txt' --> read a text file containing Copy and Rename statements 3. Backup Flash Disk to '\Storage Card\BackupFlash' --> kinda obvious, no? After a 10 second timeout, it drops back to windows. just thought I'd mention it Weo ps: also included a proclist.txt to be used as a template CopyTool.mscr.txt ProcList.txt
×
×
  • Create New...