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!

may naisip ako master ace about dun sa timer na 30 days lang...

dapat dalawa ang ichecheck ng application para kahit pag naedit nila yung version.ini at hindi nagmatch yung time sa isa pang file eh automatic end ang subscription nila :D

I think di na.. try niyo tong program na ginawa ko..

it resumes time kahit na mag off kayo ng pc(di dapat nakadeepfreeze), at kahit na iclose niyo program.


SEE ATTACHED FILE!
 

Attachments

  • Ace_1989.zip
    5.6 KB · Views: 11
may dalawa po akong tanong,.
1. may module po ba kayo o kaya code na nag didisable ng close button ng MDI parent form?
2. Tapos paano ba idisable yung resizing ng bawat column ng listview,.?
Thanks po sa makakatulong
 
I think di na.. try niyo tong program na ginawa ko..

it resumes time kahit na mag off kayo ng pc(di dapat nakadeepfreeze), at kahit na iclose niyo program.


SEE ATTACHED FILE!

nyahaha master ace kita ko pa din kung paano ginawa mo eh :rofl::rofl: meron kasing iba masyadong advance talagang gagawa at gagawa ng paraan para makita yan :D
 
may dalawa po akong tanong,.
1. may module po ba kayo o kaya code na nag didisable ng close button ng MDI parent form?
2. Tapos paano ba idisable yung resizing ng bawat column ng listview,.?
Thanks po sa makakatulong

eto sa module

Option Explicit

Private Declare Function GetSystemMenu Lib "user32" (ByVal hwnd As Long, ByVal bRevert As Boolean) As Long

Private Declare Function GetMenuItemCount Lib "user32" (ByVal myMenu As Long) As Long

Private Declare Function RemoveMenu Lib "user32" (ByVal myMenu As Long, ByVal nPosition As Long, ByVal wFlags As Long) As Long

Private Declare Function DrawMenuBar Lib "user32" (ByVal hwnd As Long) As Long

Private Const MF_BYPOSITION = &H400&
Private Const MF_REMOVE = &H1000&

Public Sub DisableXButton(Form1 As Form, Optional DisableButton As Boolean)

Dim myMenu As Long
Dim myCount As Long

If DisableButton Then ' Disable the X button
myMenu = GetSystemMenu(Form1.hwnd, False)
myCount = GetMenuItemCount(myMenu)

Call RemoveMenu(myMenu, myCount - 1, MF_REMOVE Or MF_BYPOSITION)

DrawMenuBar Form1.hwnd
Else
GetSystemMenu Form1.hwnd, True 'Enable the X button

DrawMenuBar Form1.hwnd
End If

End Sub

eto naman sa command1 button

DisableXButton Form1, True 'Disable X Button

eto sa command2 button


DisableXButton Form1, false 'enable X Button

:clap::clap:
 
nyahaha master ace kita ko pa din kung paano ginawa mo eh :rofl::rofl: meron kasing iba masyadong advance talagang gagawa at gagawa ng paraan para makita yan :D

di na yun kita sis if installed na yung program sa program files.. shortcut na lang yun sa desktop.

Possible upgrade:
Pwede mo eencrypt yung output dun sa ini file.. tapos pwede pa edecrypt yun ng program pag running na
 
Last edited:
di na yun kita sis if installed na yung program sa program files.. shortcut na lang yun sa desktop.

Possible upgrade:
Pwede mo eencrypt yung output dun sa ini file.. tapos pwede pa edecrypt yun ng program pag running na


hindi ako marunong mag encrypt at decrypt eh... yan ang gusto ko matutunan parang sa wi-free ^_^:clap::clap::clap:
 
mga ka symb...pde pa help po about sa CPU Scheduling na Round Robin...naco2nfuse kasi ako eh...thnx po sa help...need ko lang po tlga...
 
I think di na.. try niyo tong program na ginawa ko..

it resumes time kahit na mag off kayo ng pc(di dapat nakadeepfreeze), at kahit na iclose niyo program.


SEE ATTACHED FILE!

wew..galing sir ah.. :clap: kung xpired na sir,panu nman irenew?pahingi nmn po nung source code sir :pray:
 
paHelp naman po jan bwt sa Fibonacci Series..
meron akong isang command button para sa compute tpos label naman para sa answer..everytime na ngcclick ako ng command button at tsaka may answer na dun sa label ung bagong answer nadadagdag lang dun answer sa last kong kinompyut ?ang kaylangan po kasi marreset yung answer everytime magkCompute? help naman po ..
 
` sir ace.. im back.. paturo naman po kahit simpleng gui... plsss i thathanks ko every post mo basta turuan mo ko :boogie:
 
paHelp naman po jan bwt sa Fibonacci Series..
meron akong isang command button para sa compute tpos label naman para sa answer..everytime na ngcclick ako ng command button at tsaka may answer na dun sa label ung bagong answer nadadagdag lang dun answer sa last kong kinompyut ?ang kaylangan po kasi marreset yung answer everytime magkCompute? help naman po ..

private sub commandbutton_click()
if label.caption <> "" then
label.caption = ""
answer here....
end if
end sub

or eto

private sub commandbutton_click()
if label.caption = "" then

else
label.caption = ""
answer here....
end if
end sub

:clap::clap:
 
Meron po ba kayo naittabing Student record keeping system?? :noidea:
thanks po sa magbibigay!
 
Meron po ba kayo naittabing Student record keeping system?? :noidea:
thanks po sa magbibigay!
 
patulng ako sa datareport ko di ko kasi ! alam kung paano pag hiwalayin eh sa iisang database mag ksama na sila pag gusto ko i pa run yung contractual sumasama yung regular ano kay aproblema nun mga boss. sa query inayos ko na rin nag loloko parin:help:



thanks salahat ng tumulong hit ko thanks salamat
 

Attachments

  • datareport.bmp
    486.1 KB · Views: 6
Meron po ba kayo naittabing Student record keeping system?? :noidea:
thanks po sa magbibigay!
try m tignan signature ko bossing for video ng add edit search delete

patulng ako sa datareport ko di ko kasi ! alam kung paano pag hiwalayin eh sa iisang database mag ksama na sila pag gusto ko i pa run yung contractual sumasama yung regular ano kay aproblema nun mga boss. sa query inayos ko na rin nag loloko parin:help:



thanks salahat ng tumulong hit ko thanks salamat

gawa ka nlng ng field na status lagay mo contractual or permanent
dim x as string
x = contractual
tapos select * from tablename where status =' " & x & "'"

try mo nlng nawala kasi lahat ng installers ko heheh naformat ko hindi kopa na try yan :rofl: pag gumana dont hit thanks. iba kasi trip ko :rofl:
 
try m tignan signature ko bossing for video ng add edit search delete



gawa ka nlng ng field na status lagay mo contractual or permanent
dim x as string
x = contractual
tapos select * from tablename where status =' " & x & "'"

try mo nlng nawala kasi lahat ng installers ko heheh naformat ko hindi kopa na try yan :rofl: pag gumana dont hit thanks. iba kasi trip ko :rofl:

haha :lol: idol saan ko ilalagay yan? sa pinaka button ng print?
 
Back
Top Bottom