96 pagesV  < 1 2 3 4 5 6 > »  
 
REPLY
> Navigators and 3G modems | Drivers, managers, connectors
Vitt
Message#1
10.10.10, 17:59
Decent
*********
[online]

Group: Moderators
Messages 6733
Check in: 29.12.06
Lenovo P2 3/32

Reputation:-  1151  +

Navigators and 3G modems
Drivers, managers, connectors

Attached Image

Drivers
Allow to connect to the device USB-modem. To work, you need a regular or soldered USB HOST (host), as well as support in the firmware. For more information, refer to the topic on your device.
- standard universal driver 232usb -Phantom Navigation Box (Post # 2370152)
- interface driver for Huawei, ZTE and other modems fromIgor__ - Phantom Navigation Box (Post # 4170265)
- interface driver for Huawei, ZTE and other modems fromholod - Phantom Navigation Box (Post # 5470208) USB_RESET.exe cannot be used with this driver!
- interface driver fromGoodwin - Navigators and 3G modems (Post # 7015484) (NEW!)
Managers
Designed to control the modem - getting balance, monitoring network performance, sending SMS, working with USSD requests and so on.
- universal manager fromholod - Navigators and 3G modems (Post # 5696582) To work, you need a driver with an interface port.
Connectors
Designed for automatic installation and maintenance of Internet connection.
- universal connector fromvitt - Navigators and 3G modems (Post # 4850652)
- connector for Mio c520 frommpal - Empowering Mitac Mio c320 / c520 / c720 (Post # 3726328)
- connector for Explay fromesnet - Explay PN-375/445/905/910/915/920/925/930/935/980 (Post # 5181504)
- universal connector fromzlayer - Navigators and 3G modems (Post # 5451856)
How to sayTHANK
5. The reward system.
5.1. If a forum member gave you good advice that helped you solve your problem, do not post a message with the text “Thank you! You are super!!!". On our forum, it is customary to express gratitude by raising the reputation of a particular participant.
5.2. The reputation of other participants can be influenced by any user who has collected 15 useful posts. If you do not have 15 helpful posts, ask the moderator to raise the reputation of the person who helped you through the "Complaint" button.
5.3. Implicit or explicit extortion of raising a reputation is forbidden, for example: “I helped you, and you didn’t even say thanks!” Or “You could have raised your reputation!” If you deserve a raise of reputation, you will be raised without reminders.


Post has been editedVitt - 31.03.11, 08:38
mpal
Message#22
13.10.10, 09:46
Self director
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 8384
Check in: 12.10.08

Reputation:-  2643  +

aleksross
As an example of a subroutine in order to only read, pull out, memorize and organize some parameters from XML
Sub XMLRead (xmlFile, tag, attribute)
xmlContent = ReadFile (xmlFile)
If (length (xmlContent) = 0)
Return ("exit")
Exitsub
Endif

#Parse the tag string into an array
i = 1
ForEach tagTemp in split (tag, ">", TRUE)
If (charAt (tagTemp, 1) eq "<")
tagTemp = SubStr (tagTemp, 2)
Endif
If (tagTemp ne "")
tagArray [i] = tagTemp
i + = 1
Endif
EndforEach

#Find the tag's location in the file. If it doesn't exist, search for it in lowercase.
ForEach tag in array (tagArray)
tempLocation = Find (xmlContent, "<" & tag, tagLocation)
If (tempLocation = 0)
tagLocation = Find (xmlContent, "<" & ToLower (tag), tagLocation)
Else
tagLocation = tempLocation
Endif

#If an attribute was specified, make sure that it was found; otherwise, continue searching.
If (attribute ne "" AND tag ne "root")
endTagLocation = Find (xmlContent, ">", tagLocation + 1)
tagContent = SubStr (xmlContent, tagLocation, endTagLocation - tagLocation)
attributeLocation = Find (tagContent, attribute & "=" "")
While (attributeLocation = 0 AND endTagLocation> = length (xmlContent) - 5)
tagLocation = Find (xmlContent, "<" & tag, endTagLocation)
If (tagLocation = 0)
tagLocation = Find (xmlContent, "<" & ToLower (tag), endTagLocation)
Endif
endTagLocation = Find (xmlContent, ">", tagLocation + 1)
tagContent = SubStr (xmlContent, tagLocation, endTagLocation - tagLocation)
attributeLocation = Find (tagContent, attribute & "=" "")
Endwhile
Endif
EndForEach

Clear (tagArray)

#If an attribute was not specificed, set the file pointer to the tag ...
If (attribute eq "")
valueLocation = Find (xmlContent, ">", tagLocation) + 1
valueLocationEnd = Find (xmlContent, "<", valueLocation)
value = SubStr (xmlContent, valueLocation, valueLocationEnd - valueLocation)
# ... else set the file pointer to the attribute
Else
#Find the attribute's location in the file. If it doesn't exist, search for it in lowercase.
tempValueLocation = Find (xmlContent, attribute & "=" "", tagLocation)
If (tempValueLocation = 0)
valueLocation = Find (xmlContent, ToLower (attribute) & "=" "", tagLocation)
Else
valueLocation = tempValueLocation
Endif

#Find and read the value from the attribute
If (valueLocation <> 0)
valueLocation + = length (attribute) + 2
Endif
valueLocationEnd = Find (xmlContent, "" "", valueLocation)
If (valueLocationEnd = valueLocation)
value = ""
Else
value = SubStr (xmlContent, valueLocation, valueLocationEnd - valueLocation)
Endif
Endif
Return (value)
Endsub

This is a quote from one Poketovsky scriptOspreyits author is on a morta "ate one dog": D
holod @ 10/13/2010 09:02*
in other words, it will be necessary to invent an XML parser and write it on the very same page


Post has been editedmpal - 13.10.10, 11:45


--------------------
aleksross
Message#23
13.10.10, 15:40
Guru
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 2354
Check in: 25.03.08

Reputation:-  217  +

holod,
mpal
Well so I about it also speak
Parsing will save the mort: rolleyes:

Posted on 10/13/2010, 15:40:

holod @ 10/13/2010 09:02*
Not a grateful lesson: yes2:

But effective: beee:


--------------------
From the point of view of banal erudition, not every individual is capable of creating a tendency of paradoxical relations !!!

"Public opinion is a false opinion, as most people are idiots" (c) Edgar Allan Poe
holod
Message#24
13.10.10, 20:58
Guru
*********
[offline]

Group: Developers
Messages 5564
Check in: 01.11.07
Samsung Galaxy S9 Exynos

Reputation:-  970  +

Aleksross @ 10/13/2010, 6:40 PM*
But effective

It is good to parse a file with a previously known structure, and if the structure slightly changes? Or change very much? So Caesar Caesar, locksmith, locksmith, I'm talking about Mort and XML :)


--------------------
mpal
Message#25
13.10.10, 21:26
Self director
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 8384
Check in: 12.10.08

Reputation:-  2643  +

holod @ 10/13/2010, 21:58*
It is good to parse a file with a previously known structure, and if the structure slightly changes? Or change very much?

Correctly formulated, dear comrade. : yes2:


--------------------
"I have been illiterate since childhood"
mpal
Build and not only for the Mio c520
moca
Message#26
14.10.10, 05:56
Old resident
*******
[offline]

Group: Friendssavagemessiahzine.com
Messages 1041
Check in: 19.10.07
Google Nexus 6

Reputation:-  57  +

Mlyn ... wrote, wrote everything was gone :)
A summary of what he wrote .. The place of indication, if the voice in Primo is gone, then there is no connection, if the phrases are not fully spoken or not all have a connection, but there is no money in the account :)


--------------------
Nexus 6
Nexus 4
Lenovo P780 VIBEUI V2.0 1507 7.91.1 DEV (VDT)
Vitt
Message#27
14.10.10, 12:31
Decent
*********
[online]

Group: Moderators
Messages 6733
Check in: 29.12.06
Lenovo P2 3/32

Reputation:-  1151  +

Hehe, there will be a super-indication, everything is already invented, I will do it in the evening - tomorrow run-in;)

Is the sound indication (customizable) necessary or not? If yes, it would be necessary to find standard sounds (connect / disconnect / connect attempt) ... Maybe someone can help?
mpal
Message#28
14.10.10, 12:58
Self director
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 8384
Check in: 12.10.08

Reputation:-  2643  +

Vitt @ 10/14/2010 13:31*
Maybe someone can help?

In the evening I will lay out those sounds with which the Miovsky connector fromholodbut


--------------------
"I have been illiterate since childhood"
mpal
Build and not only for the Mio c520
holod
Message#29
14.10.10, 15:46
Guru
*********
[offline]

Group: Developers
Messages 5564
Check in: 01.11.07
Samsung Galaxy S9 Exynos

Reputation:-  970  +

Vitt @ 10/14/2010, 15:31*
If yes, you should find standard sounds.

Here are the standard sounds from Windows.

Attached files

Attached filemini2440_ARMV4I_Release.rar(105.99 KB)


--------------------
aleksross
Message#30
14.10.10, 15:47
Guru
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 2354
Check in: 25.03.08

Reputation:-  217  +

Vitt,
I sound indication nafig did not fit ...: sveta:


--------------------
From the point of view of banal erudition, not every individual is capable of creating a tendency of paradoxical relations !!!

"Public opinion is a false opinion, as most people are idiots" (c) Edgar Allan Poe
Vitt
Message#31
14.10.10, 19:20
Decent
*********
[online]

Group: Moderators
Messages 6733
Check in: 29.12.06
Lenovo P2 3/32

Reputation:-  1151  +

So I'm not doing you, but for everyone;)
There will be a setting, you will not notice anything.
mpal
Message#32
14.10.10, 19:32
Self director
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 8384
Check in: 12.10.08

Reputation:-  2643  +

Vitt,
I have such a voice
Attached fileWav.rar(18.64 KB)


--------------------
"I have been illiterate since childhood"
mpal
Build and not only for the Mio c520
stesha99
Message#33
14.10.10, 22:06
Pros of the business
********
[offline]

Group: Friendssavagemessiahzine.com
Messages 1670
Check in: 19.10.09
Lenovo A660

Reputation:-  194  +

Vitt @ 10/14/2010 13:31*
Hehe, there will be a super-indication, everything has already been invented, I will do it in the evening - tomorrow run-in

We are waiting for this miracle indication: thank_you:: heppy_dancing:: D


--------------------
À la guerre comme à la guerre !!!
Vitt
Message#34
14.10.10, 22:08
Decent
*********
[online]

Group: Moderators
Messages 6733
Check in: 29.12.06
Lenovo P2 3/32

Reputation:-  1151  +

Indication is ready, if tomorrow I successfully roll in - I'll post it.
While there was a glitch with a "hang" connection process, it is very unpleasant :(
Roxer!
Message#35
15.10.10, 14:00
Monyak nihilist
*********
[offline]

Group: Developers
Messages 3461
Check in: 13.09.08
Sony Xperia P

Reputation:-  640  +

holod @ 10/13/2010, 21:58*
and if the structure is slightly changed?

And nobody canceled the cycles.
True, if there are no special tools for working with XML, then yes, it's hard ...
Mort should know what XML Node, Cild Node, NodeValue and so on are ...
If you do not know the horror: (

Post has been editedRoxer! - 15.10.10, 14:02


--------------------
It’s Gonna Die!
mpal
Message#36
15.10.10, 15:32
Self director
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 8384
Check in: 12.10.08

Reputation:-  2643  +

Roxer! @ 10/15/2010 3:00 PM*
Mort should know what XML Node, Cild Node, NodeValue and so on are ...

No, he doesn't know that. He must be taught ...: girl_hysterics:


--------------------
"I have been illiterate since childhood"
mpal
Build and not only for the Mio c520
Vitt
Message#37
15.10.10, 18:30
Decent
*********
[online]

Group: Moderators
Messages 6733
Check in: 29.12.06
Lenovo P2 3/32

Reputation:-  1151  +

New version in the cap
Version 0.6 beta
- new interface
- graphic and sound indicators, tap on a graphic indicator - display of the main window
- setting the number of unsuccessful connections
- fixed some bugs

Known bugs- the indicator window can be seen on the taskbar
What's next
- custom auto-enumeration of connections, if attempts are exhausted
- customizable ability to work without the main window - someone wanted :)
- customizable launch of an external application upon the first successful connection attempt

Something like that, today I skated - it seems to work like a clock;) I mean, not only time shows: D
stesha99
Message#38
16.10.10, 13:59
Pros of the business
********
[offline]

Group: Friendssavagemessiahzine.com
Messages 1670
Check in: 19.10.09
Lenovo A660

Reputation:-  194  +

Vitt,
Today I rode with a connector, the connection is maintained steadily, reconnected several times during breaks, artificially disconnected from the Internet in various ways, the connection was steadily restored. There is one wish that the indication can be made smaller, and then the square is very large: blush:

Post has been editedstesha99 - 16.10.10, 14:19


--------------------
À la guerre comme à la guerre !!!
aleksross
Message#39
16.10.10, 15:17
Guru
*********
[offline]

Group: Friendssavagemessiahzine.com
Messages 2354
Check in: 25.03.08

Reputation:-  217  +

Vitt,
Version 0.6 falls into error ...


--------------------
From the point of view of banal erudition, not every individual is capable of creating a tendency of paradoxical relations !!!

"Public opinion is a false opinion, as most people are idiots" (c) Edgar Allan Poe
stesha99
Message#40
16.10.10, 16:03
Pros of the business
********
[offline]

Group: Friendssavagemessiahzine.com
Messages 1670
Check in: 19.10.09
Lenovo A660

Reputation:-  194  +

Version 0.6 falls into error

You would have laid out a screen of errors, otherwise I have not had any mistakes yet. : yes2:

Post has been editedstesha99 - 16.10.10, 16:04


--------------------
À la guerre comme à la guerre !!!
Vitt
Message#41
16.10.10, 17:15
Decent
*********
[online]

Group: Moderators
Messages 6733
Check in: 29.12.06
Lenovo P2 3/32

Reputation:-  1151  +

Dada, the screen would not see any errors.
stesha99,
a square is big so that you can poke a finger into it, I don’t know how anyone, but I don’t get into this one the first time;)

96 pagesV  < 1 2 3 4 5 6 > » 


 mobile version    Now: 05/01/19 11:17