PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → [WD16] TextControl
[WD16] TextControl
Débuté par Thom, 26 sep. 2011 11:44 - 4 réponses
Posté le 26 septembre 2011 - 11:44
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.

@+
Membre enregistré
246 messages
Popularité : +1 (1 vote)
Posté le 14 novembre 2012 - 16:11
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
Membre enregistré
6 messages
Popularité : +1 (1 vote)
Posté le 21 septembre 2018 - 14:06
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
Membre enregistré
6 messages
Popularité : +1 (1 vote)
Posté le 21 septembre 2018 - 16:20
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
Membre enregistré
6 messages
Popularité : +1 (1 vote)
Posté le 15 octobre 2018 - 12:57
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/.