User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 374,508 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,817 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 59
Search took 0.01 seconds.
Posts Made By: evios
Forum: VB.NET 31 Days Ago
Replies: 3
Views: 161
Posted By evios
Re: [Urgent] Timing Allocation Problem

Ya, U are right. Now i already simplify my coding to the format below:
I need to allocate the 24-hour time selected by the user to an array of size 24, for example, If the user choose 2day 8AM until...
Forum: ASP.NET 32 Days Ago
Replies: 2
Views: 174
Posted By evios
Re: Not declare???

In my error list, it states that

'Context' is not a member of '_Default'.

And in my first line of ASP.NET, i found this:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb"...
Forum: ASP.NET 32 Days Ago
Replies: 2
Views: 174
Posted By evios
Not declare???

Em, i'd used ASP.NET for 1 month, but recently when i drag a control on .aspx interface, says DropDownList9, and in aspx.vb interface, i try to type DropDownList9, but it keeps saying i did not...
Forum: VB.NET Jun 3rd, 2008
Replies: 1
Views: 271
Posted By evios
Select Case problem

Lets say now i want to use Select Case For some purposes as shown below:

Here, i have two arrays, One is called strmac() and another one is mac().

strmac() is used to store the variable read from...
Forum: VB.NET May 28th, 2008
Replies: 2
Views: 330
Posted By evios
Re: Initializes 2 dimensional array

solved..thank You so much....reputation given...
Forum: VB.NET May 27th, 2008
Replies: 2
Views: 330
Posted By evios
Initializes 2 dimensional array

How can i actually initializes a 2-dimensional array ALL to 0?

Dim machinecount(,) As Integer

I try using 2 For loops to set it as 0 like the one shown but it gv me an error:


For B = 0...
Forum: VB.NET May 20th, 2008
Replies: 0
Views: 155
Posted By evios
get specific data syntax

Hi, i am new to MySQL:
Lets say now i have a database, within that database, i have one column named "TEX", and the format of the data are as shown below:
+-----------------------+
| TEX...
Forum: VB.NET May 20th, 2008
Replies: 0
Views: 125
Posted By evios
get specific data syntax

Hi, i am new to MySQL:
Lets say now i have a database, within that database, i have one column named "TEX", and the format of the data are as shown below:
+-----------------------+
| TEX...
Forum: VB.NET May 15th, 2008
Replies: 5
Views: 352
Posted By evios
Re: detect character input

solved..thanks mate...
Forum: VB.NET May 14th, 2008
Replies: 0
Views: 253
Posted By evios
watch certain files within certain folder

I'll try to explain what it means:

I have many folders and within folders, there are another folders with files inside. So to make things easy, i set
Watcher.IncludeSubdirectories = True
...
Forum: VB.NET May 14th, 2008
Replies: 5
Views: 352
Posted By evios
Re: detect character input

i knew what i am doing..onli either A or B within that string...thanks
Forum: VB.NET May 13th, 2008
Replies: 5
Views: 352
Posted By evios
detect character input

Erm, how can i actualli detect certain word in a string so that i can accordingly insert them to the separate table in the database? For...
Forum: VB.NET May 13th, 2008
Replies: 1
Views: 331
Posted By evios
get number of rows from MySQL

Hi everyone, how can i get the updated number of rows from MySQL? Because i need the syntax to do the calculations on the number of inputs, thanks....
Forum: VB.NET May 11th, 2008
Replies: 0
Views: 234
Posted By evios
cross thread operation invalid

I get this error message when i create a new file: (using filesystemwatcher() )

Cross thread operation not valid: Control 'txt_folderactivity" acessed from a thread other than the thread it was...
Forum: ASP.NET May 8th, 2008
Replies: 4
Views: 427
Posted By evios
Re: split string to table

good...thanks first, lets say i have this randomized text file:
RFG678,1PASS,2FAILED,FGYIJUH,324,5,6,7
RF34S8,1PASS,2FAILED,FGYIJUH,324,1,6,6
.........
and i use the code below:

Dim strContents As...
Forum: MySQL May 8th, 2008
Replies: 2
Views: 444
Posted By evios
ODBC configuration

Well, i am facing this problem when i try to configure my ODBC 3.51 Driver.
I had successfully installed MySQL. Then i try to install and configure my ODBC 3.51 driver. I add a new user DSN, filling...
Forum: ASP.NET May 8th, 2008
Replies: 1
Views: 186
Posted By evios
big project need some guidance

Basically i am having a big project, my idea is like this:
From a text file, i need to rename the .txt extension to .csv, so that i no need to split line by line. Then, from the excel file, i need to...
Forum: ASP.NET May 7th, 2008
Replies: 4
Views: 427
Posted By evios
Re: split string to table

Some how it just separate the string by comma, adding cell by cell and then repeat, look like this:


XXX XXXX XXXXX XXXXX XXXXXX
XXX XXXX XXXXX XXXXX XXXXXX
XXX XXXX XXXXX XXXXX ...
Forum: ASP.NET May 7th, 2008
Replies: 1
Views: 229
Posted By evios
Re: dundas chart help

I already solved it. Thanks aniway
Forum: ASP.NET May 7th, 2008
Replies: 4
Views: 427
Posted By evios
split string to table

