I recently installed Platform builder 7 by Microsoft. It is a plugin for VS2008.
The plugin adds the following menu:
I want to remove several items from this menu and I would also like to add some button from it to a toolbar. The problem is that when I do customize I only get "advanced command placeholder" shortcut for the whole bunch. Like this:
How do I access the internals of these commands menu?
I am running the same AIR application under windows, linux and Mac OSX
Windows and Linux look fine, but under mac OS-X the controls are not showing any text.
Button, Tooltips, Labels, Check boxes, everything is blank.
I just ported that app to Flex 4. Flex 3 versions of the same app on the same OSX machine works.
How can I get controls to show text under Max OSX?
Is this a font problem?
I've got some code which works fine in IE but unfortunately not in Google Chrome/Firefox.
It relies upon calling a click() event on a button from javascript. Reading around it seems that this is an IE specific extension (doh). Is there any way I can do a similar thing in chrome + firefox?
Thanks
I've seen developers use various methods to prevent spam on a basic html contact form
Method 1 is where the developer uses a Captcha image and Method 2 where only a Question is asked eg. Are you Human? with a radio button.
Which one is the better one to use and why?
Hello everyone, I have a tableView that loads its data directly from a Core Data table with a NSFetchedResultsController. I'm not using an intermediate NSMutableArray to store the objects from the fetch results;
I basically implemented inside my UITableViewController the protocol method numberOfRowsInSection and it returns the numberOfObjects inside a NSFetchedResultsSectionInfo.
id <NSFetchedResultsSectionInfo> sectionInfo = [[fetchedResultsController sections] objectAtIndex:section];
and then I configure the cell content by implementing configureCell:atIndexPath and retrieving object info from the fetchedResultController but right now I have a generic configuration for any object (to avoid complications)
cell.textLabel.text = @"categoria";
I also have a NavigationBar with a custom edit button at the right that loads my own selector called customSetEditing. What I'm trying to accomplish is to load an "Insert Cell" at the beginning of the tableView so when I tap it, it creates a new record. This last part is easy to implement the problem is that I dont's seem to be able to load the insert row or any row when I tap on the navigation bar edit button.
this is the code for my customSetEditing:
- (void) customSetEditing {
[super setEditing:YES animated:YES];
[self.tableView setEditing:YES animated:YES];
[[self tableView] beginUpdates];
//[[self tableView] beginUpdates];
UIBarButtonItem *customDoneButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(customDone)];
[self.navigationItem.rightBarButtonItem release];
self.navigationItem.rightBarButtonItem = customDoneButtonItem;
//[categoriasArray insertObject:[NSNull null] atIndex:0];
NSMutableArray *indexPaths = [[NSMutableArray alloc] initWithObjects:[NSIndexPath indexPathForRow:0 inSection:0],nil ];
[self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationTop];
//[indexPaths release];
[self.tableView reloadData];}
Before adding the:[self.tableView reloadData]; I was getting an out of bounds error plus a program crash and although the program is not crashing it is not loading anything.
I have seen many examples of similar situations in stackoverflow (by the way is an excellent forum with very helpful and nice people) none of the examples seems to work for me.
Any ideas?
I am using jquery.load() to load a page on click of a button.
The page that will be loaded contains a captcha.
When that page is getting loaded due to the captcha it is making the page to reload again and it is not showing anything.
If i am removing the captcha from the load page it is working fine.
I am using ASP.NET.
Can anyone help me?
Hello,
i use the ThemeRoller from jquery UI, as follow :
HTML: <div id="switcher"></div>
jQuery: $('#switcher').themeswitcher({ .... });
How to apply a specified theme (for example : "Start") when i click on a input button ?
i have three JFrames, i want to close one of them without influence to another.
what can i do to get it ?
thanks Peter. I want to open two(or more) JFrames at the same time, and When I close one of them(use the default close button), others is still open.
Hey,
I want to populate a ComboBox after a clicked a button.
This is my code:
var dpNames:ArrayCollection = new ArrayCollection();
for each(var ca:Categorie in arrCategories)
{
dpNames.addItem ({label: ca.name, data: ca.value});
}
cbWijzigCategorie.dataProvider = dpNames;
But when he executes the last line, I alwas get the following error:
TypeError: Error #1009: Cannot access
a property or method of a null object
reference.
I have no idea why.
Thanks a lot,
Vincent
I'm building an Android application where I want users to connect by their facebook details.
According to my design, when the application starts first time, I want to display a layout with LOGIN facebook button. After the user will perform login for the first time, I dont want to display this layout/activity again - when the application would be relanched, I want t display another (home) screen, and not the LOGIN one. How should I implement this functionality?
Thanks
i am using Visual C# 2010 express and i need the most reliable way (on button click) and in .NET 2.0 framework to detect if windows is currently x86 or x64 in a message box.. up till now i have been using this code but i need to know if there is a more accurate way?
string target = @"C:\Windows\SysWow64";
{
if (Directory.Exists(target))
{
MessageBox.Show("x64");
}
else
{
MessageBox.Show("x86");
}
Hi All i am working on mvc4(webapi)
i need create for single image into different sizes
for example i had loaded a image for file upload control
once press the button of upload the single image should divide in to different sizes (like thumbnail
large size medium size )
actually i am new for webapi i don't have any idea about it but i need to make this by writing hard code i will provide a path for it to store images could any body plz help me to do this work
thank in advance
I have a datagrid which shows the search reasult(time entered by the user preveiously)on a button click event depending uppon the input name or date enter by the user,i want to show a drop down list for a field selection like depertment whenever user want to edit the data in datagridiew,i am using access database & asp3.5.
Hello everyone
I have a form, that includes a drop down list, and a submit button.
The drop down list has 5 values.
Let's say the user chooses value #3, then clicks submit. How would I prevent the drop down list from setting itself back to value #1?
Thanks!
I have a button on my applet (contained in a browser) that I would like to make reload or refresh the entire applet one of two ways:
Refresh the applet itself without having to refresh the browser
Refresh the entire browser
Is this possible from within the applet?
Hello,
I've removed the primary key of one table of my MySQL database, but now, when I use the MySQL Administrator and try to edit some data of this table, it doesn't allow me to do this.
The button edit that appears in the bottom of the table keeps visible, but disabled to click.
i create my own dialog form with two buttons (ok, cancel) and checked list box. i want to get all selected strings in first form which shown second form. for that purpose i do function GetSelected which return CheckedIndices-GetEnumerator() of my list box. now i want to deselect all strings on pressed cancel button. And deselect all strings on close form by pressing X in corner of form. how to track click the X?
hi,
I will let popup a form in C#.net 2.0 and it should be so long in front of the desktop until the user clicks the close button.
How to do?
I tried the code from here:
http://dotnet-snippets.de/dns/fenster-wirklich-in-den-vordergrund-des-desktops-bringen-SID1005.aspx
But it didn't work.
My system is Win7.
I am very new to XAML and WPF.I have a problem.
I have two files. first.xaml and second.Xaml. There is a button in first.xaml, on click of which it should navigate to second.xaml.How do i achieve this.
Hi,
I am new to this android platform.now I am Working on TTS(Text to Speech).what I am trying to do is that when i enter the text in the Text area it has to be converted to speech,when i click the speak button.can anyone help me out.Thanks in Advance.
Hello,
I want to pass a $_GET[''] to a php file, when a button is clicked it must display data from the db.
It displays the data without the query.
The process.php contains SQL statement to query the db and display values.
Thanks
Jean
Hello friends,
I have created split view based ipad app, where master view is table view while Detail view display images.. I need to display the image fit to screen 100% in landscape mode.
This could be on button event or double tap event.. Does any one know about it.
Thanks in advance.
I have a special content-type that I have created, and one of the fields is a radio button list. The last element is named 'Other' and I would like to have a textbox appear and allow the user to enter in a non-defined value.
Is this sort of capability provided by any sort of module, or is this something that needs to be coded by hand? (If so, would you mind pointing me in the correct direction?)
I have several JComponents on a JPanel and I want to disable all of those components when I press a Start button.
At present, I am disabling all of the components explicitly by
component1.setEnabled(false);
:
:
But Is there anyway by which I can disable all of the components at once? I tried to disable the JPanel to which these components are added by
panel.setEnabled(false);
but it didn't work.