5,277 Posted Topics

Member Avatar for iamthwee

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 …

Member Avatar for iamthwee
1
225
Member Avatar for Keren_1

Remove the `{ overflow: hidden }` style from your `<body/>` element. The `{ overflow: scroll }` is not required on your #content div as gentlemedia describes.

Member Avatar for Keren_1
0
240
Member Avatar for Abhay_3
Member Avatar for Engr_1

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);

Member Avatar for yesi_1
0
173
Member Avatar for Chris_29

>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.

Member Avatar for Mr.M
0
246
Member Avatar for ramsiva

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 …

Member Avatar for JorgeM
0
130
Member Avatar for AntonyRayan

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 …

Member Avatar for JorgeM
0
162
Member Avatar for fireburner29

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 …

Member Avatar for fireburner29
0
869
Member Avatar for slyme

1 & 3 above look the same to me as well. I dont see why you are trying to escape the apostrophe.

Member Avatar for pritaeas
0
272
Member Avatar for Budy_2
Member Avatar for RudyM

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 …

Member Avatar for DaveAmour
0
226
Member Avatar for newbi11

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

Member Avatar for JorgeM
0
100
Member Avatar for Behseini

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

Member Avatar for Gangadharbc
0
300
Member Avatar for Arun_12

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 …

Member Avatar for tdrosiadis
0
174
Member Avatar for posiblehost

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 …

Member Avatar for vegaseat
1
211
Member Avatar for mattyd

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 …

Member Avatar for iamthwee
0
396
Member Avatar for <M/>

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 …

Member Avatar for iamthwee
0
500
Member Avatar for poncho208
Member Avatar for JimmysNetwork
Member Avatar for dasimon85
Member Avatar for berserk

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 …

Member Avatar for JorgeM
0
860
Member Avatar for AQ

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 …

Member Avatar for AQ
0
144
Member Avatar for patuie

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 …

Member Avatar for aminachour
0
158
Member Avatar for muraligowda

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 …

Member Avatar for JorgeM
0
340
Member Avatar for Omar_6

>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?

Member Avatar for JorgeM
0
169
Member Avatar for Bensirpent07

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.

Member Avatar for Bensirpent07
0
199
Member Avatar for richardham31

Yes, if you want to learn about web design and web development, I'd recommend you start with HTML.

Member Avatar for jenniferjudy2
0
326
Member Avatar for witakr

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

Member Avatar for almostbob
0
562
Member Avatar for TedBoolean

Yes but you have to provide the code that you are working with and explain where you are having trouble.

Member Avatar for JorgeM
0
66
Member Avatar for kamran815
Member Avatar for titas.datta

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?

Member Avatar for titas.datta
0
14K
Member Avatar for manofprogram
Re: CSS

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?

Member Avatar for tdrosiadis
0
136
Member Avatar for Mahesh57

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.

Member Avatar for matrixdevuk
0
239
Member Avatar for Elvi

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

Member Avatar for mattster
0
174
Member Avatar for utsavjoshi95

if you are familiar with jQuery, try the `append()` method. http://api.jquery.com/append/

Member Avatar for JorgeM
0
59
Member Avatar for pardeepkhatri

> 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

Member Avatar for muthu_kumar
0
431
Member Avatar for bikertz

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 …

Member Avatar for bikertz
0
140
Member Avatar for london-G

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; }

Member Avatar for london-G
0
162
Member Avatar for rastafarian

@caseyclark- No one on this site is going to assist you with regard to hacking a computer at a school.

Member Avatar for yomawm
0
6K
Member Avatar for Sorina_1

>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?

Member Avatar for tdrosiadis
0
151
Member Avatar for jasonkaven
Member Avatar for steve_Ali
Member Avatar for TalhaMoazSarwar
Member Avatar for newbie26

>how to clear textbox when user refreshes page or clicks the refresh button in your page load procedure... TextBoxId.Text = String.Empty;

Member Avatar for JorgeM
0
77
Member Avatar for toxicandy

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

Member Avatar for mattster
0
569
Member Avatar for methuselah90
Member Avatar for donz365
0
126
Member Avatar for userasad

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 …

Member Avatar for jasonkaven
0
301
Member Avatar for Benjamin_4

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 …

Member Avatar for JorgeM
0
109
Member Avatar for Sahuiikm
Member Avatar for pritaeas

The End.