I've heard that windows mobile 7's user interface (UI) is completely based on silverlight. can anybody confirm this? or it is implemented by other frameworks?
thank you
Using Javascript, Jquery preferably, I want to be able to trigger the visiblity of the div when a user is at a certain page height. NYtimes has an example of this when you scroll to the bottom of a story, a slider pops out with another news story, and goes away if you scroll up.
Hi
Is there a way to know when a view is viewable to user?
For example: if I have 2 views, and one of them is "hiding" the other-
how can I tell that the "hidden" view is currently not visible on screen,
and how can I check to see when it becomes visible again?
Thanks.
I've read a number of posts regarding how to detect shakes but I'm not sure:
What is currently the best way to detect shakes?
and -
How to play an audio file ONLY while the user is shaking the iPhone?
Anyone have an advice, examples/tutorials or sample code?
Thanks
I have a user control with the following code in it.
[System.ComponentModel.Category("Appearance")]
public override string Text { ... }
private int myVar;
[System.ComponentModel.Category("Appearance")]
public int MyProperty { ... }
MyProperty shows up in the property grid when the control is inserted in a form, but Text does not. How can I get it visible?
Hi
I am developing my user control using a textbox control using c#.net
now i want to add a smart tag to it same way as the built in controls are having
but i don't know how to do that please guide me
Thank You
Hardik Patadia
I've heard that windows mobile 7's user interface (UI) is completely based on silverlight. can anybody confirm this? or it is implemented by other frameworks?
thank you
Given an ASP.NET MVC Controller class declaration:
public class ItemController : Controller
{
public ActionResult Index()
{
// ...
}
public ActionResult Details()
{
// ...
}
[Authorize(Roles="Admin, Editor")]
public ActionResult Edit()
{
// ...
}
[Authorized(Roles="Admin")]
public ActionResult Delete()
{
// ..
}
}
I need to reflect a list of methods in this class which may be invoked with the current user's permissions.
Please share some ideas of what could be done in this case.
KeyDown Event is not responding till any user control is clicked or setFocus implicitly . I want to fire the key event after the page loads , anytime.
I tried like :
private void Page_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key.ToString() == "Escape")
{
string uri = "/Views/Music/ArtistbyAlbum";
this.NavigationService.Navigate(new Uri(uri, UriKind.Relative));
}
}
void LayoutRoot_KeyDown(object sender, KeyEventArgs e)
{
MessageBox.Show("hi");
}
Please help.
Thanks,
Subhen
IS there an easier way to animate the table view. All the rows in my table view change when the user clicks the tab on header of the section of the table view.
I'm developing a web site with Joomla, and I want to use an e-mail address as a user name.
I tried to edit default.php and controller.php in com_user/register directory but that didn't work. Any other ideas?
When I release the update to my app in the appstore, and if the user updates the iphone app, will the data like core data in the external storage belongs to the app will be reset? If it is, how to keep the original data?
Thanks!
This is what I have so far
<input type="submit" />
<fb:prompt-permission perms="publish_stream">Click Here</fb:prompt-permission>
I want to prompt the user by showing him a dialog box to allow my application to publish in his news feed when he clicks the submit button.
How could I let a user jot a quick hand-written note on an iPad using a Pogo-like stylus? (Or by using their finger, some kind of stylus makes it more legible feasible.)
Initial thoughts:
1) Open GL canvas?
2) Store the output as a .png/.jpg snapshot of the openGL screen (by taking a screenhot of the iPad?
3) Would the note be limited to one screenshot, could there be a scrollable area notepad to write out a long note?
I recently built a site using Asp.Net.
The way I chose to implement user login is through a base 'UserAwareController' class, that all controllers extend. It contained a reference to the UserRepository, and exposed a protected GetCurrentUser() method that concrete controllers could query.
The whole process felt a bit wishy-washy to me. Is Action Filters a good alternative? What are its benefits? Is there something else I might be missing?
I got this code and working fine
$access_token = $facebook->getAccessToken();
$vars = array(
'caption' => 'Caption message',
'message' => 'I need help',
'name' => 'I need Help',
'link' => 'http://www.google.com/',
'description' => 'description',
'picture' => ''
);
But I want to replace the message or the name in to like : " (name of user) Need Help...
I want to have a login form on a charity website I am building (it's for a friend, and I'm learning on the go), and I want to know what languages/software should I learn to build databases for user logins and info? Note: it HAS to be secure and relatively simple to learn for someone with moderate programming experience.
Update: I understand that CMSs offer good tools for logins etc. but I want to do this all by myself.
The website has a normal registration form which allows users to register and the likes.
I have created a new custom form in which I am capturing the username/password etc. How do I manually register the user in Drupal system?
Thank You
Hi folks,
We all know you can implement drag-and-drop feature for your Window so that it accepts drag and drop operation, but my question is, how to detect a drag-and-drop operation that's is in progress in other windows, for example, dragging a file in the Windows Explorer? What I want to do is that when a user is dragging a file then my hidden window shows up.
Thank you!
when i tried to uninstall xampp and reinstall xampp.I received below error message when i go phpmyadmin
Need help and guide to solve it .thanks
Error
MySQL said: Documentation
1045 - Access denied for user 'root'@'localhost' (using password: NO)
Connection for controluser as defined in your configuration failed.
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.
I have added the following code to my SlickGrid table:
grid.onClick = function(e, row, cell) {
$("#cellDetails").html("Row = " + row + "\nColumn = " + cell);
$("#cellDetails").css("top", e.pageY - $("#cellDetails").outerHeight())
.css("left", e.pageX)
.show();
$("body").one("click", function() { $("#cellDetails").html("").hide(); });
return true;
}
If user clicks a cell, and then scrolls the table down, the cell details box still appears.
How can I hide it in this case ?
When someone clicks on a link, it sends them to it. But when a user clicks back, i want it to be at the position where they were before.
What is the name for this and how do I go about doing this?
Do we have to do something special to have ASP.NET partial classes aware of controls that are declared in our user control's base classes? The partial classes keep generating declarations for controls in the base class which mean the controls in the base class get hidden and are null.
Is it possible to obtain some kind of statistics on which user spent how much time on which application when they log into Google Apps?
Applications example would be gmail/sites/talk etc.,
We have a big portal that needs user registration to allow them use its services. It's already done in .NET and SOL Server 2005. we are in the phase now of discovering all the problems of the current registration system to build a new robust flexible one that can be extended easily and can be more usable for all services.
Could any help me find best practices and design patterns to help me rebuild this using good architectural practices?