No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Re: I've not done any asp.net for a long while so my only input will be about the backend coding. You are calling showData after every delete rather than deleting all the records required and then calling showData - call it once at the end. You should also move this statement … | |
Re: Hi Randy There is no event selected in the HTML - runat Server is good but what sub are you going to call. I think you have probably copied this control from another page - been there done it. Try double clicking the control and you should be fine. | |
Re: [QUOTE=mpande;928608]Hello Everyone I'm currently busy doing a program that can capture sales, and evrything is working fine at the moment. The only problem is that in the stock table I can't update the quantity(when the company purchases stock), and also can't decrease the quantity(when they are sales). If I were … | |
Re: [QUOTE=sana.khatib20;928805]hi all, i want the application to show error message if the searched object is not in the database or if the user is trying to insert the same value again plz suggest some code.[/QUOTE] Don't know what database you are using but [CODE] Dim mReader as SqlReader Dim strSQL … | |
Re: As an example use this. [CODE]Dim objExcel As Object Dim objWorkBook As Object Dim mArray() As String Set objExcel = CreateObject("EXCEL.APPLICATION") Set objWorkBook = objExcel.Workbooks.Open("C:\test\test.xls") Dim intCount As Integer intCount = objWorkBook.Worksheets.Count ReDim mArray(intCount - 1) For intCount = 1 To objWorkBook.Worksheets.Count mArray(intCount - 1) = objWorkBook.Worksheets(intCount).Name Debug.Print mArray(intCount - … | |
Re: God this problem took me back... I am now offficially old The only easy way round it I could find was to put the image box in an picture box. There are other options, google Karl Peterson for instance, but unless you have time on your hands I would not … | |
Re: Hi JohnS Have you tried the Page_PreRender sub? | |
Re: Hi ninj First of all, put your data bind logic in a separate sub not in the page load event you will be needing it again. Next call the new sub from the page load to make sure it works, In the designer, double click the second dropdown box - … | |
Re: First of all might I suggest you use windows explorer to zip and unzip files - but that's another topic. It might be something to do with the permissions your website is running under. In IIS, a web site will usually run under the IIS_ASPNET account (or something like that). … |
The End.