up

Access sites on IIS

I have inherited a system with a number of servers, but I have never worked with IIS before. Currently there is a web server set up using IIS, it holds a number of 'test' sites and the server is called Staging. I have network access to the files on the server and I can login to the server via VNC. What I cannot do is view any of the sit...

Design Model Survey?

Hello, I am trying to do a Design Model Survey, however im am unsure what it includes. I have tried googling, and found the Term 4+1. the 4+1 does not correlate dirctly to the Softare Architecture Artifact Does anyone have any good examples of the design model, or a tutorial or on how to do it, or even a list of what it should contain ...

can we do without using a hyper link button .how to call another .aspx page as pop up window in to current code behind page

any reference document ...

Opening pop up in Joomla

I am trying to have people be able to open HTML widgets by clicking on a button in my Joomla page. All the widgets are different sizes. The code is entered as HTML in Jumi. Currently I have the action set to: "On click open in new window without browser navigation." The problem is this this always opens in a full screen size with the w...

Setting up the start up form in visual studio team system 2008

hi, I am working on a windows forms application using C# in visual studio 2008 team system. I would want to display a different form at start up of application. Please help (In project properties , under application tab there is no display of different forms name in the combo box) ...

Java: string tokenizer and assign to 2 variables?

Hi, Let's say I have a time hh:mm (eg. 11:22) and I want to use a string tokenizer to split. However, after it's split I am able to get for example: 11 and next line 22. But how do I assign 11 to a variable name "hour" and another variable name "min"? Also another question. How do I round up a number? Even if it's 2.1 I want it to rou...

Cannot capture TouchEvent.UP in Blackberry

I am working on a Scrollable Image field.I am handling TouchEvent.DOWN mTouchEvent.MOVE,TouchEvent.UP. Somehow control never goes to TouchEvent.UP section.How to capture the UP event. I have to findout the start and end points of the drag. My Code looks like this.. if (event == TouchEvent.DOWN && touchEvent.isValid()) { ...

Sign up form text shows white with a white background

I have a sign up form on a website that I am developing using dreamweaver. The input text and background text are both showing as white (or not showing!) even though the page text is set at #0000CC. See it here: www.betterlifecoaching.co.uk (it is still work in progress) How can I overcome this? The sign up script is: <style type="text...

Get value of "data"

Hi, I need to figure out the value of data strings with jquery, for example like this: { label: "Beginner", data: 2}, { label: "Advanced", data: 12}, { label: "Expert", data: 22}, to add them up. Something like: var sum = data1+data2+data3; alert(sum); So the result for this example would be 36. Appreciate your help! Nic...

I created an access database in Access 2007 and split it, now I need to add another table. Is this possible?

I can add the table in the backend or the front end, but if I add to the front end, it doesn't update on others computers. If I add it to the backend, it didn't show on the front end either. Probably because it is not linked. How would i link the new table AFTER I already split the databse? Thanks! ...

Bank angle from up vector and look at vector?

Hi all. I can't figure out the formula to compute the bank (roll) angle from the up and lookat vectors, though I feel this angle must be measured in tha plan normal to the lookat vector. Any hint appreciated. FYI I use WPF. I have posted another question here, which is the same problem, but expressed only using math. ...

Form hangs up - VB.NET 2008 (on 64 bits Vista)

Hi: I have detected a problem running my application under Vista 64 bits OS. My application is developed using VB.NT 2008 and compiled as x86 I have a main form. In this form there is an option to open other form. TThis second form must return a few values to the main form. When the user click on this 2nd form, to return values, this...

Sessions getting mixed up PHP

Hi we have been operating a system for about 500 users online on one centralized dedicated server. Our application is coded in PHP. Recently when we have a reasonable load of about 100 -150 users sessions start getting mixed up. For instance if a user logins as A after a while his session switches to User B who is also logged in. The sys...

C# 2.0 Display ALL Windows start up items (programs,dlls,services) for all users and be able to enable or disable them.

Id like to have a tab on my windows form application where there would be a drop down list for each user that shows DLLS, Services, Programs that start up with that user. Where can i look to start this project? iv searched google the closest thing i can find is this: http://www.dreamincode.net/forums/topic/121859-getting-all-startup-ite...

.net windows application with sql database + create a setup

Hello, I have created one windows application in .net 2.0 and it uses SQL database in back end. I want to create a setup file for this application so that I can install it and run it on any machine which does not have either .NET framework or SQL Server. Please give me some useful link for this. ...

Dual monitor and browser pop up windows

Hi, I have a question about dual monitor in regards of IE browser pop up windows. The application I have developed launches a pop up window as input form at some point. It is working OK in single monitor environment and pop up gets positioned properly in accordance with JavaScript parameters I set up. I have been informed that when du...

PHP Sign up script not working! mysql insertion failed

Cannot find the bug here, think so this whole script is fagged up, still can not see any signs of success as such. The problem is when the form is hit with the specified details i.e. username , password and an e-mail address are not inserted into mysql database and I am unable to verify through PHP "How to check if details are present in...

Working with Arrow Keys in a WPF Textbox (C#)

Is there any way to catch the Up/Down arrow keys in a WPF TextBox (System.Windows.Controls.Textbox) and allow them to alter the text? I've read about overiding the ProcessCmdKey method for a Windows Forms TextBox (System.Windows.Forms.TextBox), and it worked fine, but that TextBox is not nearly as flexible as the WPF one. Is there a simi...

How can I make a horizontal nav menu that on hover reveals the sub menu items and slides up above the main nav using jquery?

I want it to slide up from the bottom right about my main nav menu just like this site. jefflewisdesign.com I know that site is down in flash but I know that nav can be done in jquery. thanks. Here is how I have it so far. <div id="slidebottom" class="slide"> <h2>Item</h2> <div class="inner"></div> </div> $(documen...

How do I open a C file with a relative path?

I am trying to parse a txt file and I want to reference it relative to my current directory location. If I put the file path in completely it will work but it I try to use ..\src\test.txt it wont find it. Is this not the proper way to reference a file relative up one directory? Any help would be appreciated ...