Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~44.1K People Reached
Interests
Programming
Favorite Tags

37 Posted Topics

Member Avatar for nagatron

Hallo to all web developers, I have a problem in load PHP in mozilla fire fox. . .I am using XAMPP web server. My PHP file is currently stored in this path [COLOR="Red"]C:\xampp\htdocs\test\index.php[/COLOR]. Whenever I run my PHP in mozilla it won't display anything even just a simple "hello world." …

Member Avatar for koford
0
2K
Member Avatar for nagatron

Hallo to all, can anyone help me how to display data from the database based on the date from the [COLOR="red"]dtpicker[/COLOR]? In my database I have a column [COLOR="Green"]date [/COLOR]and a column [COLOR="Green"]event[/COLOR], if I click a particular date in the [COLOR="Red"]dtpicker[/COLOR] it should display in the MSFlexGrid the [COLOR="Green"]date …

Member Avatar for Sambhunath_1
0
2K
Member Avatar for nagatron

Hi Guys and to all programmers, I have a website wherein my header appears on all pages of my website. Did a test by disabling the display; however, the header was gone on all pages of my website so I turned the display back on. My question is, is there …

Member Avatar for nagatron
0
108
Member Avatar for nagatron

Hello to all vb programmers. I need a little help on how to run a dos command line using visual basic. I have this dos command line: C:\Documents and Settings\nagatron> echo Main-Class: ProgressBarStep >manifest.txt where it create a manifest.txt file inside the directory "C:\Documents and Settings\nagatron". How can I execute …

Member Avatar for Nutster
0
14K
Member Avatar for nagatron

Hello to all VB masters, I have a problem with the search command. I have a button name [B][COLOR="red"]"btnSearch"[/COLOR][/B] a text field name [B]"fldSearch"[/B] a table named [B][COLOR="red"]MSFlexGrid[/COLOR][/B] and a database named [B][COLOR="red"]db.mdb[/COLOR][/B]. The function of the search button is to search the data being entered in the fldSearch and …

Member Avatar for ChrisPadgham
0
412
Member Avatar for nagatron

I got this jar creator java code in the internet. It creates a nice jar file out from your java codes but there is a a problem. If you you run the jar file, it creates an error because the manifest is empty. I think there is a missing line …

Member Avatar for nagatron
0
216
Member Avatar for nagatron

Hello to all java programmers, I have a problem about method and array. The program will display the second highest value of the inputed set of numbers in the main method. The problem is that it won't accept less than four inputs which mean it is necessary to put 4 …

Member Avatar for nagatron
0
252
Member Avatar for nagatron

