FYP: COMPLETED!!!

Yay! I just completed my FYP last Tuesday! The presentation went quite smooth. Nothing went wrong during the whole presentation unlike some other group (thank god!) Now, the only left thing left is my final. My final exam will start next Friday and will end the week after that (Thursday). Guess that I won’t be … Read more

Add Item Manually in DropDownList

In ASP.NET, we can bind the dropdownlist to a data source so that it can display the items dynamically. But one of the problem is that you can’t add the any new item such as “Select One” in the list. But here is the workaround for it: <asp:DropDownList ID=”ddlProducts” DataSourceID=”SqlDataSource2″ DataTextField=”ProductName” runat=”server” onDataBound=”ddlProducts_DataBound”> </asp:DropDownList> protected … Read more

Busy busy busy

Been very busy lately due to my FYP and assignments. For my FYP, the system itself is almost done. Currently I’m doing the testing for the system. But there are too much documentation to do (such as test script, etc) And we still haven’t start to do the final report. Other than my FYP, I’m … Read more

scope_identity()

scope_identity() is one of the function in SQL Server. (2000 and above) The usage of this function is to return the primary key of the last record that you insert into the table. Some people also said that you can use @@identity to archive similar result, but there is one problem which is @@identity will … Read more

Web-based Sound Recorder

As you know, I’m currently working on my FYP. One of the part that I’m responsible for is to develop a web based sound/voice recorder. This is definitely something new to me! At first, I think of using C# with .Net for the recorder, but it seems that it is not possible to do it … Read more

Finish Exam!

W00t! I just finish all the exam for this sem! I don’t feel anything special about it though. I’m not really feeling ‘relieved’. I wonder why. ^^; Any way, I’m going to stay at Cyber during the sem break to work on my FYP. >_< But I'll be going back for 1 week or so.

FYP Presentation (Phase 1)

Yay! The presentation for the FYP is finally over! \(^o^)/ Our performance is not the best, but it is not bad either. This is just the first part of the entire FYP. ^^; There will be more next sem! Anyway, I still have 2 assignments left. -_- And I have to finish it by next … Read more

Interim Report

I finally finish doing my interim report for my final year project! \(^o^)/ But I still can’t relax yet because there is still a presentation left. The presentation would be on next Friday. I’m also busy with my assignments right now. Currently I have 3 assignments waiting for me. ^^; Hope that I can finish … Read more

A Short Holiday

I went back to my hometown last Friday. Actually, I was planning to go back on Thursday, but the Final Year Project report kept me from returning on that day. :/ So, it took me about 5 hours to go back to my hometown. Nothing much happen on Friday. I SMS-ed my friend on Friday, … Read more

POP3 with C#

Finally, I started to do something about my final year project. ^^; The thing that I manage to do today is connecting to the POP3 server, retrieve the email and store it in a text file. I manage to do thanks to the code that available at the code project. The code provider is very … Read more