No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
15 Posted Topics
I have a question programmer's... we know that in Visual Studio...you can open a different kind of database... like: Access, SQL server or file, Oracle... is there any reference that you'v know on how to make that kind of program?? i don't know where to start... VB.NET codes please..... TIA! … | |
Re: get the max value of your ID in your database then add one like this SELECT MAX(ID) as MAXID from tblID | |
Re: hey check it here [url]http://connectionstrings.com/excel[/url] [url]http://connectionstrings.com/excel-2007[/url] hope it helps!! ^_^ | |
Re: [CODE] Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If (Microsoft.VisualBasic.Asc(e.KeyChar) = 8) Then e.Handled = False End If End Sub [/CODE] | |
Re: i don't get it... here's my example of ADD/EDITorUPDATE/DELETE... [URL="http://incpinoyprogrammer.blogspot.com/"]http://incpinoyprogrammer.blogspot.com/[/URL] you can make a simple code for that... | |
Good Day Programmers ^_^ i need a help... how do i Update the record based on the Date & Time?? here's the code: [CODE] Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick lblTimeOfDay.Text = Format(TimeOfDay, "hh:mm:ss tt") UpdateItem() End Sub Private Function UpdateItem() Dim xSQL As … | |
Good Day Programmer's ^_^ i'm having a problem with this two DateTimePicker in DateTimePicker1 the format or value is "dd-MMM-yyyy" or "01/Jan/2012" and in DateTimePicker2 the format or value is "yyyy" or "2012" when i change the year in DateTimePicker2 to change the year in DateTimePicker1 i'm getting an error.. … | |
Re: [QUOTE=sw8revenge;1744594]sir could you please give me an example? im really new in vb.net[/QUOTE] here's the sample og Log-in History... hope it help some of your problem... [url]http://incpinoyprogrammer.blogspot.com/2012/01/sample-login-application-with-history.html[/url] | |
GOOD DAY PROGRAMMERS!! :twisted: i just want to know How to do this kind of problem [url]http://www.daniweb.com/forums/attachment.php?attachmentid=23623&stc=1&d=1327489022[/url] i just want to save the date interval like i will select the Start Date and End Date ex. [COLOR="Red"]Start Date/Time: 26-Jan-12 / 03:00:00 PM End Date/Time: 31-Jan-12 / 03:00:00 PM [/COLOR] how … | |
GOOD DAY .NET PROGRAMMERS!! ^_^ [URL="http://www.daniweb.com/forums/attachment.php?attachmentid=23184&stc=1&d=1323465600"]http://www.daniweb.com/forums/attachment.php?attachmentid=23184&stc=1&d=1323465600[/URL] I'm having a problem with SMS APPLICATION "see the picture"? when i click the SEND button after typing the number of the recipient and the text messages it's not responding same as the LOAD button and nothing happens after that so i have no … | |
[CODE]Protected Sub Button1_Click(ByVal sender As Object, _ ByVal e As EventArgs) Response.AddHeader("content-disposition", "attachment;filename=FileName.xls") Response.Charset = String.Empty Response.ContentType = "application/vnd.xls" Dim sw As System.IO.StringWriter = _ New System.IO.StringWriter() Dim hw As System.Web.UI.HtmlTextWriter = _ New HtmlTextWriter(sw) GridView1.RenderControl(hw) Response.Write(sw.ToString()) Response.End() End Sub [/CODE] how do i set the format for that after … | |
how do i set the format for that after click the button from gridview to excel file?? what's the code for this format?? in page tab: orientation = landscape scaling = 30% paper size = A3 print quality = 300dpi in margings tab: width = 0.25 top = 0.25 height … | |
[B]I just want to know how to perform a real calculator in ASP.NET like... there's a 1 textbox or 2 and 1 label where in that label will show the text came from the TEXTBOX while typing get it? any idea? please need some help^_^[/B] | |
please look at the picture attached... ^_^ [CODE]Protected Sub GridView1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.PreRender GridView1.DataBind() lblStatus.Text = GridView1.Rows.Item(0).Cells(52).Text 'this code is to display the current status of the colum...i don't know if it's read only one or all the column... End Sub Protected Sub chkADa_CheckedChanged(ByVal … | |
please view the attached file... i just want to know how to insert data in a Null Column in just one click... ex: ID UserName PassWord Category Status 1 Me1 You one Null 2 Me2 You one Null 3 Me3 You one Null 4 Me4 You one Null 5 Me5 … |
The End.