If have a java program with 4 JTextField. In my JButton add, the event code goes like this: [CODE]add.addActionListener( new ActionListener() { //Handle JButton event if it is clicked public void actionPerformed(ActionEvent event) { try { String add = "insert into person (firstName,middleName,familyName,age) values ('"+inputs[0].getText()+"','"+inputs[1].getText()+"','"+inputs[2].getText()+"',"+inputs[3].getText()+")"; st.execute(add); //Execute the add sql …

Member Avatar for nagatron
0
109
Member Avatar for nagatron

Hello to all java programmers I have a java database problem specifically the auto increment. In my MSAccess I have a table named "[B][COLOR="Red"]Confirm[/COLOR][/B]" and in that table I got two fields, the "[B][COLOR="Red"]confirm[/COLOR][/B]" which is set to text and the "[B][COLOR="Red"]id[/COLOR][/B]" which is set to auto number or auto …

Member Avatar for nagatron
0
969
Member Avatar for isebas

You 'D' is supposed to get the total value of your A B and C right? Since 0.6 is a double value. . try to declare the D and G as double because you are passing double values now. [CODE]import java.io.*; public class total {public static input in = new …

Member Avatar for isebas
0
243
Member Avatar for J-Dub

It is simple, let say you have 9 buttons and you want to put action on button1, all you have to do is: [CODE]button[0].addActionListener( new ActionListener() { //Handle event public void actionPerformed(ActionEvent event) { //Your Actions Here..... } } );[/CODE] do the same process on other buttons[0-9].

Member Avatar for mKorbel
0
4K
Member Avatar for yashsaxena

If you want to simply create an EXE just for your PC, you can go to FILE > MAKER "YOU PROJECT NAME".EXE. It will automatically create an EXE file for you which is only for your own PC. If you plan to distribute the application, got to START > ALL …

Member Avatar for faroukmuhammad
0
16K
Member Avatar for nagatron

I would like to know to remove spaces from start and end of a string without removing the middle space. Ex. _ _String _ Sample _ _ = String sample I have a code: [CODE]Text1.text = Replace(Text1, " ", "")[/CODE] The code removes all the space in a text. Ex. …

Member Avatar for AndreRet
0
169
Member Avatar for nagatron

Hello to all, I am always mad about this problem. If I type a name with two words in a textbox like "google corporation" it will be registered in the database ms access as "Google Corporation" now that is okay. What I want is, there should be no duplicate of …

Member Avatar for nagatron
0
226
Member Avatar for nagatron

The traditional way of displaying a file in a fileListBox is by using DriveListBox, DirListBox, and FileListBox. I would like to know how to show files on FileListBox by just using DriveListBox. Let say if I choose C:\, all the files on drive C: with a .ico, .dll, .exe, .ocx …

Member Avatar for nagatron
0
148
Member Avatar for lulus

Create two forms, on form1 put a textbox, label, and button. Copy and paste the code below. You will see a synchronize work. [CODE]Private Sub Command1_Click() Form2.Show End Sub Private Sub Text1_Change() Form2.Label1.Caption = Text1.Text Label1.Caption = Text1.Text End Sub[/CODE]

Member Avatar for AndreRet
0
95
Member Avatar for nagatron

Hello to all, I would like to ask if it is possible to transfer a text from a VB textbox to HTML textbox? If it is, how? Thank you in advance. Regards; nagatron

Member Avatar for AndreRet
0
173
Member Avatar for nagatron

Is it possible to make a program using VB where you let people visit a site and get their IP address and use their IP address to click the link which is inside the site they visit? Ex. My site location is: [url]http://www.mysite.com[/url] And this site contain one link name …

Member Avatar for vb5prgrmr
0
135
Member Avatar for nagatron

Hallo to all, I need help on how to put a radio button on the coordinates I want. . .I have this map program and I want to place the radio button on the specified place on the map. I don't know how. . .I have attached an image of …

Member Avatar for nagatron
0
198
Member Avatar for nagatron

Hallo to all, I have a problem on how to test an existing data from the database. . .I have this registration form which displays an error if the user inputs a username and emai address which already exist in the database. Please help me, I can't find any related …

Member Avatar for nagatron
0
92
Member Avatar for nagatron

hallo to all web developers, I am having this problem. . .what does it mean? This happen everytime I put username and password on my sql database. . .[B]Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'admin'@'localhost' (using password: YES) in C:\xampp\htdocs\sample\index.php on line 2 Access denied for user 'admin'@'localhost' (using …

Member Avatar for nagatron
0
82
Member Avatar for nagatron

I am having a problem on how to count numbers inside text area. . . example: In my text area I have 10 numbers. 12, 06, 31, 22, 53, 28, 96, 71, 10, 47 the the program should count how many 0,1,2,3,4....9 excluding the comma. I don't know how to …

Member Avatar for nagatron
0
115
Member Avatar for nagatron

Is it possible to view the codes of an exe file using VB6 similar to ResourceHack found in google. download link: [url]http://www.softpedia.com/get/Programming/File-Editors/Resource-Hacker.shtml[/url]

Member Avatar for vb5prgrmr
0
280
Member Avatar for nagatron

Hallo to all, I am making an application that will target a particular link in the internet as if some is clicking it. I have a button target. Can anyone help me? please Regards, Neil

Member Avatar for javmedia
0
221
Member Avatar for nagatron
Member Avatar for nagatron

Hallo to all, can anyone help me with my thesis? I need to filter space between character. Ex. If I input: "Jump and Go" a message box will appear saying "Space between character is not allowed." if I input: JumpAngGo or Jumpandgo is are accepted as long as there is …

Member Avatar for javmedia
0
430
Member Avatar for nagatron

I am making a facility reservation system for my thesis. Before making a new facility reservation. . .I need to view all the available facility. Ex: Date: 01/20/09 { Here are the list of available facility displayed in MSFlexGrid } How can I determine if the facility is available? Using …

0
43
Member Avatar for nagatron

Please help me how to ignore case sensitivity in VB. My program is to store data in the database, though I use small letters or big letters, the database store the data starting with a capital letter followed by small letters. Ex. [B]Input[/B][B]:[/B] [COLOR="Red"]Neil, neil, NEIL[/COLOR] [B]In the database:[/B][COLOR="Red"] Neil[/COLOR] …

Member Avatar for nagatron
0
226
Member Avatar for nagatron

Hallo to all VB programmers. . .I need help in viewing database using list. Please help me. . .I have this list of names in the database and I want to view it using listbox. Thank you for the help. . .God Bless Regards, Neil

Member Avatar for jireh
0
90
Member Avatar for nagatron

Hallo to all vb masters, I need help in using the vb calendar. I have textfield where the date will be displayed everytime I click a particular date in the vb calendar. If I click 6 of january 2009 in the calendar, it will display in the textfield the date, …

Member Avatar for debasisdas
0
73
Member Avatar for nagatron

Hello to all, I have a SQL Manager 2007. I don't know how connect MySQL from VB6. Can you help me PLS.... Can you give me a complete process of connecting a sql database? here is the download link of the sql manager i use. [url]http://www.download.com/EMS-SQL-Manager-2007-Lite-for-MySQL/3000-10254_4-10439256.html[/url] pls help me. . …

Member Avatar for debasisdas
0
63
Member Avatar for nagatron

Hallo to all, I have a problem in connecting to MySQL Database on my VB Program. "Can't connect to MySQL Server on 'localhost' (10061)." This is the error I always receive, what seems to be the problem? can anyone help me?

Member Avatar for Teme64
0
81
Member Avatar for nagatron

hallo to all web masters and vb masters out there. I need your help in making my project in relation to VB and web link. Is it possible to detect all the links in a particular web page? I have a button "GO" then I have a 2 webpage "main.html" …

Member Avatar for ali32n70
0
101
Member Avatar for nagatron

Hello to all, I have a problem in connecting VB6 to MS Access 2003. I have tried all the instruction posted here in forum until the message appear every time I run the program "Supplied Provider is different from the one already in use." What does it mean? I am …

Member Avatar for jireh
0
182
Member Avatar for nagatron

Hello to all masters. . .I would like to ask if it is possible to use edit function in database without primary key. Ex. I have a button edit, a two textfields that holds the name and age of a person. If I put 2 same names in the database …

Member Avatar for aparnesh
0
155
Member Avatar for nagatron

The program has a button named [B]INCREMENT [/B] . The label that starts with 0 will increment every time the button is being pressed and save it in a database then so on. . .those being saved in the database will appear in MSFlexGrid. Important part: in MSFlexGrid 1 2 …

Member Avatar for nagatron
0
161
Member Avatar for nagatron

Hello to all, can anyone help me on how to use the "sort" and "refresh" command using MSFlexGrid? Here is the code: |----------------------------------------------------------------------------------------------- [code]Dim WithEvents Con As ADODB.Connection Dim WithEvents rst As ADODB.Recordset Dim cmd As ADODB.Command [B]Private Sub cmdAdd_Click()[/B] chec: Set rst = New ADODB.Recordset 'specifying attributes to this …

Member Avatar for dspnhn
0
196