Search found 115 matches: dim

Return to advanced search

Re: Harbour Ole syntax

... but not select it. Remarks Example [ShowDay Sample (Visual Basic)] This sample illustrates how to show a date it both day view and month view. Dim d As Date d = #10/10/2004# 'Show a date in Day view CalendarControl.DayView.ShowDay d, True 'Show a date in Month View CalendarControl.ViewType ...
by Richard Chidiak
Mon Jun 03, 2013 6:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6562

VB a Fivewin/xharbour

... das variáveis que serão utilizadas na passagem de parâmetros da DLL ' ' ********IMPORTANTE O tipoXML da versão 1.04 é 35 *************** ' Dim XML As String ' informar uma string com o XML que será validada. Dim msgResultado As String ' retorna a literal do resultado da chamada do WS Dim ...
by Wanderson
Mon Mar 04, 2013 2:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: VB a Fivewin/xharbour
Replies: 11
Views: 3062

Twitter Api - c# or VB Translate

... or here : http://nuget.org/packages/twitterizer login (credential): // C# Twitter twit = new Twitter(username, password); ' VB Dim twit As New Twitter(username, password) Read Twitter: // C# Twitter twit = new Twitter(username, password); TwitterStatusCollection tweets = twit.Status.UserTimeline(); ...
by norberto
Mon May 07, 2012 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Twitter Api - c# or VB Translate
Replies: 0
Views: 346

Acceso al ERP Infor (BaaN / LN) mediante OLE Automation

... subroutine GetBaan4Users is an MS-Excel macro which can be invoked through user interface controls on the spreadsheet (buttons or menus).       Dim user As String       Dim Baan4Object As Object       Sub GetBaan4Users()           On Error GoTo CannotCreateBaan4           ' run Baan4         ...
by Baxajaun
Mon Mar 26, 2012 8:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Acceso al ERP Infor (BaaN / LN) mediante OLE Automation
Replies: 0
Views: 1263

Coding issue / Harbour 3/ MSVC

... from the collection. Example [CustomProperties Sample (Visual Basic)] This sample illustrates how to get and set custom properties for an event. Dim NewEvent As CalendarEvent Set NewEvent = CalendarControl.DataProvider.CreateEvent 'Add some custom properties NewEvent.CustomProperties.Property("String ...
by TimStone
Sat Dec 17, 2011 7:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Coding issue / Harbour 3/ MSVC
Replies: 0
Views: 409

Dimming ExplorerBar Panel

Dear All,

How to dim (panel) when explorerBar panel is disabled? Or at least change the panel title's gradient color?
by fraxzi
Fri Jun 17, 2011 3:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dimming ExplorerBar Panel
Replies: 0
Views: 255

vba unable to replace dbf via apollo engine

... It must be one of the following defined constants: ' R_CHAR Character (0-255 bytes long) Sub APOLOTEST22() 'Using Apollo COM with Visual Basic Dim oTable As Object ' Local data access Set oTable = CreateObject("ApolloCOM7.Table") oTable.AccessMethod = "amLocal" oTable.DatabaseName ...
by ROBERTCHENTPE
Wed Feb 09, 2011 12:45 pm
 
Forum: FiveWin for CA-Clipper
Topic: vba unable to replace dbf via apollo engine
Replies: 0
Views: 1035

Limitar Velocidad Lector de Codigos

... el teclado. He intentado cambiando la velocidad de escritura desde el panel de control, pero no funciona. La pistola esta conectada al puerto mini dim del teclado y no necesita de drivers para funcionar, Tengo Xp en la maquina donde esta trabajando..si necesitan mas datos solicitenmelos y se los ...
by cuatecatl82
Mon Dec 06, 2010 5:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Limitar Velocidad Lector de Codigos
Replies: 1
Views: 383

codigo de barras 128C... otra vez

... La funcion en VB es esta: Public Function Code128c(ByVal DataToEncode As String, Optional ByVal ReturnType As Integer = 0) As String Dim I As Integer Dim j As Integer Dim F As Integer Dim DataToPrint As String Dim OnlyCorrectData As String Dim PrintableString As String Dim Encoding ...
by rene.montano
Wed Jul 14, 2010 12:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: codigo de barras 128C... otra vez
Replies: 0
Views: 276

Re: Facturación electronica - España

... Pregunta técnia 11 ¿Podría proporcionar algún ejemplo de uso del Control ActiveX con Visual Basic, JavaScript y Delphi ? En VB (.net): Dim firmante As Object Dim ret As Object firmante = Server.CreateObject("AEATFACT.AeatFactCtl") ret = firmante.FIRMA(ficheroorigen, NIFTitularCertificado, ...
by fgondi
Fri Feb 12, 2010 10:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Facturación electronica - España
Replies: 69
Views: 24164

save contacts fron Outlook application object

... _ ByVal e As System.EventArgs) Handles Me.Startup AccessContacts("Na") End Sub Private Sub AccessContacts(ByVal findLastName As String) Dim folderContacts As Outlook.MAPIFolder = Me.ActiveExplorer() _ .Session.GetDefaultFolder(Outlook.OlDefaultFolders _ .olFolderContacts) Dim searchFolder ...
by Silvio
Tue Jan 26, 2010 8:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: save contacts fron Outlook application object
Replies: 0
Views: 974

save Attachments from outllook application object

... Private Sub ThisApplication_NewMail() Handles Me.NewMail Dim inBox As Outlook.MAPIFolder = Me.ActiveExplorer() _ .Session.GetDefaultFolder(Outlook. _ OlDefaultFolders.olFolderInbox) Dim inBoxItems As Outlook.Items ...
by Silvio
Tue Jan 26, 2010 8:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: save Attachments from outllook application object
Replies: 3
Views: 817

Re: HOW TO DIM "CLOSE BUTTON"

RAMESHBABU,

I have tried and successful,

thanks a lot

Best Regards
kkyung
by kkyung
Mon Nov 30, 2009 9:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DIM "CLOSE BUTTON"
Replies: 7
Views: 1228

Re: HOW TO DIM "CLOSE BUTTON"

Hi, >>I have tried your suggestion but error occur during compile You have to include the "#define SC_CLOSE 0xF060" statement the top of the test prg. That's all >> I don't know how to apply your 'NOCLOSEDLG" function Just see the following code. It is called on INIT Claus...
by RAMESHBABU
Mon Nov 30, 2009 7:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DIM "CLOSE BUTTON"
Replies: 7
Views: 1228

MMERCADE/ RAMESHBABU Re: HOW TO DIM "CLOSE BUTTON"

... have tried your function but it make disappear "close button" on dialog menu bar, can i change it to appear in dialog menu bar but only DIM it , or by using above enablemenuitm function
by kkyung
Sun Nov 29, 2009 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DIM "CLOSE BUTTON"
Replies: 7
Views: 1228
PreviousNext

Return to advanced search