- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
33 Posted Topics
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 other applications use the important port (3306)... i'd no clue at all but then i reconfigure my … | |
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.... | |
Hi to all the experts here, I am a true newbie on bash script and I have a couple of questions need to seek help: 1. What does "safe" delete command script means? I am confused with this statement: Write a "safe" delete command script. Filenames passed as command-line arguments … | |
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 test query, i still manage to view my data, however … | |
Re: [QUOTE=waynespangler;632782]First: In the 24 hour system you will never have a 24. It only goes to 23:59:59 then 00:00:00. So you don't need the if statement. Next: It looks like your dates are comming in in order. I would make my array hold date and count. Then when new date … | |
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 declare it. How can this happened? Any modification on ASPX interface seems doesnt link to … | |
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 the [COLOR="#ff0000"]database[/COLOR], it is used to read the Machine ID for example. … | |
How can i actually initializes a 2-dimensional array ALL to 0? [code]Dim machinecount(,) As Integer[/code] I try using 2 For loops to set it as 0 like the one shown but it gv me an error: [code] For B = 0 To 23 For C = 0 To 4 machinecount(B, … | |
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 | +-----------------------+ | 75 2008/05/16 06:02 | | 75 2008/05/16 06:02 | | 75 2008/05/16 … | |
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 | +-----------------------+ | 75 2008/05/16 06:02 | | 75 2008/05/16 06:02 | | 75 2008/05/16 … | |
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 example: xxxxxxxAxxxxx,xxxxx,xxxxx,xxxxxx,xxxxxx xxxxxxxBxxxxx,xxxxx,xxxxx,xxxxxx,xxxxxx ........ xxxxxxAxxxxxx for table A xxxxxxxBxxxxxx for table B? thanks | |
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 [code]Watcher.IncludeSubdirectories = True Watcher.Filter = "Index.txt"[/code] So that any files with Index.txt will be used. How if i just need the Index … | |
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 created on. [code] If e.ChangeType = IO.WatcherChangeTypes.Created Then txt_folderactivity.Text &= "File " & e.FullPath & _ " has been … | |
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 with the correct username and password, with the data source name. However … | |
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: [code] For Count = 0 To UBound(MyArray) For a = 0 To UBound(MyArray) Dim celNew As New TableCell() 'Dim … | |
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 select several fields that i needed to … | |
to make it easier, i need to loop through all the radio buttons so that it is more manageable, i use the code below: [code]Me.Controls("RadioButton" & i).Checked = True[/code] However, i get this error message: Checked is not a member of System.Web.UI.Page Anyone know what is the problem? Thanks.... | |
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 will be just the text files generated by the machine each hour, so … | |
hi....i create a command button using the code shown below: [code] Private Sub Command3_Click() Form5.Show 'sum action needed here to detect user's action Command3.Caption = "Unhide History" Unload Form5 End Sub [/code] I need to change the caption to unhide history once the user had pressed unhide button | |
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 actualli retrieve the date from MySQL and show in VB 6.0? … | |
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 will be stored at MySQL: [code] blnAddMode = True rs.AddNew … | |
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 sent by (output started at C:\Program Files\VertrigoServ\www\logincheck.php:2) in C:\Program Files\VertrigoServ\www\logincheck.php on line 3 i put setcookie($username, time()+3600); right … | |
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 will be invalid. Any function to detect current date? By the way, … | |
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. [code]Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long ' ' sndPlaySound constants … | |
i'd created a login page, where user need to enter their username and password here, stored in [code] $username = $_POST["name"]; $password = $_POST["password"];[/code] then after submit button being pressed, the username will show in welcome.php, which is the action for the submit button. From here, the user will have … | |
i am new to PHP. instead i learned the basic from w3schools and tizag. i'd created a registration form-like page using php tags, however when i uploaded to a php-based web hosting, i cant see anything..it juz show done in the browser status with blank page. Anyone kind enuf to … | |
i have 1 function shown below: after O won the game, it will call the function below: [code]Private Sub OWins() Do playero=playero +1 loop GameOver = True Call GameIsOver MsgBox ("O Wins!") End Sub[/code] this function will show the player O won the games and reset the game. However, i … | |
I'm doing tic tac toe. I am planning to show the scores of the users and computers using the same form. So, for each time the user or the computer loop, i need to add a timer to it so that it can update the scores. Refer to the source … | |
hi everyone, i'd been creating a tic tac toe game using VB 6.0 and it is working perfectly. And now i have to create a form which allow user to only uses keyboard to control the position of their choices instead of using click() command by mouse. Any method to … | |
hi everyone, i am currently building a webpage for the staff to fill in their form and all the databases will be stored using SQL. And i am juz started with a validation page for the staff. I need to have a external CSS files to do the HTML, but … | |
hi there, i was currently given a task as shown above.... however what i had was juz a small program code (in assembly) between the two.. i need something longer where i can further look into its pipelining, becoz i still need to analyze each of the instruction cycle... Thanks … | |
hi there, i am major in communication, however i still need to handle a short course on computer architecture.. i was recently given a project, to compare the normal and delayed branch. i just want to know is there another name for normal branch or delayed branch? i figured out … | |
i was currently having a big project for my third year course, i was new to computer architecture because i am major in telecommunication. And i need a software that can run simulation on my PC, indicate how the internal routing and we are only able to simulate on hardware … |
The End.