Skip to main content

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

Comments

Rudi said…
I have read your prev. posts 'bout your "the Web" project and .NET stuffs, and it's just tickling my curiosity, it's really sounds interesting for me :D.
I'm always dreaming someday that I could entering those glamorous of OOP world, but everytime trying to learn it, I'm always get stuck, and dumped on Procedural land over and over again :D, and that 'quick and dirty hack' method which I'm already used for long time ago from the first time I'm doing code hacks(same ol' same ol' :D), where I'm designing app. and code it at the same time, sometimes it's work fine, sometimes it's give real pain in my arse :D.
That's why I'm decided dive to the web app. programming, where I'm just need to proccessing bunchs of strings to forming those HTML page & CSS stuffs, and Procedural method was preety good on doing that(my oh my, that's why I love PHP so much :D), at least from my point of view :D.
eRiCk said…
I'm always dreaming someday that I could entering those glamorous of OOP world, but everytime trying to learn it, I'm always get stuck, and dumped on Procedural land over and over again :D -> well..well i feel the same way too..i've tried to develop my own class..but it seem it doesn't put me at the right 'track'..until i read e-books that got an n-tier approach with oop..very good book to learn from

i my self can't understand quite well what is OOP and neitherless could make such Class(es) that been define by the e-book i read but hey, i'm stil learning and fairly new to OOP :)

as far as i know..VB6.0 is not pure OOP in a meaning can't inherits from Class(es)

well..the OOP is there to reduce the programmer works(to reusable the code) so it 'wraps' on a Class..well can't give u the detail here..but i've tried and it's true..it's true :D

but remember, i'm still learning and might be wrong :)

so until i can tell u more..
Rudi said…
Yup, OOP can help programmer save a lot of effort to developing and maintaining app., that's the main point what I figured out from read lots of literature 'bout it(but less understanding :D), but it gave lots of ways to do it to, mothods, paradigms, design patterns, whoops it blow off my head overloaded %(.

Hmm.. from what I know that VB6 wasn't OOP enough 'cous it didn't have polymorphism feature and else, we can virtually inherited a class by subclassing it(dunno exactly the details :D), I'm just use VB6 at work, not intrested to 'dig' it any deeper, soon I'll try(as hard as I could take :D) to move to OOP, I think C# was preety awesome :D, dooh those C's ancestors languages have really iresistable charm :D.
eRiCk said…
yes c# i believe is in 'detail' instead VB..

but not my interest use c#..hard to explore new style of code..since i already familliar with VB :D

but it gave lots of ways to do it to, mothods, paradigms, design patterns, whoops it blow off my head overloaded %(. -> if not gave a lot of ways then u proably using my Class design he he he..one way only

Popular posts from this blog

SBO - Internal Error (-5002) Occured in Inventory Transfer

this is something that not well documented in SBO, it took me several hours to look at Google and can't find anything about it. Thank God friend of mine got answer for this one.So the Sympton is something like this, u need to make Inventory Transfer for Batch Item and Serial Item in one single Transaction so the Transaction is the combination of it. ex in detail lines: 1. Serial Item 2. Batch Item 3. Batch Item 4. Batch Item 5. Serial Item 6. Serial Item . When u reach this code oStockTransfer.Add it will return an error "Internal Error (-5002) Occured". This is because ur details is not in order, meaning u need to order the line with combination of Batch first then Serial or Serial first then Batch so be careful with this thing :D see u

Resolve Collation error in SQL Server

i often get this error when trying to JOIN some table Cannot resolve the collation conflict between "SQL_Latin1_General_CP850_CI_AS" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation. u need to use COLLATION when performing the JOIN, something like this SELECT field1 FROM table1 INNER JOIN table2 ON table1.field3 COLLATE DATABASE_DEFAULT = table2.field4 COLLATE DATABASE_DEFAULT i found this when trying to JOIN, maybe it affect other areas..until i found one see u

Crystal Report 2010 - Failed to load database information

"Failed to load database information" error when i try deploy my program with CR 2010 using TTX file as report definition this is because there is missing .dll, call "CRDB_FIELDDEF.DLL"..u need to manually copy the file to "C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86" folder then the report is loading again it said that TTX is old tech but i'm still using it because i don't need to connect the report to any DB, but until i found new one to replace :D check this link to read it [EDIT 25 Jan 2011] i think i'll using ADO.NET Dataset next time :D until then