Click here to Skip to main content
15,890,741 members

Comments by plazzasele (Top 8 by date)

plazzasele 31-May-16 3:03am View    
The image i am printing is the barcode generated programmatically, I don't need to save the bitmap to disk I can save the code and whenever i need the barcode i can generate it again from the code. and the drivers of the printer are normal, supports various sticker sizes. I have a 3d part program that prints lables, It is working fine, but i want to add this task as part of my application
plazzasele 22-Mar-16 18:16pm View    
I am using this class from this articel, And i actually don't know how to change it to only dispaly the date. http://www.c-sharpcorner.com/UploadFile/1a81c5/list-to-datatable-converter-using-C-Sharp/
plazzasele 22-Mar-16 16:52pm View    
this was the first I tried: dataGridView1.Columns[2].DefaultCellStyle.Format = "yyyy/MM/dd"; it was showing date and time, then i searched for this and found an answer tith the car ' '
plazzasele 18-Mar-16 18:57pm View    
@Mathi Mani. Thank you for your reply. I have one record with production date: 19.03.2016 00:00:00:00 And ExpireDate 22.03.2016 00:00:00:00. and alert me before expire date in 4 days. when i use your suggestion: (select count(*) from tblitem where dateadd(day, AlertDays,getdate()) <= ExpireDate) I get 0. if i change <= to >= I get one record. I thing your suggestion is right, maybe I am wrong when i set the condition <=. I need help to understand this. thanks again.
plazzasele 21-Jan-12 16:18pm View    
Hi. i now have the namespace users, and have my User Class inside the namespace users. i i wrote on the top of login.aspx.cs file "using users;" but still i am getting error, i have rebuild the solution, still doesn't work. i don't thing it is just that i didn't use the namespace. beside why is this working fine locally.? i think i will try File->New->Project -> asp.net web form. maybe this way i will some better compiled files. cause the way i did is not working.
thanks for your help.