Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K

27 Posted Topics

Member Avatar for kelvin_8188

In VB.net I do not believe it's possible (at least to do easily). However, if you are working in something such as WPF or possibly Silverlight it is very doable.

Member Avatar for sgt_toasty
0
126
Member Avatar for praveendasika

Generally when using masterpages you will want to add a content place holder, and then within there you can add other controls (on either the masterpage or a webpage with the reference to your masterpage). If nothing else shows up in your toolbox other than the content place holder then …

Member Avatar for sgt_toasty
0
91
Member Avatar for VIPER5646

I usually have something the users can interact with (comboboxes, textboxes, etc) and then you can add on to the query based on the user's selected/inputted items. So for example if you had two textboxes, one for minimum ordered quantity, one for address and the user input min order qty …

Member Avatar for VIPER5646
0
18K
Member Avatar for aadi_capri

You could try using session variables. In larger applications you need to be careful with them, but storing 180 questions plus the color should be fine. Just do something like session("QuestionOne") = -TheirQuestionOneAnswer-

Member Avatar for aadi_capri
0
175
Member Avatar for mrnutty

Programming has made my logic skills increase drastically. Card games such as Magic: the Gathering have become MUCH easier to think about complex lines of interaction and calculating probabilities of opponents having cards, etc. Sadly programming also makes it difficult to stay in shape :(

Member Avatar for chiiqui
0
447
Member Avatar for Lek Plepi

Also keep in mind that in most instances the between operator selects entries between your two dates AS WELL AS the two dates. So if you were doing between Jan 1st/ 2011 and September 12/2011 both Jan 1st and Sept 12 will be included.

Member Avatar for sgt_toasty
0
143
Member Avatar for installer

I use IE when I need to ensure compatability on certain sites. Firefox for general browsing. Chrome for googling things because it seems to be the fastest (but I despise it's favorites/bookmarking).

Member Avatar for remixedcat
1
648
Member Avatar for Usmaan

1)Not sure, I haven't been into programming that long :) 2)Yes, visual studio makes .aspx pages. 3)You are right on the money. The HTML is what users see, and creates controls such as textboxes, gridviews, and buttons on the page. ASP then allows you to program in VB.net or c# …

Member Avatar for johny2011
0
269
Member Avatar for Carmenchi

Keep in mind that clearing viruses/spyware off your computer will not help with freeing your email. I would recommend reformatting your hard drive if possible, and if not ensuring your computer is free of viruses, spyware, and malware. After you can assure that (or access a seperate computer), change the …

Member Avatar for jholland1964
0
148
Member Avatar for AspiringCoder

Hi AspiringCoder, I'd be happy to answer your questions. 1)About 2 years 2)I like being able to work with the same programming language everyday (Visual Basic.net), but work on different projects, and different parts of similar projects. It is very rewarding when something stumps you, but you finally figure it …

Member Avatar for sgt_toasty
0
297
Member Avatar for chellemits

Not sure if you ever got this working, but I've used this progress bar in the past and it works very well too! [url]http://mattberseth.com/blog/2008/05/aspnet_ajax_progress_bar_contr.html[/url]

Member Avatar for sgt_toasty
0
151
Member Avatar for aldm

For basics I'd recommend anything made by Rhox publishing. They are usually very clear, concise, and informative.

Member Avatar for Netcode
0
145
Member Avatar for MrBlack

In order to completely erase it from memory: Session.remove("YourSessionName"). In order to clear its data if it's a basic string: session("YourSessionName") = ""

Member Avatar for prit005
0
84
Member Avatar for Dean_Grobler

I agree with BitBlt's comments, furthermore don't be surprised if you are there a week and haven't contributed too much. I was in training for about a month before I started doing actual work, although this may not be typical. Don't worry too much about anything, people know that it's …

Member Avatar for NETProgrammer
0
167
Member Avatar for \007

I wouldn't start looking until you are between 2 months - finishing your Master's. From my experience most managers hire for specific projects, and then you stay or go based upon performance/how much they like your work on that project. So looking say 5 months ahead is pointless unless you …

Member Avatar for \007
0
131
Member Avatar for Dean_Grobler

I wish I could get up early enough to gym and feel motivated enough to actually do work :( Definitely an immediately after work guy here!

Member Avatar for Lardmeister
0
202
Member Avatar for chris evans

As jbisono aluded to you need to find what your user's monitor [B]Resolution[/B] is: that is what determines the amount of screen space they will have when viewing your site or anything else on their computers. So check what their resolution is and design your site around that, obviously if …

Member Avatar for sgt_toasty
0
180
Member Avatar for saffan

For what it's worth: If you needed to change the contents of the combobox in response to an event (such as the user making a selection in another combobox). You should use update panels (or javascript...). Such (html) code would look like: [CODE] <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> …

Member Avatar for Mitja Bonca
0
122
Member Avatar for adobe71

In order to do this I typically store the file on the server and store the file path in the database. At the top of your vb you will need: [CODE] Imports system.io [/CODE] Then in your method (upload or whatever) you will want to use file.create and file.remove, as …

Member Avatar for sgt_toasty
0
87
Member Avatar for dtpl.jayawant
Member Avatar for taxmybrain

I don't know if you got it solved yet taxmybrain, but if you are following Mitja's suggestion you would also need a " before Select event Thus making it: [CODE] SqlDataSource1.SelectCommand = "SELECT event, athname, D_ate, TIME1 FROM TableName WHERE event='" & dist & "' AND athname = '" & …

Member Avatar for aspproject
0
160
Member Avatar for xanawa

A brief description of masterpages: Masterpages serve as a template to build upon when creating new pages in asp.net. An easy way to visualize it is to look at the navigation at the top of this site: there is hardware & software, software development, etc. If you were the developer …

Member Avatar for xanawa
0
127
Member Avatar for Fortinbra

Do you have a way of detecting how much data was sent and how much was received?

Member Avatar for Fortinbra
0
102
Member Avatar for NewOrder

Do you have any database experience? You will probably want to store the questions/answers in a database, as well as user information if you want individuals to have their own log ins. Design wise the site wouldn't be too bad to mimic, just doing the general design would take some …

Member Avatar for NewOrder
0
114
Member Avatar for victortiago

An alternative without modifying the sql command would be to change how you run the query: Change: Dreader = consulta.ExecuteReader(); To: Dreader = consulta.ExecuteScalar(); Execute scalar grabs only the first row, even if there are multiple results.

Member Avatar for hirenpatel53
0
109
Member Avatar for adrianSigamoney

Adrian - you cannot have events fire when the user clicks a control (such as a textbox) using vb.net. You would need to use javascript's OnClick event. [CODE] document.getElementById(textboxX).onfocus { Do stuff in here! } [/CODE] The reason for this is because vb.net only "fires" when the webpage communicates directly …

Member Avatar for sgt_toasty
0
85
Member Avatar for Joshua Kidd

I have never used the Gmap control, but vb.net generally dislikes putting inserting controls directly onto the page. Try inserting the gmap into something such as a panel, or an existing control within the page that can "house" the gmap.

Member Avatar for sgt_toasty
0
117

The End.