Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Libre Gawa System... CODEIGNITER/C#/VB.NET... **PASOK**

TS pagawa po ng JOB ORDER SYSTEM, pwede po ba?
need ko po kasi, :pray: :weep:

or pake pm nalang po ako sa may gusto gumawa please :pray:

:thanks: :thanks: :thanks: :thanks: :thanks:
 
Pahelp po Payroll system. Gamit po ay fingerprint scanner pag ttime in at pag titime out.

1. Visual Basic po programming language
2. Mysql
3. 2 beses po ang time in at time out. una na po matulungN NYO AKO.po ay 7 am to 12 tas 1 - 5pm po ang next. Ang rate po per hour ng isang employee ay 250, saka lang po mag oot pag 30 mins na after 5pm.


Sana po matulungan nyo ako.

09496306675
[email protected]:):clap::yipee:
 
Idol/Boss/Sir, Patulong naman po please?hindi ako marunong mag connect ng POS System sa Access.May nagawa po akong program using VisualBasic 2010,tapos kulang nalang ako ng General Sales of the day which is sabe ng tropa ko need ko daw yun iconnect sa Database...diako marunong e.can you teach me how please?

thankyou in advance... heres my email; [email protected]
 
Hello po. Ask ko lang po kung c# programmer po kayo. Baka po makatulong po kayo samin. Image processing po. Willing po kami magbayad. Thank you po. Godbless :)
 
Sir..pwede po patulong sa php? simple "store inventory system"(tables:customer,order,product and supplier)..with login form po tas nakaka(ADD,DELETE,UPDATE sa database)..:praise:
 
Last edited:
boss kaya muba gumawa ng Clinic management system using vb.net2010,,payroll system,billing system at sales management system....lahat .net....... ng walang SQL sana di ako marunong kapag my SQLserver na our email: [email protected] and [email protected].... pa send nmn oh.........plzzzzzz need sa school ,,,sana myron ka...
 
Last edited:
Pwede po pagawa ng student information system with add, edit, delete, search, print, save, and cancel button. Thank you po! ;)
 
updated pa ba itong thread na ito mukhang di naman nagreresponse yung nagpost nito.
 
TS pwede po bang humingi ng codes for add edit delete search command ..tpos ung codes for connection sa ms TY po
 
Sir pagawa po ng Library Information System
java language
mysql database o sqlyog
Problem/features:
add,insert,delete,update books
borrow/return book
add/insert/update/delete student/user
show report such as fines/acquisitions and etc.

Maraming Maraming salamat po in advance
:pray::pray::pray::pray::pray::pray::pray::pray:
paki send nalng po
[email protected]
 
Last edited:
Nice thread, Pwede din ba tumulong just in-case loaded ka na? No payment din,
consultation lang. kasi gusto ko pag nag turo ako may hands-on din yung gagamit, para pag tinanong sila alam nila ang takbo ng system at alam nila kung panu eto na buo.. :D
 
Nice thread, Pwede din ba tumulong just in-case loaded ka na? No payment din,
consultation lang. kasi gusto ko pag nag turo ako may hands-on din yung gagamit, para pag tinanong sila alam nila ang takbo ng system at alam nila kung panu eto na buo.. :D

Sir pahelp po Anong Programming na application po kaya ang pwede gamten na Gagawa ka ng program na merong server at computer minimum ng 3 rooms. Dapat pwede mo madala sa kahit saan yung computer at instantly...
 
sir patulong po, ano po kaya idadagdag ko dito sa code ko para pag nagsearch ako magshoshow sa datagridview yung sinearch ko sir.
ito po yung code ko sa button search

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim reader As MySqlDataReader
Dim adp As New MySqlDataAdapter
Dim tsource As New BindingSource

Try
mycon.Open()
Dim query As String
query = " select * from db_bis.resident where firstname='" & txt_search.Text & "' "
com = New MySqlCommand(query, mycon)
reader = com.ExecuteReader
adp.SelectCommand = com
adp.Fill(dt)
tsource.DataSource = dt
DataGridView1.DataSource = tsource
adp.Update(dt)
mycon.Close()

Catch ex As Exception

End Try

End Sub


View attachment 324338
 

Attachments

  • Untitled.png
    Untitled.png
    24.4 KB · Views: 4
Pakiayos naman po yung codes sa mga buttons ko. Hirap na hirap na po ako e. Thanks!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Barangay_Management_System
{
public partial class residentRegForm : Form
{
public residentRegForm()
{
InitializeComponent();
}

private void residentRegForm_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'appdata.Resident_Registration' table. You can move, or remove it, as needed.
this.resident_RegistrationTableAdapter.Fill(this.appdata.Resident_Registration);
residentRegistrationBindingSource.DataSource = this.appdata.Resident_Registration;
}

private void btnBack1_Click(object sender, EventArgs e)
{
mainForm f1 = new mainForm();
f1.Show();
this.Hide();
}

private void btnAdd1_Click(object sender, EventArgs e)
{
try
{
residentRegistrationBindingSource.EndEdit();
resident_RegistrationTableAdapter.Update(this.appdata.Resident_Registration);
panel.Enabled = false;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error);
residentRegistrationBindingSource.ResetBindings(false);
}
}

private void btnNew1_Click(object sender, EventArgs e)
{
try
{
panel.Enabled = true;
txtboxRegID.Focus();
this.appdata.Resident_Registration.AddResident_RegistrationRow(this.appdata.NewResident_RegistrationRow());
residentRegistrationBindingSource.MoveLast();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error);
residentRegistrationBindingSource.ResetBindings(false);
}
}

private void btnDelete1_Click(object sender, EventArgs e)
{
panel.Enabled = false;
residentRegistrationBindingSource.ResetBindings(false);

}

private void btnEdit_Click(object sender, EventArgs e)
{
panel.Enabled = true;
txtboxRegID.Focus();
}

private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{

}

private void dataGridView1_Keydown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.Delete)
{
if (MessageBox.Show("Delete this record?", "Message", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
residentRegistrationBindingSource.RemoveCurrent();
}
}

private void txtboxSearch_TextChanged(object sender, EventArgs e)
{

}

private void txtboxSearch_Keypress(object sender, KeyPressEventArgs e)
{
}
}
}
 
Back
Top Bottom