- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
101 Posted Topics
Re: Maybe somehow when you show the report, it's not updated yet, maybe it gets only updated after you click the ok(or whatever). If you send your code, someone might be able to catch your problem. | |
how to keep a certain form always behind other forms | |
Re: what exactly are you trying to do? Do you mean that the following doesn't work? adodc1.recordset("datepicked") = calendar1.value ![]() | |
How do I check if a form is open (not only loaded, but also open) | |
Re: to get exact error, put it in a try, catch (errmsg is a label on the form) Try Client.Send(message) Catch smtpEx As SmtpException 'A problem occurred when sending the email message errmsg.text = "Problem sending message: " & smtpEx.Message.Replace("'", "'") Catch generalEx As Exception 'Some other problem occurred errmsg.text = … | |
Re: Marriage is not about finding the right person but being the right person (Can't remember where this is from) | |
Re: Do you have any code after form2.show ? The program might show the form for a short time and then continue with the code and you don't see the form because it went so fast. If you want form2 to show and wait for some user input try form2.show vbmodal … | |
Re: (variables get lost with postback) You can use hiddenfield to store the value of your variable or you can use session variables setvalue: Session("myvariable")=somevalue retreive value: somevalue=Session("myvariable") Or you can use viewstate | |
Re: use this instead of msgbox ClientScript.RegisterStartupScript(Me.GetType(), "OhNo", "alert('Your Message');", True) | |
Re: try .count -1 when there are 3 entries ,count would be 3, but the last index is 2 since it starts at 0 | |
Re: Do you want the row to be deleted, as soon as the checkbox is clicked, or do you have a delete button and when that button is clicked you want to delete all the rows that have their checkbox clicked? | |
Re: why not use the ajaxToolkit:AutoCompleteExtender, it really is simple to use | |
Re: I give you my code, but it's in vb, but I'm sure you can translate it Public Shared Function check_UserCredentials(ByVal username As String, ByVal pass As String) As Boolean Dim userID As Long Dim sqlstring As String sqlstring = "SELECT UserID from tblUsers WHERE Username=? AND Pass=? " Try Using … | |
Re: when you configure datasource for second dropdownlist, then for select parameters chose control and dropdownlist1 | |
Re: loop through your distribution list and for each person send an email. What exactly is the problem, be a little more specific | |
Re: do you mean, you populate two dropdowns, and if you chose one element in one dropdown, then the selected value of second dropdown should be changed? | |
Re: I would use the same gridview, just bind it to a different datasource | |
Re: after you check for username and password in database you can redirect System.Web.Security.FormsAuthentication.RedirectFromLoginPage(username, False) | |
Re: Do you know how to create datasets, connect the gridview to objectdatasource that connects to datatableadapter? | |
In my code I want to upload a file to my project(named Musiker), under the folder music. Here is what I did so far, it's not working. 'to get the path where to upload it, I did the following Dim strpath As String = Application.StartupPath Dim num As Integer = … | |
Is there a way to use a progress bar on a message box? | |
I want to use directoryinfo for a folder that's not within my website, it might be on the same server, but I'm not sure yet. How do I go about this? let's say I have this [B]dim dirinfo as new directoryinfo(folderpath)[/B] what would folderpath have to be? I tried giving … | |
Re: [QUOTE=Firethorn;1065603]--Im having issues using a master page and im hoping for some insight. What i want to do is have a common background image across all pages that are on my site. --When i create a master page and set the background image to the appropriate image (stored on the … | |
Re: [QUOTE=webdev100;1065533]Hi, as the title says, How do I disable the select button text in a gridview after clicking it once? I want to click it once, then have the select cell area render an image (and the image not clickable or linking to anything). Any ideas?[/QUOTE] turn the select column … | |
I used the multimedia control, and it worked great. But when installing my project, it did not work on all computers. (When trying to run it on some computers, it said, there was a problem, and it shut down the program) What could be the reason for this? Do you … | |
Re: I don't know if anyone looks at an old thread, but I have a question for this. I used the multimedia control, and it worked great. But when installing my project, it did not work on all computers. (When trying to run it on some computers, it said, there was … | |
I have some music files that are being played, in certain cases in my project. Where should I store those files? I created a folder "Musik" under my project and put it in there, the problem is, how do I get to these files, I don't know the path when … | |
| |
I have the following code for reading an online file, somehow the first line returns an empty string, what can be the reason for this? Dim myRequest As WebRequest = webRequest.Create(myurl) myRequest.Proxy = WebRequest.DefaultWebProxy Dim mystream As Stream = myRequest.GetResponse.GetResponseStream() Dim objReader As New StreamReader(mystream) Dim sLine As String = … | |
I have been searching for a solution for this, but all the things I've found do not apply to my problem, so I am giving all the details, and please someone help me I am using access database I am using typed datasets as my DAL I am using objectdatasource … | |
I have a login control, when user presses login I want to check if he exists in the table. I made a connection to database, and now how do I check if he exists? Protected Sub Login1_Authenticate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate Dim sqlstring As String … | |
I'd like to count how many visitors came to my site. Can you give me a quick and easy way to do this? | |
I have a horizontal menu. I want there to be space to the left of first item like there is to the right of last item. How would I do that? | |
When user click on gridview I want that row to be selected, without having the extra column for the select button. Can anybody help me? | |
I want to show info in table like way with diff column headers. I am using the table control. When user clicks on a row I want that row highlighted, is this possible with a table or do I need to use something else? | |
I have to connect to an Access database, what's the best tool to use? | |
| |
Can I change an existing form to a masterpage, or can a masterpage only be defined when creating the form | |
I am looking for a visual studio tutorial, can you suggest one? I have expirience working in visual basic and was asked by my boss to learn asp.net. So I got visual studio installed, and read a few sites about asp.net. the idea of visual studio looks very much like … | |
I am new to asp and visual studio, and am going through a tutorial. One of the things it tells me is to select something from the "block format drop down list which is above the toolbox" I can't seem to find it? | |
I am completely new to asp.net. I just started to learn. I created a .html file which I then changed to .aspx. After I changed it to .aspx I can't open it through my internet explorer, what can be the problem. | |
At runtime I want to check if a certain form is open. I know how to check if a form is open. I do it like this(where form1 and form2 contain the names of the form) [CODE]For Each fForm In Forms If fForm.Name = Form1 Or fForm.Name = form2 Then … | |
When resizing the form, I resize the toolbar on top. When it gets too small for all the buttons on the toolbar to show I want to either Split the buttons into two lines or Add a button at the right hand corner which includes as menubuttons all the buttons … | |
Re: First of all, why do you have [CODE]unload me[/CODE] in the middle of your sub? The program won't do the lines after that. And now to your question, when you just added a record, then your recordset is pointing to that record so you can just do [CODE]Receipt.Lbl_Amount.Caption = amount … | |
Can a form have a different shape than just square or rectangle |
The End.