No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
22 Posted Topics
Anybody who knows how to change word or character in kanji to katakana or vice-versa. I'm using 2 textbox to do this, the first textbox is for katakana and the second textbox is for kanji. What i wanted to do is, whatever i typed in the kanji textbox it will …
Hi, First Problem: I have a PHP script that export CSV with Japanese text, for example I download the CSV on the website then save to desktop of my computer and Open it on NOTEPAD... that works fine I could still see all the japanese text OK with no problem, …
Hi, DO somebody know how to remove the rectangle graphics, I'm able to draw a rectangle graphics using this code: [CODE]Dim g As System.Drawing.Graphics Dim myPen As New System.Drawing.Pen(System.Drawing.Color.Red, 2) Dim myRect As New Rectangle(x1, y1, x2, y2) g = Me.CreateGraphics() g.DrawRectangle(myPen, myRect) g.Dispose()[/CODE] Is it possible to remove this …
Hi, can you please expalain a little bit more about this: "bData() = Inet1.OpenURL(strURL, icByteArray)" coz im having error on this line... sorry but I'am just not very much familiar in VB... Thanks [quote=Comatose;85356]Well, [code] Dim strURL As String Dim bData() As Byte ' Data variable Dim intFile As Integer …
Is it possible to change the default [B]click once[/B] installation path, I want to change the click once installation path to C:\Program Files\[program name], how can i do it? where could i find the settings for it to be able to change the default path?
does anybody know how to get the current user's path for xp /vista sample: "C:\Documents and Settings\Owner" or if you know how to get the installed program path "C:\Program Files\FileZilla FTP Client\filezilla.exe"
currently this is working [CODE]System.Diagnostics.Process.Start("notepad.exe")[/CODE] also with this [CODE]System.Diagnostics.Process.Start("C:\Program Files\FileZilla FTP Client\filezilla.exe")[/CODE] but if i try this [CODE]System.Diagnostics.Process.Start("filezilla.exe")[/CODE] i will get an error since i did not declare the path Is there any way how to run a executable installed on your machine without putting the path? if yes, can …
Hi does anyone knows how to sort in link list, i already done some parts of it and its already working except for the sorting part. please help me about this sorting problem... [CODE]#include <stdio.h> #include <stdlib.h> struct nodeTag { int nData; struct nodeTag *pLink; }; typedef struct nodeTag structNodeType; …
Hi to all, Do anybody knows how to display the complete dialog of a printer properties, showing all tabs of a printer properties like when you are manually doing it on controlpanel>printer&fax... i wanted to show it that way... I have a program that can show the printer properties... here …
Any body knows a way to create a uninstaller in vb6 or any easy to use third party software... thanks
Hi to all, I have a program that will print a file automatically after downloading it from the web server, the problem is how can i delete or cancel print job already in the printer queue... i already try [code]printer.killdoc[/code] but it does not delete or cancel job that are …
try this SAMPLE.... [COLOR=blue]SELECT[/COLOR] [code] <select name="cbo_yrlvl" size="1" class="contlink" id="cbo_yrlvl"> <option>- click to choose year level -</option> <option selected>N/A</option> <% set conn=Server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.Jet.OLEDB.4.0" conn.Open (Server.Mappath("gok.mdb")) set rs = Server.CreateObject("ADODB.recordset") rs.Open "SELECT yrlevel FROM yrandsem WHERE category = 'Short Term Courses'", conn do until rs.EOF for each x in rs.Fields %> …
Hi, Do anybody knows or have a VB6 CODE that will check first if the printer is online before I start printing, because if the printer is not online I could terminate the printing job or search for a new printer that is online. Please help me about this one.... …
Is it possible to use XML file on connecting / sending / receiving data from the client to the server or vise versa. If this is possible can anybody help me about this problem of mine... Please give a simple sample of your solution on how to solve this.... Thanks …
[code] Dim strURL As String Dim bData() As Byte Dim intFile As Integer strURL = "http://localhost/aaa/1/3/test1.jpg" intFile = FreeFile() ' Set intFile to an unused file. bData() = Inet1.OpenURL(strURL, icByteArray) Do Until Inet1.StillExecuting = False ' WAIT DOWNLOADING... DoEvents Loop Open "C:\test1.jpg" For Binary Access Write As #intFile Put #intFile, …
Hi to all, Does anybody knows how to connect on the web server using client desktop application programmed in vb6... for example.... I already have a program that prints a pdf file running on the clients computer.... what i wanted to do is to check a finished job from the …
This is the connection im using..... //connection settings (Open) $conn = mysql_connect("localhost", "root", ""); if (!$conn) { die('Could not connect: ' . mysql_error()); exit; } //select database mysql_select_db("vssdb", $conn); //check if database does not exist if(mysql_errno($conn) == 1049) { //creating the database $sql = 'CREATE DATABASE vssdb'; if (!mysql_query($sql, $conn)) …
Hi, do anybody knows how to connect in sql mdb2 in Visual Basic 6 I only know how to connect in php... this is my sample connection in php.... #======================================# $mdb2 = connectdb(); $sql = "SELECT <fieldname> FROM <tablename>" $results = selquery($sql,$mdb2); closedb($mdb2); #======================================# do anyone knows how to do …
Is it possible for VB6 to establish a direct remote sql connection and make a query in the remote sql database? If possible what are the reference do I need to add to make it working? Somebody please give a me a good example... from establishing a connection, query in …
I had moved my question on VB 4/5/6 category... sorry i made a mistake...
The End.