Jump to content
  • Recently Browsing

    • No registered users viewing this page.

Recommended Posts

ask ko lang...which is better in terms of "job-work issue" I mean ano ang mas malakas or yung mas demanding in IT work field....computer programming ba or networking or hardware stuff....system programing...network programming or web programming...etc....ano pwede nio advice...thanks in advance!!!

Link to comment

Wordpress is easier for simpler projects, but is more suited for web sites like forums. Joomla can be used for a wider variety of web sites, but isnt that simple to use and configure. I have used Joomla, and am starting to use Wordpress.

 

thanks for your sound advice Mr_Mister, how about the maintenance cost of the website do adsense work/:rolleyes:

Link to comment

Mga Masters,

 

Pwede nyo ba ako tulungan i-convert itong code from VB6 to VB.NET (2010 Express)? I developed kasi a program for private schools at gusto ko i-upgrade ang code to .Net pero I am having problem sa coding ng ADO to ADO.net

 

Here is the code I use:

 

Public Conn As New ADODB.Connection

Public Rs As ADODB.Recordset

Public Fld As ADODB.Field

Public ConnString

Dim Arr_Enrollees()

Dim Ctr

 

 

Private Sub Form_Load()

ConnString = "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=littleangel_db;UID=pss;PWD=pss;OPTION=3;"

Set Conn = New ADODB.Connection

Conn.ConnectionString = ConnString

Conn.Open

Set Rs = New ADODB.Recordset

Rs.CursorLocation = adUseServer

 

with Rs

Ctr=0

.open "select count(*) from file_enrollees", Conn

redim Arr_Enrollees(.fields("count(*)"), 2)

.close

.open "select * from file_enrollees", Conn

if not .eof then

.movefirst

Ctr=0

do while not .eof

Arr_Enrollees(Ctr, 0) = .fields("enrollees_fname")

Arr_Enrollees(Ctr, 1) = .fields("enrollees_lname")

.movenext

Ctr= Ctr + 1

loop

end if

.close

 

.open "select * from file_enrollees", Conn, adOpenStatic, adLockOptimistic

.addnew

!enrollees_fname = "Juan"

!enrollees_lname = "Calintong"

.update

.close

end with

End Sub

 

 

Sana merong makatulong maka-explain ng simple kung paano ma-convert itong example to VB.Net / ADO.Net

 

Thanks in advance

 

BTW. MySQL pala gamit ko

Link to comment
  • 2 weeks later...
Guest djunya2006

Good morning, sorry in advance kung OT ako, gusto ko lang malaman kung pwede akong makahiram nang full version nang Windows XP. My current OS is Vista which unfortunately will not run the information that I need. Kindly assist me please.

Link to comment
  • 1 month later...

mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)

ano mga pros and cons dto?

sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...

tnx

 

i wrote a software in visual basic 6 using ms access as database. it was not very reliable. sometimes records were deleted without apparent reason.

Link to comment
  • 2 months later...

good morning expert...

hope you can help me with this one...

 

what this code do is that it runs a query base on the variable entered by user...

and from the query result, one of the col must have a urlencode(link) to another .php

 

the problem is, instead that the result of the query will be displayed with link eh ang lumalabas is the assign variable with link..

 

can any one help me?

 

---------------------code----------------------------

<?php

$connect = mysql_connect("localhost","root","") or die ("Couldn't connect");

mysql_select_db("xdb") or die ("Couldnt find db");

 

if (isset($_GET['first']) || ($_GET['last']))

{

$first = $_GET['first'];

$last = $_GET['last'];

$query = @mysql_query("Select * FROM masterlist WHERE last LIKE '$last' && first LIKE '$first%' order by first asc");

 

while($row = mysql_fetch_assoc($query))

{

$valid = $row['archive_desc'];

$hhid = $row['hh_id'];

$por = $row['Poor'];

$fn = $row['first'];

$ln = $row['last'];

$mn = $row['mid'];

$ext = $row['ext'];

$bday = $row['birthday'];

$rel = $row['relationship'];

$city = $row['city_name'];

$brgy = $row['brgy_name'];

$datin = $row['Date Interview'];

$prov = $row['prov_name'];

$respo = $row['Respondent'];

 

echo '<tr><td><a href = "family_comp.php?hhid = ' . urlencode($row['hh_id']) . '"/a>$hhid</td><td>$valid</td></tr>';

 

?>

----------------------end of code------------------

Link to comment

mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)

ano mga pros and cons dto?

sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...

tnx

 

Any reason why you want to use Access as the front end? I think you'd be much better off with your own PHP-based web app for that.

Link to comment
  • 2 weeks later...

mga bro, sino nka gamit dto ng MS ACCESS (as Fornt end) MySQL (back end database)

ano mga pros and cons dto?

sa napansin ko ung image dko ma retrieve sa MS ACCESS as front end...

tnx

 

I was just wondering kung bakit MySQL ang pinili mo for back end database. I am using MySQL for web-based database programs written in PHP but requires installation of PHP and other server software.

 

Kung single desktop user lang naman, have you tried using MSDE 2000 or yung Microsoft SQL Express as your backend.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...