Abejali Technology

The Way To Success
Subscribe

Archive for the ‘VB6 And AJAX’

ToolboxBitmap Icon Solution For VB6

February 14, 2008 By: abejali Category: VB6 And AJAX 4 Comments →

Download This Project Here

toolboxbitmap

Description : Size 84Kb

There are lots of benefits you can learn from this project
This is Most Wanted VB Source Code that is hard to find it anywhere
I hope this project will help you much on solving your problem in this area

The Keystone Of This Project:

  • Learn how to add ActiveX component library in your project
  • Learn how to register ActiveX component
  • Learn how to get list of objects in ActiveX component
  • Learn how to get ToolboxBitmap icon from each object
  • Learn how to create object on runtime
  • Learn how to handle license key of object

Declaimer:

You can use this idea but please give me some credit with
putting my information on your project.
Or at least give me some good comment

Download This Project Here

abejali



Converting String To Hex Using XML

February 11, 2008 By: abejali Category: VB6 And AJAX 10 Comments →

 There are many ways to convert any string into Hex format. This is one of alternative way to convert it using XML functionalities

Download Full Sample Project Here

Public Function XML_StringToHex( _
ByVal Binary As Variant) As String

On Error Resume Next

Dim MyByte() As Byte
MyByte = Binary

Dim xmlDoc As New MSXML2.FreeThreadedDOMDocument
Set xmlDoc.documentElement = xmlDoc.createElement(”bin”)

With xmlDoc.documentElement

.dataType = “bin.hex”
.nodeTypedValue = MyByte
XML_StringToHex = .Text

End With

Set xmlDoc = Nothing
Erase MyByte()

End Function

Public Function XML_HexToString( _
ByVal HexString As String) As Variant

On Error Resume Next

Dim xmlDoc As New MSXML2.FreeThreadedDOMDocument
Set xmlDoc.documentElement = xmlDoc.createElement(”hex”)

With xmlDoc.documentElement

.dataType = “bin.hex”
.Text = HexString
XML_HexToString = .nodeTypedValue

End With
Set xmlDoc = Nothing

End Function

Download Full Sample Project Here


AJAX Communication Using VB6 And ASP

January 30, 2008 By: abejali Category: VB6 And AJAX No Comments →

Download This Project Here

Ajax Communicator

Description :

  • This is an Ajax Communication demo for VB6 developer. Feel free to use and modify but do not erase my information from your code.
  • IF you are having problem with the user control, please check your library first. I am currently using microsoft XML, v6.0
  • You can change it with available version of XML Library On Your Project Or Download it from microsoft.
  • From my previous posted, I have made this sample with PHP scripts. But I think it is unfair for VB6 programmers that are always familiar with ASP scripts. So I have made another post just for you. I Hope you will be enjoyed.
  • If you feel lucky for this code, why not just buy me some coffee :)

Manual Instruction:

  • Upload all Server Side Files into Your Server that you can get from “Serverside” folder in this project path.
  • Read Some Note that i Have made inside VB6 Codes Project and feel free to test.

Download This Project Here

abejali.com


AJAX Communication Using VB6 And PHP

January 28, 2008 By: abejali Category: VB6 And AJAX 8 Comments →

Download This Project Here

Ajax Communicator

Description :

  • This is an Ajax Communication demo for VB6 developer. Feel free to use and modify but do not erase my information from your code.
  • IF you are having problem with the user control, please check your library first. I am currently using microsoft XML, v6.0
  • You can change it with available version of XML Library On Your Project Or Download it from microsoft.
  • Since I have created this Server Side script using PHP 4, it supposed not to come out with any major problem with PHP 5++
  • If you feel lucky for this code, why not just buy me some coffee :)

Manual Instruction:

  • Upload all Server Side Files into Your Server that you can get from “Serverside” folder in this project path.
  • Read Some Note that i Have made inside VB6 Codes Project and feel free to test.

Optional For PHP 5 User

  • Edit the file getinfo.php into PHP 5 code that I have commented inside the code

Download This Project Here

abejali.com