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!

VB.NET Programming Corner!

sir may idea po ba kayo tungkol sa pagcheck kung nadedetect, nakaconnect, or actions na pedeng gawin sa modem?

may mga nakita akong sample codes and projects sa web pero vb6 sya and hindi nya nadedetect yung modem ko though naka connect naman ng maayos yung modem ko..

kaka-search ko sa web ng solutions regarding sa prob ko.. napadaan ako dito sa symbianize XD

sana po matulungan nyo ko :D
 
@sir eric: sir baka pedeng bigyan mu kame ng idea about class Library and console application.. para san po ba ginagamet 2ng mga to?

try ko gumawa pag di na busy
 
sir may idea po ba kayo tungkol sa pagcheck kung nadedetect, nakaconnect, or actions na pedeng gawin sa modem?

may mga nakita akong sample codes and projects sa web pero vb6 sya and hindi nya nadedetect yung modem ko though naka connect naman ng maayos yung modem ko..

kaka-search ko sa web ng solutions regarding sa prob ko.. napadaan ako dito sa symbianize XD

sana po matulungan nyo ko :D

pwede mo i query ang modem similar sa Modem Diagnostics sa control panel
just send AT Commands like
AT+CGMM
AT1
AT2
AT3

dapat sasagot ng OK yan, if not then wala kang modem
 
sir may mga sample programs or codes po ba kayo ng paggamit ng at commands and/or pagconnect ng modem through vb.net? :D

salamat po sir :D
 
sir may mga sample programs or codes po ba kayo ng paggamit ng at commands and/or pagconnect ng modem through vb.net? :D

salamat po sir :D

for the meantime
Search System.IO.Ports
in vb.net, nandun lahat ng commands
 
sige sige po sir thank you po.. ttry ko muna tong mga to :D salamat
 
master eric patulong naman po sa project namin..we will be creating a clock...sample codes naman po...hindi pa po kasi ako marunong gumamit nang timer....:pray:
 
master eric patulong naman po sa project namin..we will be creating a clock...sample codes naman po...hindi pa po kasi ako marunong gumamit nang timer....:pray:

anong clock? analog o digital?

Timer is the simplest object kasi iisa lang ang event syan at konti lang ang properties

ginagamit yan if you want to perform a specific action every specific number of time

for example mag message every minute, mag run ng computation every 30 minutes and so on.

Just set the interval in milliseconds
then mag fire na yung Timer1_Tick Event every interval

ibig sabihin Every x interval ay ma call yung Timer1_Tick Event

Timer1.Interval = 100

'what ever code na nandito ay ma execute every 100ms
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Label1.text = DateTime.Now.Tostring("hh:mm:ss")
End Sub


kung gusto mo ng analog na clock then be ready:
learn how to translate your time into a location sa isang circle, using pi, sine and cosine, so dapat may trigonometry ka dito

for example
1:00pm angle is how many degrees from the center?
hour palang yan, pano yung minutes?

sa time din dadaan yan so that every interval you can update the clock

try mo to, sana di lang kopya, aralin mo rin kung papano ginawa
http://www.vbdotnetheaven.com/Uploa...T04212005032826AM/VirtualClockinVBdotNET.aspx
 
how to use POP or IMAP using VB.NET .. :noidea:

madami sa net kaso puro hindi free.. :D
 
@sir ericgmejia
meron ka bang sample code using crystal reports na may kasamang filtering?
 
master... tulongan niyo po ako sa pag set.. ng intervals between minutes and seconds di ko kasi alam ang pag set.. we use vb.net2003 pala... thanks
 
@sir ericgmejia
meron ka bang sample code using crystal reports na may kasamang filtering?

gumamit ka ng selection formula sa report mo
hanap ka ditp ng samples
https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
just select your version.

personally di ko na ginagamit yan kasi i push my data to crystal reports using ADO and XML

yung lumang style kasi is to make Crysal Reports "PULL" data from the server an filter it.
ibig sabihin, si Crystal ang magcoconect sa database at kukha ng data, tapos i filter mo lang ang data using record selection formula.

what i do is to use ADO.NET get the data i need using my own SQL query, then "PUSH" it to Crystal, thereby i display nya.

so Crystal will be unaware of the database,
problem solved sa pag set ng location ng db
 
master... tulongan niyo po ako sa pag set.. ng intervals between minutes and seconds di ko kasi alam ang pag set.. we use vb.net2003 pala... thanks

explain mo kung ano ang kelangan mo po
baka kasi pag set lang yan ng minutes sa alarm clock mo sa bahay

be clear po sa question para maiwasan ang pabalik balik
sayang ang oras
 
Sir, patulong naman po....

Kung gagawa ako ng Raster Image Processor Software, ano ba mga topics na dapat kong matutunan...?

Tnx
:pray::pray::pray:
 
ito po ang sa amin...dapat after 60 seconds magmove yung minute hand then after 5 minutes magmomove naman yung hour hand...masyado kasing kuplikado yung ibinigay ninyo po sa akin na link...gumamit po kasi kamo nang timer...nagawa napo namin ang seconds sa minute at hour hand na lang...pls help poh...thanks....:help:
 
wow ayus itong thread na ito.. .Net Dev me din using SQL2K at 2005.. sana makatulong ako sa mga magpopost dito : )
 
Sir, patulong naman po....

Kung gagawa ako ng Raster Image Processor Software, ano ba mga topics na dapat kong matutunan...?

Tnx
:pray::pray::pray:

ano gusto mo malaman sa RIP?
nasa google naman lahat yan e

sa akin kasi i just use a 3rd party software lalo pag pang commercial ang program mo

matagal kasi kung ggawa ka ng sarili mong program para dyan
so para madali just use activex like sa LEADTOOLS, madami sila activex for image processing

perokung gusto mo aralin ang RIP then medyo mahabang aral yan and you better learn C# at System.Drawing na namespace
 
Back
Top Bottom