Erm, how to split a string using comma separated into a table? Below is my code but the output seems weird:
Lets say the row has 40 elements and 30 rows:

For Count = 0 To UBound(MyArray)
...
Forum: ASP.NET May 7th, 2008
Replies: 1
Views: 229
Posted By evios
dundas chart help

erm, hi everyone, i am working on chart using dundas chart, i already load the .dll file to the toolbox, drag it for its control, load the .mdb file as well for the data source, and when i try to...
Forum: ASP.NET May 4th, 2008
Replies: 1
Views: 309
Posted By evios
not a member of System.Web.UI.Page

to make it easier, i need to loop through all the radio buttons so that it is more manageable, i use the code below:

Me.Controls("RadioButton" & i).Checked = True

However, i get this error...
Forum: ASP.NET May 2nd, 2008
Replies: 1
Views: 245
Posted By evios
data to graph

Hi everyone, i am a newbie in ASP.NET. I currently working with tonnes of data obtained from the machines, by means to categorize it and display it in the form of graph and chart. The data source...
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008
Replies: 2
Views: 326
Posted By evios
same command buttons but 2 actions

hi....i create a command button using the code shown below:

Private Sub Command3_Click()
Form5.Show
'sum action needed here to detect user's action
Command3.Caption = "Unhide History"
Unload...
Forum: Visual Basic 4 / 5 / 6 Apr 1st, 2008
Replies: 2
Views: 473
Posted By evios
retrieve data from MySQL

hi to all the experts here, i am facing a minor problem.....
i ady established the connection from VB6 via ODBC to MySQL and all the data needed has been passed to MySQL perfectly. But then how do i...
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2008
Replies: 2
Views: 240
Posted By evios
ODBC small bug need help

hi...i am working on visual basic 6 and i need to pass the value to the database MySQL via ODBC, it is working fine juz leaving a small bug here, the code shown below:
If player X wins, data below...
Forum: MySQL Mar 19th, 2008
Replies: 9
Views: 1,772
Posted By evios
port 3306 being used

I'm currently working on my project. I use Vertrigo as my virtual server. However recently i always see this message when i use it....
MySQL database server does not work correctly. Check whether...
Forum: PHP Mar 18th, 2008
Replies: 4
Views: 334
Posted By evios
Re: setcookies ()

oh..thanks, i not even notice about that also. So the cookies had been set with $username and timeout 1 hour.....Then from this page, i click to another page, using the same syntax for set cookies ()...
Forum: PHP Mar 18th, 2008
Replies: 4
Views: 334
Posted By evios
Re: setcookies ()

hey..is you..hihi...
well, i setcookies() right after the user had logged in and the variables pass to the page shown below, i put it at the top right after <?php.....


<?php
setcookie($username,...
Forum: PHP Mar 18th, 2008
Replies: 4
Views: 334
Posted By evios
setcookies ()

just wanna ask..if session cant be use, i try setcookies() to get the variable pass through the pages, however i get this error message:

Warning: Cannot modify header information - headers already...
Forum: PHP Mar 17th, 2008
Replies: 1
Views: 404
Posted By evios
expired date validation and session

hi...i am doing form for bill redemption, and juz wanna ask is there any function in php used to check for expired date? like current month is march, if user enter due month to be january, then it...
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2008
Replies: 3
Views: 807
Posted By evios
Re: play music background

thanks..it works...how about MP3 files? i face a problem here, i need to play certain type of WAV file when any function is being called. And within that function i need certain event run with the...
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2008
Replies: 3
Views: 807
Posted By evios
play music background

i'd created a game, now thinking of adding background music to it, however i'd tried the codes below..n unsuccessful, anione know what is the mistakes? Thanks a million.

Public Declare Function...
Forum: PHP Mar 3rd, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

yaya..i already modified the path that store the files. And i do have the enctype at my HTML
<form enctype="multipart/form-data" action="upload.php" method="POST">
<input type="hidden"...
Forum: PHP Mar 3rd, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

well, after settled that things, now i came across for the upload things. My upload.php as shown below:
<?php
$uploaddir = 'C:\Documents and Settings\evan\Desktop\ALL pHP\';
$uploadfile = $uploaddir...
Forum: PHP Mar 2nd, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

got it...yeah!!! thanks nav33n and silviuks...
Forum: PHP Mar 2nd, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

well, the variables are assigned within the form:

<form method="post" action="welcome.php" >
<p><label for="name">Username:</label> <input type="text" name="name"></p>
<p><label...
Forum: PHP Mar 2nd, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

well, the prob still exist..i try to upload my welcome.php for references....

my index.html codes shown below:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0...
Forum: PHP Mar 2nd, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

well, i juz need to pass variables and show it in another page...
before tht i ady success pass the variable to the 2nd page..however it cant pass to the 3rd page..do u hav simpler code for it...
Forum: PHP Mar 1st, 2008
Replies: 19
Views: 1,443
Posted By evios
Re: pass variables across pages

so do you mean like this?



<?php
session_start();
$username = $_SESSION['name'];
$password = $_SESSION['password'];
$status = $_SESSION['status'];
?>
Showing results 1 to 40 of 59

 
All times are GMT -4. The time now is 2:19 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC