PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → [WD16] TextControl
[WD16] TextControl
Iniciado por Thom, set., 26 2011 11:44 AM - 4 respostas
Publicado em setembro, 26 2011 - 11:44 AM
Bonjour,

J'utilise TextControl ActiveX V16 et de temps en temps j'ai un plantage:

Module : TX16.DLL
Dump du module "wd160vm.dll"

Pile des appels ....

J'avais cette appli. en WD8 avec la V11 de cet ActiveX, jamais eu ce problème.

Est-ce que quelqu'un a rencontré ça ?

Merci d'avance pour votre aide et bonne journée.

@+
Membro registado
246 mensagems
Popularité : +1 (1 vote)
Publicado em novembro, 14 2012 - 4:11 PM
Bonjour,

Je relance le post car je veux utiliser text Control mais avec l'assemblage .net.
J'ai un erreur lors du lancement en modetest car un fichier de licence licences.licx doit être présent. Quelqu'un a t-il déjà réussi à "intégrer" ce fichier ?
Merci
Vincent

Auto-Entrepreneur: http://www.ennovsys.com
Site de recherche d'emplois WD: http://www.jobagl.fr
Membro registado
6 mensagems
Popularité : +1 (1 vote)
Publicado em setembro, 21 2018 - 2:06 PM
Hello Vincet!

Sorry for digging old post and being in English. ;(

Have you found a way to fix this problem?

Thanks in advance!
mlg

French Version (Google translation ) :D

Bonjour Vincet!

Désolé pour avoir creusé de vieux post et être en anglais. ; (

Avez-vous trouvé un moyen de résoudre ce problème?

Merci d'avance!
mlg
Membro registado
6 mensagems
Popularité : +1 (1 vote)
Publicado em setembro, 21 2018 - 4:20 PM
Hello All,

Hooray! Got it working!

Created a 'custom control AP'I in .Net that inherits the actual TextControl. Crucial step is to add 'licences.licx' as an embedded resource to the API. Use this new custom control in Windev.

using TXTextControl; //TXTextControl.Windows.Forms.dll

namespace TxtControlLib
{
    public class TxtControl: TextControl
    {

    }
}


happy coding!
mlg
Membro registado
6 mensagems
Popularité : +1 (1 vote)
Publicado em outubro, 15 2018 - 12:57 PM
Oh, My bad. Unfortunately I can't edit previous answer. It's not a API, it's a custom user control developed in .Net framework.

Please read this part "add 'licences.licx' as an embedded resource to the API" => "add 'licences.licx' as an embedded resource to the custom control DLL"

Here you go, https://ibb.co/dTNqHU (Visual Studio Editor)

This is the control, https://www.textcontrol.com/.