5,277 Posted Topics
![]() | Re: Even though i've done very well in my career (last two decades), which primary revolves around supporting and teaching MS operating systems, applications and web dev (asp.net), i definately feel like i've missed the boat when it comes to working with real operating systems and development in the world of … ![]() |
Re: Remove the `{ overflow: hidden }` style from your `<body/>` element. The `{ overflow: scroll }` is not required on your #content div as gentlemedia describes. | |
Re: Without more specific details, all i can comment regarding you question is to remove the row from your datagrid by using the RemoveAt() method. dataGridView1.Rows.RemoveAt(dataGridView1.SelectedRows[i].Index); | |
Re: >someone help me :) you'll get lots of help if you provide detailed information and show us what you have so far and where you are having trouble. | |
Re: Its very difficult to understand what your actual question is, at least for me. What is it that you want the result to look like? a integer with no decimal places rounded to the nearest whole number? If you would do something like this when you create your post, and … | |
Re: Is this plain HTML or are you developing using server side scripting (php, asp.net, jsp, etc..)? With server side scripting, you can store a value in a session variable which will persist between pages. So, say the user chooses "A", then store something in a variable so that when you … | |
Re: my recommendation is that you tackle one problem at a time. In additon, if you want to get members to help you, you have to show that you've done some work. Post your relevant code and tell us where you are having difficulties. here is a snip that you can … | |
Re: 1 & 3 above look the same to me as well. I dont see why you are trying to escape the apostrophe. | |
![]() | Re: The problem i see here without looking at your code in detail is that your form is going to behave by generating a post and the page will reload. you need to prevent that behavior if you dont want the page to reload. I may be able to take a … |
Re: >but the 3 images that are displayed in the "template" page footer). You can move images within "wrapper" element by just applying a position of "relative" to the image elements and using left and right properties to move the images to the exact location within this "wrapper". First create your … | |
Re: >1- I would like to position the social div (right div) at the bottom of the header(parent div).can you please let me know how to do it? One method is to set the parent div's position to relative then set the child div's position to absolute. Then use the left … | |
Re: Unfortuantely, DNS cannot perform an actual redirect. >Kindly assist me how it can be accompalished for all pages. You need server side scripting, or the rediret can be done at the web server level as well (two websites, one site dedicated for the redirect to the other, not a great … | |
Re: I try to enjoy every day. Fortunately, i like the work that I do so, while i do enjoy time off from work, i dont really have a favorite day of the week. Actually, the days of the week fly by too quickly. In my free time, i try to … | |
Re: just to add... >cannot be viewed by me in its original state, the original User password. Is this correct? correct. >When a password is hashed, is it always the same character length? yes. >I would need to know a length in order to store it correctly in the DB. length … ![]() | |
Re: Wow... 6, 7, 8, 9, 10 languages? i find that remarkable. Your heads are going to explode. I speak, read, and write English and Spanish fluently/natively. Actually both languages are mixed in the same box in my head so its like one language. I dont think about the words before … ![]() | |
![]() | |
Re: It would be helpful for me to see the additional code that you are saying is being pushed down. I would think its a z-index issue if you said the content was hidden behind other elements. If you are indicating that content is being pushed down, that seems to be … | |
Re: I am pretty sure that you could have located this information by doing a search on the web faster than actually posting a question.. but anyway here is an example.. <select name="dropdown"> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> <option value="4">Four</option> </select> Of course there are other attributes you can use … | |
Re: have you tried re-isntalling the application? also, did the application work at all then stop working? if so, what happened at the time that it stopped? did you load other software, drivers, updates,etc? did you try a to restore windows via a system restore to a point in time it … | |
Re: if you are running webforms, you can easily capture that information if you post back to the same page, then read capture the values from the target controls in your button's event handler. you can then store the information in session variables, or pass them via a querystring to the … | |
Re: >Now that h4 tag called "aboutinfo" should be replaced onclick of a button with that div called "social-icons" you'll need to clarify what you are asking. What is it that will be clicked? Where are the other elements that you want to display? | |
Re: Are you sure the phone can get to this jQuery site? http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js your picture shows the phone on wifi...if you are on a corporate network that requires authentication to browse that would be one possible explanation. | |
Re: Yes, if you want to learn about web design and web development, I'd recommend you start with HTML. | |
Re: > I would still like to know if there is a better way to accomplish this goal. There are a few ways to handle this. rather than redirecting users to a mobile set of pages, which requires you to develop twice many pages, you can also use media queries and … | |
Re: Yes but you have to provide the code that you are working with and explain where you are having trouble. | |
Re: Are you seeing the alerts when this function is executed? function getMemberDetSucc(resultSet) { $(resultSet).each(function (i, MemberData) { alert(MemberData.strFName + " " + MemberData.strLName); $('#memName').append('<td style="text-align:left"><label id="lbl_MemName">'+MemberData.strFName+" "+MemberData.strLName+'</label></td>'); }) also.. using your browser's dev tools (f12), do you see any errors reported? | |
Re: Yes you can combine all of those properties using one selector. Is there a reason why you believe that you couldn't. Do you have an example? | |
Re: If your website is hosted on a shared infrastructure, you won't be able to access the website by IP because all of the websites on the shared instance share the same IP. | |
Re: the html markup, <span class="icon-home">, doesnt nothing on its own to produce an icon (image). You would need to apply a style to the span.icon-home selector. For example...here is one way to display an image for the span element with a class of "icon-home" span.icon-home { background: url(/images/home.png) no-repeat; background-size: … | |
Re: if you are familiar with jQuery, try the `append()` method. http://api.jquery.com/append/ | |
Re: > to check responsiveness locally for websit If you use Chrome as your browser, there is a Chrome app you can use to test your site, even offline. https://chrome.google.com/webstore/detail/dimensions/hdmihohhdcbejdkidbfijmfehjbnmifk | |
![]() | Re: correct... that is not support on IE or Safari at this time. To remedy this, you need help server side. If you are using more than just HTML (php, asp.net, jsp, etc..) what you can do is on the response specificy to the browser what you want to happen via … ![]() |
Re: remove **main** from line 81 `#main, #header, #logo, #menubar, #site_content, #footer { ... }` Then create your own section for main.. #main { margin: 0 auto; width: 1180px; } | |
Re: @caseyclark- No one on this site is going to assist you with regard to hacking a computer at a school. | |
Re: >What do I have to add/remove in order to go up and not down? What do you want to happen when you hover over, then what do you want to happen when you are no longer hovering? | |
Re: >how to clear textbox when user refreshes page or clicks the refresh button in your page load procedure... TextBoxId.Text = String.Empty; | |
Re: >is written in asp.net while we want to be able to use PHP with our new product (for a network that seems to be running Windows servers and Acive Directory) Why would you want to do that? the current app leverages that because you can see that by using IIS … | |
Re: can you define "Line up 'Back'"? Im not following what you are trying to say. | |
Re: Have you tire uninstalling Visual Studio then re-installing it? VS2013 is compatible with 8.1 so re-installing should work You'd hope that these upgrades would always go well but they don't. It's always important to have a recent backup of your data/programs before you consider any upgrade or major change to … | |
Re: Just provide the code you have so far so we can take a look and provide some pointers.. if you want to see an example, there are plenty on the Internet, some that use only CSS, others that are javascript based, and others that use both. Here is one example … | |
Re: Both can be and are commonly used. | |
The End.