The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
12 views

Win 2003 Domain controller and DNS [closed]

We have A PDC and ADC (Win 2003) and Now the ADC has crashed and The PDC directs to Crashed ADC for lookup of DNS, hence AD/Netlogon or Active Directory (though present in PDC) are not working ...
0
votes
0answers
44 views

android how to recreate fragment view

i have an android fragment when i'm creating view I fill fields from layout with values from an model. and at one point i want to recreate view using the same class model but with other values. ...
1
vote
0answers
19 views

recreate versions - carrierwave-fog-aws

I'm trying to recreate the images that I have uploaded using the following in my model... Post.all.each do |ym| ym.avatar.cache_stored_file! ...
2
votes
1answer
99 views

How do I import existing iPhone app without .xcodeproj file into Xcode

I have an existing iPhone app (made on a previous version of XCode by a colleague) that I would like to import into XCode. I have the files FirstViewController.h, .m, and .xib files as well as the ...
0
votes
0answers
10 views

System sef regeneration

I really nead help: I've deleted by mistake my joomla 2.5 system sef plugin and i can nolonger set url rewtite. I'm new in joomla so i need tutoriel step by step on how to recreate system sef and how ...
0
votes
1answer
53 views

Prevent Fragment recovery in Android

We are using Fragments and we don't need them to be automatically recovered when the Activity is recreated. But Android every time when Activity::onCreate(Bundle savedInstanceState) -> ...
0
votes
0answers
95 views

Dynamically recreate hard coded tabControl

I have hard-coded a tabcontrol, which loads a bunch of data for me to use, but I want to be able to throw the tabcontrol away and recreate the same one that I hard-coded, but blank without any input. ...
0
votes
1answer
123 views

recreate activity after rotate device and change orientation

I am using AndEngine in application which is in landscape orientation. After executing my app I am turning off the device and again turning it on. After rotate the device to portrait mode I am ...
0
votes
0answers
140 views

Recreate tab content after showing another fragment

I have a fragment with 3 tabs. The first tab hast a list of elements and when I click on one of them I show a new fragment with the content of the element (a picture). The problem is that when I click ...
0
votes
0answers
153 views

How to recreate FragmentActivity in API < 11?

I have FragmentActivity class which uses BroadcastReceiver. This receiver should recreate fragments because new data has come from my Service. public class MainFragmentActivity extends ...
0
votes
2answers
71 views

Recreate project from .jar file

Is there any chance, to recreate a (netbeans-)project from a .jar file? Becuase I trusted some silly cryption-software that corrupt's my file. Is their any suggestion or solution? I already extracted ...
0
votes
2answers
61 views

recreate view programmatically

I'm calling the following code fragment to swap a view.(on top of screen, there's a UISegmentedControl to switch views) SomeViewController* vc = [[SomeViewController alloc] init]; self.view = ...
0
votes
2answers
108 views

How to destroy an Activity so it doesn't show up when the back button is pressed?

I have two Activities, A and B. Here is a normal scenario: A is running, then sends an intent to B. A is paused, and B displays. When the user presses the back button from B, B us destroyed and the ...
0
votes
1answer
57 views

“Retweets” with Datamapper

I want to impliment something which is similar to Twitter Repost System, therefore I will use this as an example. So let's say I have a Tweet Model and I want to allow other user to repost a certian ...
0
votes
1answer
214 views

Android recreate() functions in api 7

I recently programmed a game on api 14. However i realized that not all my friends are yet upgraded there android phones, so i decided to program it on api 7. However when i changed the properties ...
1
vote
1answer
133 views

Android MediaPlayer - Unwanted new instance created whenever activity is instantiated

I've got a MediaPlayer inside an activity which is called whenever a user clicks on a specific song. Once the MediaPlayer is playing, if the user clicks back, they can select another song. The ...
1
vote
1answer
52 views

Are there jQuery functions &| libraries available to recreate this effect?

On the Johnnie Walker website, there is a timeline displayed with a horizontal scrollbar, clickable objects and a scrolling animations that somewhat resembles the album browsing screen in iTunes. Are ...
2
votes
3answers
284 views

SQL. Changes require the table to be recreated

There is a table full which contains data. Is it possible to change field from [not null] to [null] without dropping and recreating it? SQL writes that table have to be dropped and recreated. :)
0
votes
5answers
408 views

Use image's raw text and display it

You know when you open up an image in notepad or a text editor, you get a lot of random illegible text that looks like a bunch of foreign letters. For instance, this image: results in: ‰PNG IHDR ...
1
vote
0answers
150 views

UIView drawRect EXC_BAD_ACCESS on Recreate a Custon UIView

I having some problems with drawRect and create a new instance of a UIView custom class. My question is: How can i use of drawrect? I created a UIViewController with a UIScrollView and inside this ...
0
votes
1answer
255 views

Android: Force recreation of dialog

I am using the android dateslider custom dialog class in order to let the user edit the date for several different rows of a table. The dateslider lets you limit the user to only select dates between ...
2
votes
1answer
151 views

Recreate the Google+ navigation with jquery

I am currently trying to recreate the google+ navigation to the left, where you can switch your streams. I have got everything working except the functionality to show the menu opened at page reload ...
0
votes
6answers
2k views

How to get query that would recreate sql table?

Possible Duplicate: how to take backup of a single table in the mysql database? Simple question: I have table on MySql server and would like to get the code that would re-create that ...
1
vote
1answer
393 views

JQuery: How to Redraw Slider?

I need your help desperately since I spent too much time trying to modify Jquery Slider Plugin with no success. I am using this slider plugin: ...
0
votes
2answers
59 views

Creating new array from looping another array

I need to tidy up an array. And gather all similar information together. This is going to be a huge order that I'm bringing to the table, however, it's well beyond my skill set and I've been trying ...
1
vote
2answers
1k views

Dynamically recreating controls on postback for each row of table (ASP.NET/C#)

For every row in my 'table' I am manually creating, there must be a LinkButton to delete a database row that matches a column in the table. Because no 2 controls can have the same name, I've had to ...
0
votes
2answers
111 views

Resolving difficult to recreate bugs

In a js app I'm developing there are a few bugs that recur every now and then for some users who are testing it, but I've been unable to recreate them myself. What tools/approaches are there to ...
1
vote
3answers
604 views

Maintain UpDown-Associate connection while recreating the associate

I have an TUpDown control whose Associate is set to an instance of a TEdit subclass. The edit class calls RecreateWnd in its overriden DoEnter method. Unfortunately this kills the buddy connection at ...