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!

Exclusively for Visual Basic 6.0 Programmers Only!

nakalimutan mo i-specify kung anong property ang tinatawag mo kay Text1 at Text2 . should be Text1.text :D

ahh kilangan ba pala yun kala ku sa vb.net lang yun enx

ganun parin boss
nelagyan ku po nang adodc1.refresh di napo nag error
 
Last edited:
lagay mo sa procedure ng TEXTBOX mo ay KEYPRESS

VB.Net

Select Case Convert.ToInt32(e.KeyChar)
Case 48 To 57, 8, 46
'numbers and backspace and period (.)
Case Else
e.Handled = True
End Select

VB6

Select Case KeyAscii
Case 48 To 57, 8, 46
'numbers and backspace and period (.)
Case Else
KeyAscii=0
End Select

ang logic dyan chinecheck nun textbox every keypress mo kung anong value ng keystroke mo sa keyascii.. so kung pasok xa dun sa value i-output nia pero kung hindi blanko lang, pede ka din maglagay ng message box gaya ng plano mo

HTH, feedback nalang :salute:



galing bosss galing talga ganda nang ngeti ku hehehehe :salute: :salute: :salute:
 
Mga Bro eto ang concern ko.. nahihirapan kasi ako kung pano ang commands dito.. eto ang scenario:

kelangan ko maDetect yung bandwidth nung every client computers, :noidea: then Administrator Computer naman ang gamit ko.. parang yung program kasi na gagawin ko ay Viewer lang nung current speed nung bandwidth nung internet connection nila per minute or pede din realtime.. kelangan ko mapalabas kahit sa Textbox or sa Datagridview..

kung sino po nakakaAlan sa inyo or kahit Idea lang.. thanks in advanced. :)
 
Re: Exclusive for Visual Basic 6.0 Programmers Only!

tol anu nga ung code para mag glitter?
 
bro pwede pa help naman kahit kunti..panuh ko kaya mpapalabas s isang form ung laman ng data base para iedit..thanks need lang para s thesis..hope matulongan muh ako..note lang bro nbabalabas ko nman s data grid ung laman ng data base need ko poh pg ng press ako ng command button my isang form ulet taz andun ung laman ng database..:pray::pray::pray:


...khit sample nlng ng enrollment system..thankz
:salute::salute::salute:

gawa ka ng query parang ganito

scenario
form1 my txtidnumber ka

sa form2 naman my label ka na name at address

sa form 1 mo
connection variable mo cn
set rs new adodb.recordset
rs.open" select * from tablename where idnuber = '" & txtidnumber & "'", cn, 3, 2
if not rs.eof then
'pag my nakita xa dito
form2.lblname = rs!name
form2.lbladdress = rs!address


else

msgbox" no data found"

end if
rs.close
set rs = nothing


or ganito

pag nasa form1 ka ilagay mo ung id sa form2

form2.lblid= form1.txtid


sa form_activate ng form2

set rs new adodb.recordset
rs.open" select * from tablename where idnuber = '" & txtidnumber & "'", cn, 3, 2
if not rs.eof then
'pag my nakita xa dito
form2.lblname = rs!name
form2.lbladdress = rs!address


else

msgbox" no data found"

end if
rs.close
set rs = nothing

hi boss pde po bang magpatulong?? . meron akong textbox, combobox, at listview.
ung textbox at combobox nag iinput ng names, address, atbp sa listview. ang gusto ko sana mangyari eh ung listview items eh malipat sa ms access database. pwede po ba un?? help naman po thx

ahh kilangan ba pala yun kala ku sa vb.net lang yun enx

ganun parin boss
nelagyan ku po nang adodc1.refresh di napo nag error


check my signature mas maganda ang adodb na gamitin :yipee:
 
penge namn po while loop na program nid lang po tnx sana may mag bigay :pray:
 
baka my system po kau dyan ng atm system penge namn po pls pls sana may mag bigay
 
help naman po kasi kapag nag log-in example yung admin may lalabas na Welcome admin tas kapag guest naman yung mag log-in ang lumalabas pa din Welcome admin pa din help naman kung sino may alam :thanks:
 
Last edited:
mga Idol pa request nman ng code para sa Log In system ko.. na uulol na cu di ko matapos.. :weep:
 
help naman po kasi kapag nag log-in example yung admin may lalabas na Welcome admin tas kapag guest naman yung mag log-in ang lumalabas pa din Welcome admin pa din help naman kung sino may alam :thanks:

paste mo dito yung log-in codes mo.

mga Idol pa request nman ng code para sa Log In system ko.. na uulol na cu di ko matapos.. :weep:

pa link po ng existing program mo.
 
help naman po kasi kapag nag log-in example yung admin may lalabas na Welcome admin tas kapag guest naman yung mag log-in ang lumalabas pa din Welcome admin pa din help naman kung sino may alam :thanks:
Unload Me
Form1.Show
if UserLevel="Admin" then
Form1.lblWelcomeMessage.Caption="Welcome Admin"
Else
Form1.lblWelcomeMessage.Caption="Welcome Guest"
End if
 
Mga sir pahelp naman po sa Filtering ng Data Reports po... ang gamit ko po VB and SQL baka po may sample program kayo maraming maraming salamat po.
 
filtering na ano? sa sql statement?

opo for example..

Borrower ID
Name
Type of Borrower (good, Deliquent)

ilalabas lang po sa Report ung mga Deliquent borrower

pahingi naman po ng sample program sir maraming salamat
 
panu mag connect ng server to client may sample code ba kayo jan like sa cafe manila and dating . . .guys help
 
Back
Top Bottom