User Name
Remember Me?
Password
Home
Register
Calendar
Today's Posts
FAQ
Free Publications
Search
Page 1 of 3
1
2
3
>
Showing results 1 to 25 of 56
Search took
6.61
seconds.
Search:
Posts Made By:
Sarackganda
Forum:
Miscellaneous Languages
02-26-2007, 01:07 PM
Replies:
1
What Delphi IDE?
Views:
519
Posted By
Sarackganda
Delphi 2006 for .NET or Win32 applications, or...
Delphi 2006 for .NET or Win32 applications, or Lazarus (http://www.lazarus.freepascal.org) for Linux, OpenBSD, OS/2 or also Win32 applications.
Check this free borland version´s:...
Forum:
Miscellaneous Languages
02-23-2007, 12:10 PM
Replies:
1
Delphi 7 - Problem with reserved word
Views:
648
Posted By
Sarackganda
You cannot name a function interface internally,...
You cannot name a function interface internally, but you can export any function with this name:
Delphi like VB is not case sensitive!
Forum:
Miscellaneous Languages
02-20-2006, 11:22 AM
Replies:
1
saving files in delphi
Views:
422
Posted By
Sarackganda
Yes, you can do it in Delphi like any all...
Yes, you can do it in Delphi like any all propouse language!
Since the first version, Delphi has at least two methods to manage files, the inherited methos of pascal:
var
MyFileHandle: File;...
Forum:
Miscellaneous Languages
02-10-2006, 03:26 PM
Replies:
4
HAVE to know pascal to learn Delphi?
Views:
1,627
Posted By
Sarackganda
...the langauge was called Object Pascal and the...
...the langauge was called Object Pascal and the IDE / product was called Delphi......
Forum:
API
12-07-2005, 12:52 PM
Replies:
1
Accessing delphi menus inside a tdxbarcontrol using win32 from vb
Views:
462
Posted By
Sarackganda
I Delphi you can create a standard Menu with the...
I Delphi you can create a standard Menu with the classes TMainMenu, TPopupMenu and TMenuItem, and that uses the apis: CreateMenu, CreatePopupMenu, InsertMenu, SetMenu, InsertMenuItem.... And you can...
Forum:
General
10-26-2005, 07:58 AM
Replies:
3
Loading VB5 project in VB6(SP6) not upgrading controls
Views:
302
Posted By
Sarackganda
Try installing common controls!... ¿Is a machine...
Try installing common controls!... ¿Is a machine recently installed?
Forum:
General
10-03-2005, 12:30 PM
Replies:
7
Delphi code.. -> VB
Views:
274
Posted By
Sarackganda
The compiler and the IDE don´t have code, but all...
The compiler and the IDE don´t have code, but all the libraries, classes, procedures and functions are open, it have full source and you can debug it step by step!.... I´s wonderful to write some...
Forum:
General
10-03-2005, 06:27 AM
Replies:
7
Delphi code.. -> VB
Views:
274
Posted By
Sarackganda
Delphi is an open source language, all language...
Delphi is an open source language, all language functions have the implementation of this in Delphi code or inline assembler.
This function do this:
function ProgIDToClassID(const ProgID:...
Forum:
Tech Discussions
09-21-2005, 11:40 AM
Replies:
2
VB 6 Testing/Debugging Tool?
Views:
342
Posted By
Sarackganda
I use "AxTools CodeSMART" to find warnings, hints...
I use "AxTools CodeSMART" to find warnings, hints and some code suggestions.
And use "MemProof" to find heap memory and resource leakes, it`s realy for borland compilers, buf works with any EXE....
Forum:
.NET General
09-20-2005, 02:12 PM
Replies:
9
Need help with SendMessage
Views:
552
Posted By
Sarackganda
[QUOTE=Cool Cow]...I already got the window...
[QUOTE=Cool Cow]...I already got the window handle, but i have no idea how to press that "Add" button...[QUOTE]
You can find the handle of Add button and send WM_LBUTTONDOWN message, or you can send...
Forum:
Excel
09-20-2005, 09:18 AM
Replies:
12
function question
Views:
370
Posted By
Sarackganda
They have no limit more than the stack. All...
They have no limit more than the stack. All parameters are written in a stack, such as all calls. If you fill the stack, the error will be: "Stack overflow"
Forum:
General
08-31-2005, 01:28 PM
Replies:
12
From Delphi 2 VB (Beep API in Win9x with Frequency)
Views:
1,194
Posted By
Sarackganda
¿Is late?... you can make a native Win32 DLL with...
¿Is late?... you can make a native Win32 DLL with your Delphi code...
library DelphiSound;
uses
SysUtils,
Windows;
procedure SetPort(address, Value: Word) ;
var
bValue: Byte;
Forum:
Tech Discussions
07-07-2005, 12:28 PM
Replies:
4
Delphi vs VB program size
Views:
478
Posted By
Sarackganda
In fact, Delphi Application are smaller than VB...
In fact, Delphi Application are smaller than VB Application, if you include all the runtimes in this bag. But in Dephi you can compile your application with "RunTime Packages", and the final EXE´s...
Forum:
Tech Discussions
06-30-2005, 01:08 PM
Replies:
3
Totally New To Programming - any advice????
Views:
277
Posted By
Sarackganda
Delphi for Win32 is to much powerfull than VB for...
Delphi for Win32 is to much powerfull than VB for Win32. A lot of the new´s of the VB.NET are supported by Delphi 1 (year 1995) such as:
Real OOP
Short circuit evaluation
Real conditional...
Forum:
General
04-12-2005, 08:01 AM
Replies:
6
Padding a String
Views:
437
Posted By
Sarackganda
I create my own functions: Function...
I create my own functions:
Function LPad(ByVal AText As String, ByVal ALen As Integer, ByVal AChar As String)
If Len(AText) < ALen Then
LPad = AText + String$(ALen - Len(AText), AChar)
...
Forum:
General
09-13-2004, 01:10 PM
Replies:
2
Using variables in multiple forms
Views:
247
Posted By
Sarackganda
You can define this variable as public in a...
You can define this variable as public in a module, an it be the same for all you code.
Forum:
Tech Discussions
09-01-2004, 09:38 AM
Replies:
24
Where did you learn VB?
Views:
937
Posted By
Sarackganda
I don´t thinks so... I work with VB, Delphi and...
I don´t thinks so... I work with VB, Delphi and C++..., and i think te most confortable code of this languajes is the Delphi (www.clubdelphi.com) code!
I studied VB3 in Win 3.1 time´s... but later i...
Forum:
General
09-01-2004, 06:36 AM
Replies:
7
Detecting previous instance without app.previnstance
Views:
678
Posted By
Sarackganda
Try searching CreateSemaphore winapi in MSDN! ...
Try searching CreateSemaphore winapi in MSDN!
I thinking in another languajes, but you can do some "console aplication" or windowless application like a service in VB!..
Forum:
General
08-31-2004, 01:26 PM
Replies:
7
Detecting previous instance without app.previnstance
Views:
678
Posted By
Sarackganda
If is a windowless application, you can try use...
If is a windowless application, you can try use Semaphores (CreateSemaphore...).
Forum:
General
08-18-2004, 11:37 AM
Replies:
6
Some function like Delphi Format??
Views:
360
Posted By
Sarackganda
FormatMessage can be a solution, check this out:...
FormatMessage can be a solution, check this out: http://www.mvps.org/btmtz/_misc/stringinserts1.bas
Forum:
General
08-18-2004, 11:29 AM
Replies:
6
Some function like Delphi Format??
Views:
360
Posted By
Sarackganda
Yes, but is not the idea!... I want to save some...
Yes, but is not the idea!... I want to save some resorces with internationalization and put some formatted data in this resource strings. This was only a little sample!
Forum:
General
08-18-2004, 09:58 AM
Replies:
6
Some function like Delphi Format??
Views:
360
Posted By
Sarackganda
¿Y have other help or Format don´t work in this...
¿Y have other help or Format don´t work in this way? :D
I try to use: FormatMessage
Forum:
General
08-18-2004, 09:07 AM
Replies:
6
Some function like Delphi Format??
Views:
360
Posted By
Sarackganda
Some function like Delphi Format??
I need to use some function to insert values in a string, like in delphi or like PrintF in C
In Delphi:
Format('Subtotal: %d, Total: %d', [AValue, ATotal])
In C:
printf( "'Subtotal: %d,...
Forum:
General
08-04-2004, 02:04 PM
Replies:
2
¿List values and names of Enum?
Views:
375
Posted By
Sarackganda
Thank´s!
Thank´s!
Forum:
General
08-04-2004, 01:12 PM
Replies:
0
Dynamic creation of activex object with events...
Views:
275
Posted By
Sarackganda
Dynamic creation of activex object with events...
Can i load dynamic ActiveX libraries, and create some component´s withevents?
TIA
Showing results 1 to 25 of 56
Page 1 of 3
1
2
3
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
Announcements
Announcements
Visual Basic .NET (2002/2003/2005/2008, including Express editions)
.NET Knowledge Base
Tutors' Corner
Code Library
ASP.Net
.NET Communications
.NET Game Programming
Managed DirectX
.NET Office Automation
.NET File I/O and Registry
.NET Database and Reporting
.NET Interface and Graphics
.NET Installation / Documentation
.NET General
Xtreme .NET Talk
Legacy Visual Basic (VB 4/5/6)
Knowledge Base
Tutors' Corner
Code Library
Communications
Game Programming
DirectX
VBA / Office Integration
Excel
Word, PowerPoint, Outlook, and Other Office Products
API
File I/O and Registry
Database and Reporting
Interface and Graphics
Installation / Documentation
General
Other Languages
Web Programming
Miscellaneous Languages
General Discussion
Tech Discussions
Random Thoughts
Forum Questions / Concerns / Comments
Advertisement:
Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
Home
Register
Calendar
Today's Posts
FAQ
Archive
© Xtremevbtalk.com 2001 - 2013. All Rights Reserved.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.