Search found 30 matches: namespace

Return to advanced search

Re: WebView2 Essentials: Guides, Tips & Resources

... development environment, initializing the WebView2 control, and handling navigation events. This involves coding in C# and using the CoreWebView2 namespace​​. Properties and Methods: The WebView2 class in WPF, for instance, extends HwndHost and provides several properties like AllowExternalDrop, ...
by Otto
Wed Jan 10, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 480

Re: Soap Web Service

... <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/tomichws/Service1"> <s:import namespace="http://www.w3.org/2001/XMLSchema" /> <s:element name="Process_Sql"> <s:complexType> <s:sequence> ...
by byron.hopp
Wed Jan 26, 2022 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service
Replies: 7
Views: 905

Re: Learning opencv step by step

Opcionalmente si no queremos usar el "namespace" (algo propio de C++) podemos cambiar el código así: Ojo que en cv1.hbp usamos este flag para indicar que queremos construir en modo C++: (desde el 2015 opencv obliga a usar C++) -cflag=-TP ...
by Antonio Linares
Tue Dec 14, 2021 9:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Learning opencv step by step
Replies: 21
Views: 2349

Re: Ayuda con XML - SOLUCIONADO

... que me pasa la administración para que lo incluya al comienzo del XML: <schema targetNamespace="urn:ticketbai:emision"> <import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd"/> Un ...
by landaga
Sat Feb 27, 2021 9:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: Ayuda con XML - SOLUCIONADO
Replies: 1
Views: 290

Re: Objeto OLE

... Forms, Dialogs, StdCtrls, OleServer, OleAuto; var Controlador: Variant; begin Controlador := CreateOLEObject('DataLinkLibrary.IController'); // NameSpace.ClassName Controlador.Nuevo(); // o Controlador.Nuevo('DEMO'); end; Gracias. Jorge Jaurena
by Jorge Jaurena
Wed May 24, 2017 1:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Objeto OLE
Replies: 23
Views: 2555

Re: Unattended e-mails via Outlook 365

... projects, please refer to Samples section. using System; using System.Collections.Generic; using System.Text; using EASendMail; //add EASendMail namespace namespace mysendemail { class Program { static void Main(string[] args) { SmtpMail oMail = new SmtpMail("TryIt"); SmtpClient oSmtp ...
by Rick Lipkin
Thu Jan 05, 2017 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unattended e-mails via Outlook 365
Replies: 5
Views: 2760

Re: OT Routing routine

... then you should be able to instantiate an OLE object from the PRG once you register the .NET DLL as FiveNet does also. In fivetech.cs there is a: namespace FiveTech and public class FiveNet then from the PRG we can do: oFiveNet = win_oleCreateObject( "FiveTech.FiveNet" ) If you plan ...
by Antonio Linares
Tue Dec 20, 2016 8:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT Routing routine
Replies: 11
Views: 1865

How to combine (or use) SDK dll into Fivewin HB/XHB?

... and in MSC Sharp sample were as followings Main.cs using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace KTOpenAPICSharpSample { static class Program { /// <summary> /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); ...
by kim yong woo
Thu Jul 02, 2015 2:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to combine (or use) SDK dll into Fivewin HB/XHB?
Replies: 36
Views: 8213

Re: Clase QT

Hi Jumping in... QT is not a class as other classes and is callable on C++ level only. This namespace only defines the ENUMS in C++ and #defines in Harbour. QtContribs contain all the defines in hbqt/qtgui/hbqtgui.ch header file. Just include it as oyou normally do. Contstants ...
by Pritpal Bedi
Tue Apr 07, 2015 7:23 pm
 
Forum: FiveTouch
Topic: Clase QT
Replies: 4
Views: 1961

Re: Createitem() in Outlook on Microsoft Exchange

Here is a VB Code, which may be useful for you. You can use the Namespace.GetSharedDefaultFolder method to access the Calendar folder in another Exchange mailbox. Keep in mind that you might not have permission to even see that folder, or you might have ...
by anserkk
Wed Nov 20, 2013 6:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Createitem() in Outlook on Microsoft Exchange
Replies: 2
Views: 630

Re: Como Instalar un Tipo de Letra

... windows8.1 64 bits OK testVBSc.vbs Const FONTS = &H14& Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace(FONTS) objFolder.CopyHere "e:\siav\ean-13.ttf" fivewin utilizar ShellExecute(.....,"testVBSc.vbs",.......... fonte => ...
by Sistem
Mon Nov 18, 2013 11:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como Instalar un Tipo de Letra
Replies: 5
Views: 962

SOURCE FOR IMAGE WITH *.BMP *.EMF *.GIF *.ICO *.JPG *.PNG *

... #include <commdlg.h> #include <shellapi.h> #include "h2.h" static HBITMAP hbm; // RETURN HBITMAP TO FIVEWIN using namespace Gdiplus; HBITMAP IMAGE_HBITMAP_CPP(char * File_Name) { WCHAR wchPath[MAX_PATH]; ZeroMemory(wchPath,MAX_PATH); MultiByteToWideChar(CP_ACP, ...
by HATHAL
Sun Oct 06, 2013 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cover Flow
Replies: 10
Views: 5584

Re: Off Beat Question - Javascript - SQL

... try { var connection = new ActiveXObject("ADODB.Connection");] ) } catch(e) { alert("ADODB namespace not found."); exit(0); } try { var connectionstring="DSN=Pasha;User ID=sa;Password=Alex1209$; connection.Open(connectionstring); ...
by cdmmaui
Tue Jun 04, 2013 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Off Beat Question - Javascript - SQL
Replies: 17
Views: 3488

Off Beat Question - Javascript - SQL

... try { var connection = new ActiveXObject("ADODB.Connection"); } catch(e) { alert("ADODB namespace not found."); exit(0); } try { var connectionstring="Data Source=1.2.3.4;Initial Catalog=SQLDB;User ID=user_id;Password=password;Provider=SQLOLEDB"; ...
by cdmmaui
Wed May 22, 2013 9:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Off Beat Question - Javascript - SQL
Replies: 17
Views: 3488

Re: Con "InternetExplorer.Application" y iE7 se abren ventanas

... browser to a location that might not be expressed as a URL, such as a pointer to an item identifier list (PIDL) for an entity in the Windows Shell namespace. Syntax object.Navigate2( URL As Variant, [Flags As Variant,] [TargetFrameName As Variant,] [PostData As Variant,] [Headers As Variant]) Parameters ...
by JmGarcia
Tue Jun 07, 2011 12:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Con "InternetExplorer.Application" y iE7 se abren ventanas
Replies: 5
Views: 2537
Next

Return to advanced search