Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~41.2K People Reached
Favorite Tags

101 Posted Topics

Member Avatar for mattyd
Member Avatar for genie_ps

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.

Member Avatar for borge438
0
3K
Member Avatar for plusplus
Member Avatar for nuBudDy

what exactly are you trying to do? Do you mean that the following doesn't work? adodc1.recordset("datepicked") = calendar1.value

Member Avatar for ask_girl
0
526
Member Avatar for plusplus
Member Avatar for tarwara

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 = …

Member Avatar for jugosoft
0
977
Member Avatar for ~s.o.s~

Marriage is not about finding the right person but being the right person (Can't remember where this is from)

Member Avatar for Borzoi
0
724
Member Avatar for sneha sirohi

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 …

Member Avatar for Bukho
0
1K
Member Avatar for ranu jain

(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

Member Avatar for kad1r
0
105
Member Avatar for muthu

use this instead of msgbox ClientScript.RegisterStartupScript(Me.GetType(), "OhNo", "alert('Your Message');", True)

Member Avatar for plusplus
0
272
Member Avatar for tgifgemini

try .count -1 when there are 3 entries ,count would be 3, but the last index is 2 since it starts at 0

Member Avatar for cschrishoo
0
473
Member Avatar for AngelicOne

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?

Member Avatar for rohand
0
221
Member Avatar for queryme
Member Avatar for plusplus
0
70
Member Avatar for apachex

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 …

Member Avatar for dnanetwork
0
231
Member Avatar for quest4best69

when you configure datasource for second dropdownlist, then for select parameters chose control and dropdownlist1

Member Avatar for plusplus
0
113
Member Avatar for ans2007kumar
Member Avatar for moied

loop through your distribution list and for each person send an email. What exactly is the problem, be a little more specific

Member Avatar for plusplus
0
74
Member Avatar for umair.sabri

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?

Member Avatar for plusplus
0
77
Member Avatar for new SE

I would use the same gridview, just bind it to a different datasource

Member Avatar for plusplus
0
85
Member Avatar for hbizta

after you check for username and password in database you can redirect System.Web.Security.FormsAuthentication.RedirectFromLoginPage(username, False)

Member Avatar for plusplus
0
98
Member Avatar for selicon.valley

Do you know how to create datasets, connect the gridview to objectdatasource that connects to datatableadapter?

Member Avatar for plusplus
0
140
Member Avatar for plusplus

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 = …

Member Avatar for kvprajapati
0
225
Member Avatar for plusplus
Member Avatar for plusplus

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 …

0
69
Member Avatar for Firethorn

[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 …

Member Avatar for djzia
0
83
Member Avatar for webdev100

[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 …

Member Avatar for plusplus
0
139
Member Avatar for plusplus

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 …

Member Avatar for plusplus
0
200
Member Avatar for Naruse

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 …

Member Avatar for plusplus
0
1K
Member Avatar for plusplus

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 …

Member Avatar for Teme64
0
132
Member Avatar for plusplus
Member Avatar for plusplus

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 = …

Member Avatar for Teme64
0
594
Member Avatar for plusplus

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 …

0
81
Member Avatar for plusplus

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 …

Member Avatar for bala24
0
171
Member Avatar for plusplus

I'd like to count how many visitors came to my site. Can you give me a quick and easy way to do this?

Member Avatar for bala24
0
95
Member Avatar for plusplus

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?

Member Avatar for ericstenson
0
83
Member Avatar for plusplus

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?

Member Avatar for plusplus
0
75
Member Avatar for plusplus

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?

Member Avatar for plusplus
0
60
Member Avatar for plusplus
Member Avatar for plusplus
Member Avatar for majestic0110
0
75
Member Avatar for plusplus
Member Avatar for plusplus

Can I change an existing form to a masterpage, or can a masterpage only be defined when creating the form

Member Avatar for plusplus
0
78
Member Avatar for plusplus

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 …

Member Avatar for majestic0110
0
131
Member Avatar for plusplus

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?

0
56
Member Avatar for plusplus

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.

Member Avatar for plusplus
0
105
Member Avatar for t_yalthis
Member Avatar for brainchief
Member Avatar for plusplus

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 …

Member Avatar for hkdani
0
138
Member Avatar for plusplus

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 …

Member Avatar for plusplus
0
85
Member Avatar for nuBudDy

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 …

Member Avatar for nuBudDy
0
181
Member Avatar for plusplus
Member Avatar for Burra8
0
98

The End.