Skip to main content

Posts

Showing posts from 2006

the date is 15th January 2007

i'm gonna be practicing my skill and go for a MS certificate, never thought about it before since my opinion is just wasting money coz we need to renew it again and again but somehow if we got those certificate, the company also willing to 'pay more' for it.. of course it doesn't make sense if that not happened ;) ok.i'm gonna learn as much as i can (without being stress :D) for the new job..hopefully again i'm achieved something from it bye for now

found a new job

well after some times considering to look for a new job and also after sometime meet company for an interviews...i finally receive a new job that offer me from Inti Data Utama, IT consultant regarding the job desc, i become a part of team programmer that make program of implementing other progs from the broad (Epicor for precise) for detail of it, i'm not sure..what i sure is i must earn MS certificated ASAP coz it's one of the condition for my new employment using .net i think.. i will get some MS training too, so i can develop my skill one step further..never thought will be go for training again since i personally doesn't like..but one told me that it is (the Certificate) are the first impression that others see..:D well goodluck for me :D

back again..

well22 programming life is too dificult :Sad: but why i live with it.. well incase anyone interest..all of these days i spend my time developing 'right' program so i don't have to start it all over again.. but wasting my time to do the 'right' one.. not sure what to do..when i thought i step forward..i discover some thing new to implement and makes me start over again.. just like yesterday..i found MS enterprise library which consist Application Block like Data, Security, etc it makes programmer's life easy since the code already encapsulate in it..but well something new to learn for AGAIN!!! aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa but today i'm gonna play badminton..so not sad at all :D see u

don't close ur eyes for other opportunity

a.k.a don't be afraid to learn something that different from u educational background or totally different u can try that for ur job, u neverthought what it may comes..proably that the one that makes u an independent one.. it's my related that told me so..and he is a succesfull person meaning he isn't tell teory but he act upon what he told me :D

the Web is suspended

yes i'm not working with it anymore since i'm don't understand what most of it (the code) now i learning from start again my 1st concern is regarding Security..hope i'm in right direction now good luck to me :D

.NET confusing again

