What wrong with this
notmasteryet wrote:
Enum NumberSize Bit_8 = 8 Bit_16 = 16 Bit_32 = 32 Bit_64 = 64 Bit_128 = 128 End Enum
I think it is good practice. Do you have any better practice ?
What wrong with this
notmasteryet wrote:
Enum NumberSize Bit_8 = 8 Bit_16 = 16 Bit_32 = 32 Bit_64 = 64 Bit_128 = 128 End Enum
I think it is good practice. Do you have any better practice ?
I don't know how to send mail with out internet. But I think we can develop something like that . e.g. Client Server send message system We will use Windows Form or WPF or Webform or anything else that can receive data from user then we will save it into database. database table should contain fields like these PK Sender To Message Can it mimic "intranet email system" ? :cool:
Thank you Luc Pattyn you help me again. :)
If my application is Windows Form I just use App.StartUpPath,But if it is class library can i get path of library. :confused::confused:
Excellent code.A guy who wrote this code is genius. :omg: :wtf:X|
I think you have incorrect place to post. :)
I suggest you to read. http://www.w3schools.com/aspnet/aspnet_dbconnection.asp[^] http://www.sitepoint.com/article/introduction-ado-net[^]
Thank you for your reply.It can help me a lot.
Thank you.
I know maybe it is should be depend on - Database operations -Website operations -Server config -Architecture design -Skilled of developers - etc . But I mean in general situation such general E-commerce website or website for repleasent company and we use general developer too. If I have one server that use Pentium 4 3.0 Gigs and 2 Gigs of ram use Windows 2003 server ,ASP.Net 2.0 ,IIS 6.0 ,SQL Server 2003 How many users this website should handlers in a same time at least. In trainning room i have been trained user ,more than 40 users have access to my server then I watched at Windows Task Manager at Performance tab it is look fine. I hope I choose the correct forum for this message.if it is not correct please tell me.
I want to find some solution that can solve expression like this (98.83*(a1^3))-(89127*a1)-53480000 = 0 a1 ^ 3 = cos(a1) / (279 ^ 2) - 0.30293 I want to know value of a1 - The expression have a1 variable. - a1 can has more than one time in expression. - a1 can in left side and right side. I searched by uses keywords "expression solver" then I found many solutions but they aren't match my requirements many solution can find result of expression e.g 2 ^ 5 + (300 * 4) by use stack,prefix,postfix but I not found a solution that can find variable value. if you have any solution even it isn't use vb.net please help me. or may be you suggest me to use other keywords for search actually I don't know what a keyword i should use because my English skill isn't well.
My colleague wrote code for calculate total price and then save it he use session for sending total price to another Sub.This session use in Cal() and Save() only. Private Sub Cal() dim dblTotalPrice as Double dblTotalPrice= cint(me.txtQty.text) * cdbl(me.txtPricePerUnit.Text) session("TotalPrice") = dblTotalPrice End Sub Private Sub Save() dim dblTotalPrice as Double dblTotalPrice = session("TotalPrice") End Sub
modified on Thursday, March 13, 2008 5:42 AM