Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~47.3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

22 Posted Topics

Member Avatar for The Dude
Member Avatar for mattyd
Member Avatar for millanskie

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 …

Member Avatar for Valeria_3
0
2K
Member Avatar for millanskie

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, …

Member Avatar for ruddyfrompt
0
15K
Member Avatar for millanskie

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 …

Member Avatar for CandorZ
0
2K
Member Avatar for pepsoft239

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 …

Member Avatar for meilbeck
0
3K
Member Avatar for millanskie

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?

Member Avatar for waynespangler
0
160
Member Avatar for millanskie

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"

Member Avatar for tmani_85
0
164
Member Avatar for millanskie

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 …

Member Avatar for timothybard
0
126
Member Avatar for millanskie

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; …

Member Avatar for Narue
0
119
Member Avatar for millanskie

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 …

Member Avatar for ruifrazao
0
362
Member Avatar for millanskie

Any body knows a way to create a uninstaller in vb6 or any easy to use third party software... thanks

Member Avatar for jbennet
0
287
Member Avatar for millanskie

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 …

Member Avatar for millanskie
0
1K
Member Avatar for Goitse

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 %> …

Member Avatar for Goitse
0
89
Member Avatar for millanskie

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.... …

0
88
Member Avatar for millanskie

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 …

0
58
Member Avatar for millanskie

[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, …

0
102
Member Avatar for millanskie

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 …

0
67
Member Avatar for jack500

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)) …

Member Avatar for omesa
0
125
Member Avatar for millanskie

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 …

Member Avatar for millanskie
0
189
Member Avatar for millanskie

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 …

Member Avatar for Ancient Dragon
0
92
Member Avatar for millanskie

I had moved my question on VB 4/5/6 category... sorry i made a mistake...

0
48

The End.