the title cause by not explained well the error that caused it when displaying Datagrid :( took me an hour to resolve this.. only missing a piece of code -> DataKeysField = "Column_ID" otherwise the datagrid won't update, delete well i now frustating by other problems too..why it won't displayed correctly,means..the displayed is beyond the screen resolution width..not sure what to change or put ..been trying this for 2 days :( anyone???

HTML a href tag

just found out what this means < a href="#SectionName" /> i thought is some kind of special HTML "code" like tags that only web pages could understand but i'm wrong (this what happened when u just copy paste others code :D) well it somehow said (for u only, i translated into my languange) "go to that #SectionName" means if u #bottom at above code, it move to #bottom section..what? i don't have any section call like that, how to make a section? this is the important part, in order to have section u just need to have < a name="SectionName" /> at any part of ur HTML tags..for example above just add a < a name="top" href = "#bottom"/> to bottom < table ... > ... < / table > < a name="bottom" href = "#top"/> to top that's it..amazing right? i'm amazed :shy: PS: don't forget to move the extra space at the quote block..since if i omit it..it won't displa

frustating Web

been a while (again :D) since my last post.. well the Web is in slow progress since i've decided to make something new but i ended up with nothing then i decided to follow the e-book again until i learn something new.. the list is too long to describe what i want to do with it.. see u soon..not with frustating title :)

get out from ur 'comfortable line'

well it's weird that we can learn new thing from something that even we never imagine gonna learn from, well at least that's what hapenned to me :D yesterday, hm..maybe the day before yesterday i read a mags call Amagram which come from Amway (maybe u already familliar before) there's a section where people that emerald above i think can write their opinion..something that interest me is from i forgot but i remember see them at BBS(abbreviation of something :D) where they just being first emerald or something, the way they tell story is funny..:D well anyway..it said that we must leave or line of comfortable so we can achieve something that we never imagine before..(or something like that..) if i take picture of myself it that position i think i found an answer why i have such hard time leaving my present job eventhough i got well maybe 3 interviews from 20 jobs i proposed :D i got so comfort now in my office where i get paid eventhough i didn't do anything meaning not

Page_Load issue (make me stress for 3 days)

well it's usual if u have Page_load event at for ur web page, it might look something like this Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) handles Mybase.Load ... End Sub it won't be a problem if u .NET handle everthing for u..for example it would displayed an error page with all those stuff that only developer that fine with it.. it'll be a trouble if u want to display ur own error description(if ur page is inherited by ur own page base class that will handle the error more elegantly) the key is to addHandler at page init event for each Page that inherits from the Page Base Class(will occured before page being displayed) and remove those bold area it will look something like this Private Sub Page_Init( _ ByVal sender As Object, _ ByVal e As EventArgs) _ Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. AddHandler Me.Load, A

the Web so far

my head is very very full after yesterday and the day before yesterday 'playing' with __doPostBack Javascript..o no..full of code at my head now well using that in plan to do some processing from the ClientSide script to ServerSide script so ex: i want to validate the Date that user entered before it saved to database.. sso the scenario is something like this: i have three HTML textbox (say DayText, MonthText, YearText) to input DateOfBirth so my planned were used ValidateDate Javascript function to assign the three value to HTML input hidden then call ValidateDate Server side function(or code behind) and use those three HTML input hidden and validate to see if current DayOfBirth is valid or not..(guess what happened if naughty user entered 30 - Feb - 1980) but i make it a hard way and it ended up nothing.. just use tag or HTML textbox then add runat=server id=textboxid tag and u can use it all along at the code behind or if u want to clear text at WebServer textBox when got f

the Web

the progress is now i've reach the account management system well just started making the Database, Table, SPROC and also the Data Tier for Accounts well new progress..after a while it already have Configuration, and now begin to the detail of the web like Pages (.aspx)..now i'm still working for Account Registration.. well most of the time is just doing copy and paste the code behind it..:D but i kinda learn someting too..now i understand about .css and HTML tag :D..thank God there's something that i found from this one :D well hopefully i be able to do without copy paste it soon.. see u

__doPostBack

yes it is javascript function..eventhough i never used any but it used at my web.. it act amazing (well i'm still new :D) to me the __dopostback (with 2 underscore at front) is like a function that call an ID of an control (.NET in my case) so it can execute the code behind those control ex: i have one link button that with ID 'Delete' and a javascript function that would prompt user wether he/she want to delete it and also Delete_Click sub at code behind function Delete() { if (confirm( 'Do you want to delete the selected folder(s) and/or file(s)?')) { __doPostBack('Delete', ''); } } and a linkbutton that call Delete_OnClick sub at the code behind page so it works like this: 1. it will executed the javascript function, prompt for "Do u want bla222" 2. if already confirm then it will search for a control ID and execute the event for coressponding control..since it only have OnClick event in my case so it execute the

the Web progress ...

well..it moving fast..well at least i'm learning fast coz found a great e-book call ASP.NET Website Programming :Problem,Design,Solution Wrox Press which cover problem, design, solution..not indeep explained but u can work it out while making a progress since it cover technique that i never imagine before and also it using N-tier approaching :D the Web is now can transfrom XML to perform CSS using XSLT..great technique since it reduced time to develop new CSS if u want any changes made but the trouble is now..i'm stuck at the code since i'm never imagine .NET can do that :D..not progress enough at the code yet..but well i'm still learning..newbie :D must learning again..bye for now PS: if u have a time then read the book, great information in there

..not a good yesterday..

indeed..yesterday is our independence day, eventhough i'm not crazy about it but it gave me a holiday so i love independece day :D yesterday i fill it with playing popular Warcraft mods call DoTA against my university mate.. well too save a line..i'll say i died often, my friend improve alot..well game is about winning and losing right? hehe.. i must admit..i play horrible, can't improve..not sure why..just being stupid i think :D well..it will give me sometime to play it again with my friend..until i improve? naaa..until i have time again.. i'll revenge :D Beyond Godlike!!!

feel Stiff

my body fell stiff after play badminton yesterday..well it's been along since i feel like this :d and it's a great feeling.. exercise is great for health..that's for sure.. need to find exercise to replace usual badminton that i didn't play again because of not much people that play in my group..too bad.. well today i'll meet Her and also meet my nephew nik, while nadia already at my house since wednesday because her father, ko william is taking an eye operation to remove his katarak.. well good to hear that he's ok after it.. ok..until then again..gonna download2 more :D

the Web

i don't understand why it took me long enough to finished this project. i recall that when i do my thesis for Undergraduate at my University..it just takes 1 month to finished all but it doesn't see all aspect in term that it can't 'growth'..if it need to be growth, it must re-program again.. at least the one that i develop now is can be growth :D..cross my finger.. i manage to create Member Registration now..need tweak a bit.. later i plan to develop using Datagrid to view member's info not interesting issue that i found :D well22..until then..

.NET Mapping

well i have an issue regarding using different location for IIS to map ASP.NET project so i found a solution for it and it really simple in an order: 1. create virtual directory at IIS and map the local path to ASP.NET project folder 2. in ASP.NET project folder..find web_project_name.webinfo and open it using Notepad..and change the path after localhost to new virtual directory name u've created in step 1.. or # Web-share the Web Folder by doing: * Right-click on the Web folder in Windows Explorer, and select Properties * Click the Web Sharing tab * and select Share This Folder Ensure that the Alias reads the name for the Web ex: if u plan to use //localhost/myWeb then the Alias is myWeb * Set execute Permissions for the application by selecting the radio buttion in the application permission section of the dialog box. It makes it easier to hack around with the site if you also check Directory Browsing * Click OK * Click OK again easy right? :D

the WEB

well i decide to do it via 'my way' since i can't go on using earlier method that i mentioned.. the problem is i stuck with other's method that i took as example..can't creative i think so i create the new one..using only 3 tier approach :D.. using Class instead DataSet.. the code is proably fine..the UI is kinda stuck..the HTML Table that i used is not 'cooperate' with me..i need to make the size manually like click and drag so it can work like i want to..can't auto resize or something like that :( ok..until then

is it wrong to be a protective person?

yes i'm kinda a pushy guy in meaning that if i found something that according to me is not right..then when i see someone that doing it, i tend to say that it's not right..dont do that until they change their mind.. well guess is not right to do that..but what if what i say is not right is really not right? so that other person must experience it without me saying something?? what if it's related to the one that i care about? plz if anyone can give some advice on this one..leave a comment or email me at erickwidya"at"yahoo"dot"com (without the double quote) with the blogger's subject so i can understand where it comes from until the time comes..i stay with what i said earlier, perhaps with not so pushing :D well..i'm not a perfect person..

indonesia indonesia

http://www.detiknews.com/index.php/detik.read/tahun/2006/bulan/07/tgl/24/time/153722/idnews/642129/idkanal/10 according to that news..it's said in the last line that 'it's commonplace when achievement student is get finance from other countries' that's explain why indonesia is so far in many aspects from others the One that supposed to be superior in this country is go to others and it is common place.. i don't understand how the government work...very sad to read it..

.ASP.NET

learn something new today.. regarding Forms Authentication in ASP.NET.. it's involving using 2 or more web.config where the first one is at our root application and the 2nd, ... is at folder which we want more security principal to be taken like example : we have secure form where we want user to be authenticate/login first before we make user goes to that page..so we have the 2nd web.config that said we deny all anynonymous user which represent by "?" character.. remember we must using "?", don't use "*" otherwise we will deny all users wether they authenticate or not..-> learn the hard way..2 hours to come with the solution :D too bad blogspot can't post some html script so i can't post the code in web.config neither code behind it.. 'till then

disaster in southern Java

too bad..indonesia is prone to nature disaster beside the internal disaster yesterday there is an earthquake that involved tsunami in pangandaran beach.. the tsunami is make the area really2 destroyed..not as bad as tsunami in aceh but still bad.. lot of people died..last 305 if i remember correctly.. it seem that disaster is "near" indonesia..maybe it's coz by the area where indonesia is exist..maybe it's coz by the sin of people that rules this country..maybe its God's will..maybe it's because people don't care about the area where they lived.. i prefer to believe the 2nd and 4th ..the greedy people caused this disaster.. may God bless this country

.NET is confusing

yes indeed..i spent this whole day in the office trying to figure how .ascx implemented in .aspx and why it can't add any button then using those .ascx... eventhough i already try ask at the forum..but i give up using those above.. in return i using the button at .ascx and works like a charm :D my head is dizzy now :(..need some sleep and good coding at the moment :D

POP3 and SMTP

if ur OE(Outlook Express) can't retrieve and send email.. try check the Account - Server tab..and confirm that the POP server and SMTP server is type correctly usually it's pop.domainName and smtp.domainname where it's using 110 and 25 port for it.. if it's ok and still can't connect then try check the TCP/IP Properties under network connection and under Preferred DNS..if it's pointing to Proxy's* IP then change it so it pointing to ISP'DNS(usually it comes with the manual) if it's still not working..then call technician coz i can't think what is the problem maybe the LAN cable is disconnect..maybe a virus, etc... *Proxy: is the computer which is sharing the internet over the LAN

Need to find an alternative for Badminton

yes..precisely this month(July 2006) i'm not playing it anymore coz there's less people..only 4 that often to come and they said already exhausted when i come coz i come i hours after them :"> well..not sure what i do to exercise..perhaps cleaning my room and floor every day? :bump: :D i thinking about fitness..u know to build my body..to gain more weight :"> but it's expensive..three hundred thousand rupiah for a month.. that's for now..have to relax my mind since i've been code for 2 days..not whole day of course..:D

I'm a lazy Programmer

hold on a while before u judge me..i'm not lazy at all..i creative, and work hard..:"> well..i decide AGAIN for the Web using OOP approach again after a while i'm using dataSet..so instead i change all of them..i plan to leave as it is then develop using OOP for further coding :D so i'm making a class, inherits it, polymorph it..yipiii :D but i'm thinking is bored to declare all Property and Variable again.. so i make simple program using VB 6.0 that grab a Table from selected Database then make Class from it with its Property and Constructor..plan to develop more, maybe under GPL? Open Source? too much :D the program is final now well at least until i need to developt more on this program.. so the Web here i come again :D

a confusing issue

found an issue regarding VB 6.0.. i got an error that said 'Error loading form.See 'item' for details where the 'item' is form name (not exactly same message but something like that) weird because it's never happened before..it took me reinstall the VB and related program..huu boringggg stuff :( took me for half an hour to be able to solved..well not solved it..to find the correct answer for it.. first i go to Google (my fav :D)..and type those msg..walaaa, there are lot item found..i check each link in 1st or 2 page usually.. and there's a page from MS (yes..i think they have a great work for troubleshooting) regarding about Currenct format.. without reading much..i remember that i've been changing region setting and curreny format yesterday.. so i changing to default setting when the prog were developed..walaaa again, the issue not arrised.. eventhough it fix but i'm not checking in detail why that happened.. so i'm not having precise answer bu

often what it looks beneath the surface is different than on the sufrace

hua2..bad english of mine i'll translate it 'seringkali yg terbayang tidak sama dengan yg terjadi' well it happen to me yesterday(July 2nd 2006)..i already have a speech if anyone question my opinion but..but...no one question it even the one that closed to him is strange for this phenomenal(if i can say it so) well..enough for today..gonna go home soon..:D

aaa..yess..n-tier

good news, i finally can come up with an application that can run Delete, Insert, Update function eventhoug there's no UI at the moment :"> so the principal is something like this in an order: UI -> SystemFramework -> BusinessRules(lot of logic here) -> DataAccess and all of them is passing same Dataset that want to be Deleted or Updated or Inserted which contain an ID (Primary Key) for all stuff above btw i'm using Visual Studio .NET 2003 if u guys/girls not familliar with term Dataset :) bye for now

It's true what Other told in a forum

he told me once that developing a small scale application using Tier approaching or OOP is paint in the a*s (not the correct word but something like that :)) coz we need to developt each tier which is supposed to be done with someone who developed it not just by 'One Man Approach' like the one i done now but i guess after developt prev program using this approach..i manage to understand 'how to do this', 'how to do that' stuff..well it involved alot problem but i guess the problem is equal to the effort afterward..if not, why people keep using this kind of approach right??? RIGHT??!@!@! :D the Web is using 5 logical Tier approach..hopefully again i can manage to work it out..:D in an order 1. SystemFramework 2. BusinessFacade 3. BusineesRules 4. DataAccess 5. UserInterface simillar to DuwamishVb7 that comes with MSDN July 2003..well i'm learning by trying and using same concept with that one is like a 'guide' to me..:D first of all i need to set the

stressfull day?

well lot of problem that i think right now..but thank God i have friends eventhough i'm met her/him just via internet that can give me an insight about things i faced right now.. just want to say..thank you God..thanks my friend

Progress on the Web

significant progress now eventhough been a while since my last post :"> building UML Diagram (Classes) using Visio eventhough i'm just have little knowledge about it..but at least it can act like documented program..less work for my brain at least :D btw, i have a serious problem than i thought before..i easily forgotton things, i'm still young..o nooooo what should i do then? back then i thought because i have so many 'big' things to remember so i forgot 'little' thing..maybe22.. so what should i do? i'm not a 'writing my idea' type of person..so not planning writing everything to a Agenda or something like that.. :( well..must continue my current progress.. i'll tell u if i found the solution for my forgetful :D see u

1st e-book that i finished reading :D

yes..i read an e-book with title "OOP Demystified - McGraw Hill"..well d**e good e-book about OOP..recommended by me :D can't wait to start the Web now..creating Classes, defining Methods, Properteis..hua22.. last but not least..hopefully gonna work it out that's all for now folks -> from old tv cartoon series..can't remember the title of it :D, tweety & sylvestre i think

finally after 2 whole day

yes..after two exhausted day in thingking the logic..finally i came up with 'promising' program..Convert Number to Text (in indonesian of course) why 'promising'? coz it need more deeply testing since the test i've made seem working fine.. branistorming for 2 day..took me a while to make it work since my 1st attempt ended up with me giving it up..:D the logic too complicated i think huaa222 now i'm gonna rilex for a while, donwloading and reading OOP books again :D.. today i play badminton again :) bye for now

OOP

stand for Object Oriented Programming something new that i learn and hopefully i be able to extend its feature to the fullest :D after couple of day full of headache reading about it from 3 different e-book(why e-book? coz i can't afford the real one yet :D), finally it give a "bright light" (celah) about it..now i'm moving forward after trying it in .NET today.. OOP is nto new to me coz i get it since my first year at University but yet never actually implemented it until now (at the University is full with theory that practicing it) and also hopefully i can use this new concept in my Project (so many hope of mine :blushing:) PS : more easy reading it from e-book..so my suggestion is at least TRY while reading it or after reading it!!! got to go, my head is acting funny (dizzy)..too many information in a day :D..

kinda late to blog..:D

it's been a long day to me since i'm downloading a file(warcraft 3 the frozen throne 1.20d patch) for 3 days..but it ended up there's some fragment that can';t be resume..huaaa..it's already 92% :( now i downloading again.. well after a while i borrow my friend's VGA(because he won't let me buy it), i finally buy a new one Digital Alliance Geforce 4000 128mb, yes i know..it's and old VGA but at least it can run under my AGP 2x P3 motherboard :"> i playing DotA again huaa..yes, i kinda adictive to it since my 1st play.. hmm..that's for now..gonna continue tomorrow

huaa..ben a while since my last post

yes..it's been a while, many new things comes up.. the '1 year program' that i made finally been tested by my co-worker, it's just for the user input not entire program, after she input..it'll be my job again to make the report and stuff like that..yeah boring stuff in programming world i assume :D.. but what else can i do? i have a programming background.. i've some other interest like play game, but is that possible to be a job? maybe in other side of the world but not from where i live :D just being silly each time i think about what job that i can do beside programming, huaa full of stress i tell u..want to open a store but what store but again i think i've been thinking only not doing it..(NATO, No Action Talk Only :D) yes right now i have a goal to achieve (hopefully with great score) make a program for Her to help Her finished her job's desc and hopefully Her boss wanna pay for it :D web site that me and my friend been around for 1 year now (just

fresh start for "The Web"

today after learn something from e-book..i decided to fresh starting "the web" that has been started 1 year ago with my friend :D.. decide to using OO and expand with its full capabilities.. hopefully be able to finished it in a month for the requirement, design, analysis, etc.. and be able to code it for month later.. need lots of pray ..

..my Hope..

this are my list : (more too come.. :D) 1. be a good person(for me, myself, and i :D - myself, family, others, ...) 2. world to be a better place to live with 3. take care my parents in returns theirs (bales budi orang tua..) 4. able to stand up on my own (jd mandiri..) 5. and we shall live happily ever after :D 6. be able to finished the "Web Program".. 7. be able to finished the Project(s)(too complicated to be describe)

...about Her...

Her name is Natalia (often call Her na2t, bulet, kebo, chayank, neng , neng jay, sayang, cinta, future wife :D)..Her full name is Natalia Soelaeman.. i met her at Citra Land Mall then go to Solaria..introduce by my ex workmate(since she went to Bogor now) which is Her's high school friend..-ci Yuli that's what i call her at first me and Her rarely, i mean very rarely talk each other coz i'm not kinda person that easily socialize with new people :( i go with also my ex work mate (she now in Batam, living with her husband..), - ci Mar.. in indonesian aja d..susa pk inglis..hehe2 ya awal2 bnr2 canggung bgt d..ktm cm liat trus ga ngmg, ga jg ga gt perhatiin se..selalu ky gt d, kl dikenalin temen, ga gt perhatiin mknya suka lupa namanya pas ktm.. yaa kita ngobrol bertiga doang (ci mar, ci yuli, g)..jrg ngobrol brg na2t..dia jg ada brg temenya jd yaa dia asik berdua ngobrol brg (br blkgan inget namanya Delia setlh tanya2 na2t lg..he2) singkatnya da kelar makan..trus abis itu ya k

it's saturday

finally, this day arrive..gonna meet Her soon :D.. btw her name is Natalia, hm..well another blog for her.. and also..3 days from now, i'm gonna go to Singapore on vacation with her, my family, my sister's family, my cousin family, my auntie's family (total 20 people i think), hopefully gonna make a good vacation there (gonna make shame on people's country - buat malu di negara org hua22) plan..first we go to batam using air asia (for cheaper Fiskal..not sure what it said in inglis)..then we go sing using Ferry..hope i'm not sea sick and air sick :(... after that..not sure where to go..since that's my sister's bussiness..i just follow..:D at the office, it's not crowded as usual coz some of my workmate is off :(..while me and couple others still work on saturday(huaa life is not fair, not fair :D) that's go for now.. see you

ari ini kamis neee..

ya tiap kamis g maen bdmtn d jem 5 di krendang raya..10 menit dr ruma g..olahraga g selaen ngepel, nyapu(bnran loh..walopun kdg rajin, rajinnya kdg bgt lbh srgan males he2) ya moga2 aja ari ini orgnya rame biar byr blnannya ga mahal, ama seru jg maennya d..diajak ngadu ama lap. laen jg :D penasaran ne lom perna ngadu ama lap. tengah..smashnya se kenceng2 tp kynya bs laaa cm plgan kala di penempatan bola doang ..ayo dong ngajak ngaduuuuuu...payaaaa masa mesti diajak dlan se..

Use this blog

yaaa g pk blog ini aja d drpd pk punya fs..:D ada aturannya ga se ya nulis blog? ky mesti pk bhs resmi ato apa laa? sapa tau aja byk yg baca blog g trus jd terkenal d hehe..mupeng bgt se rick.. yaa coding tgl satu tahap lg..trus tgl update2 gt d sesuai kemauan user abis itu kelarr?? masa se? cepet amat..pdhl br jg 1..1 taonan kerjainnya heheh segn dl..mau promosiin blog g di fs aaa..:D