Posts

Showing posts from August, 2015

SQL Combining 2 result sets in an ordered way -

Can someone order 2 questions in the same result set? More specifically, if I had 2 queries: select 'line', product, numerical_with numbered orders by product; Select 'Total', Product, Sum (numeric_free) from the numbered group by product; There is one way to combine two questions, so that the result set will look like this: Type product numeric_value line item 1 23 line item 1 57 Line items 1 23 total items 1 103 line items 5 20 line items 5 50 line items 560 total items 5 130 ... Basically, I'm looking at a list of all item records of a product, then show them an amount for them, Then the list of all item records of the next product, etc. Doing this Is there any way, or is this an impossible task? Thank you :) In many databases, you can do this with rollup However, since you have received it: from the select * (select the 'line', the product, numeric value of the numerical value) union all ('total', product, Choose the am...

Debug keystore for Android expired - INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES- IntelliJ -

मैं IntelliJ IDEA 12.0.4 के साथ काम कर रहा हूं। मैं INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES संदेश को बार-बार प्राप्त कर रहा हूं मेरे एमुलेटर और मेरे फोन पर मेरा ऐप। मेरा मानना ​​है कि त्रुटि मेरे डिबग.कीस्टोर की समय सीमा समाप्त होने पर आई, और मैंने इस समस्या का हल पुराने संस्करण की स्थापना रद्द करके एमुलेटर पर किया। > हालांकि मैं फोन पर ऐप को अनइंस्टॉल नहीं करना चाहता क्योंकि इससे उपयोगकर्ता डेटा हट जाएगा। मैंने ऐप्पदे को अपनी रिहाई कुंजी के साथ हस्ताक्षरित करने का प्रयास किया है और फिर उस पर फोन पर एपीके फ़ाइल और निष्पादित) - लेकिन यह प्रमाण पत्र के कारणों के लिए भी स्थापित किया गया था। क्या यह ठीक नहीं होना चाहिए? मुझे क्या करना चाहिए? पीएस: संदेह से बचाव के लिए - मेरे पास केवल एक विकास पीसी है, और केवल एक प्रमाणपत्र ... एंड्रॉइड को यह जानने का कोई तरीका नहीं है कि आपकी डीबग कुंजी आपकी रिलीज़ कुंजी से संबंधित है। यदि आपके ऐप के पास एसडी कार्ड तक पहुंच है, तो आप अपने डेटा फ़ाइलों को एसडी कार्ड में कॉपी करने के लिए कमांड प्रॉम्प्ट का उपयोग कर सकते हैं। ...

c# - Can't use FileFormatException (?) -

I am currently writing a custom importer for my small XNA project and for the importer import Method I have referred to WindowsBase.dll , so the FileFormatException should be available under the system. IO in IntelliSense, right? I type System.IO and there is no autocomplete with System.IO under FormFormatException . Statement is located: Namespoten Tetrominoemporter {public class Tetrominovider: Content emporter & lt; Tetromano & gt; {Public prong block block filename = "blocks.txt"; Public override tetrovineoin import (string filename, content importer contact reference) {// here You need to include WindowsBase in your references, as fileFormatException is defined in that assembly. Once you add it, you get the system. IOfile Format Expansion should be able to solve

sitecore6 - Sitecore - Do stuff when media item saved -

When a media item is saved, I have to run some custom code, but no media items are found in the pipeline. We are not trying to change the item anytime that ever - when we save any media item, we run some custom code. Google mentions Sitcom. Resources. Media. The media provider but I have read that it can not be overridden. Is anyone aware of a pipeline or custom processor that we can be removed when saving media content? I am running Sitcom 6.5Rep 120706. Cheers A MediaItem receives customItemBase class from the CustomItemBase class Also uses items: saved events so that you can create a custom event to handle your custom code. This is a quick way to check that you are working with media entities: if (myItem.Paths.IsMediaItem) {// your custom code}

java - How to check if object have been saved to database -

I am using Spring JDBC and I want to make a method that checks whether the database has been continued so far or not, which means that there will be an automatically increased key. I have a code whose name is id is int since primitive entries are auto-assigned, if no other value is given, then I can make a method That checks for id == 0 but then I have to make sure my primary key starts at sequence 1. I can also determine if the object has been saved or not, but I did not want to do a query for it. I think the last option was to change the type of id to integer and then check that it is null but I Do not know that this is a good way to do this. Is there a way to do this in the Domain Layer? to integer to replace id A good idea is considered: Frameworks of persistence such as PPAs encourage it (see this example and see through it). Using an object type immediately gives you an unreserved object to immediately check that id == zero . Just for completeness: ...

jquery - fancybox and wordpress: image titles -

I should work well with WordPress without the plugin, but I am struggling with the image title. Fancybox is showing in the anchor for the title but WordPress puts the title in the IMG. I have seen all the workings and tried to solve all stack overflow, but nothing is working. I think there are two options: 1. Tell the fancy box to use the IGG title (or alt) instead of the anchor title 2. Run a function to remove the attached title and it will be in anchor Insert There are many solutions around it, but I am clearly doing something wrong. Any suggestions? You can use to & lt; Img & gt; Callback of faxbox like can get value of alt or title attributes in the tag: $ ("Fancybox"). Get Fancybox ({beforeShow: function () {// Option 1 // Get the title from "Alt" attribute to this.title = $ (this.element) .find ("img"). Attr ("alt"); // Get title from title "title" in option 2 // IGG tag // this.title = $ (th...

Is there a elegant c++ API to Hadoop? -

Is there a way to submit a job / reducing job to hopop from C or C ++? Something like this but in C ++ (this is Java code): configuration configuration = new configuration (); JobConf Job = New JobConf (config); Job.setJarByClass (MyFirstJob.class); Job.setJobName ("My first job"); FileInputFormat.setInputPaths (jobs, new paths (args [0]); FileOutputFormat.setOutputPath (jobs, new paths (args [1]); job.setMapperClass (MyFirstJob.MyFirstMapper.class); job.setReducerClass (MyFirstJob.MyFirstReducer. Class); JobClient.runJob (work); Thanks. Google released an open source framework to run C or C ++ code on Hadoop.

asp.net mvc 4 - JQuery UI not working in MVC 4 after Scripts.Render? -

Not sure what the problem is here I have read some other solutions and tried to use them, but nothing not working. All I have to do is present a diatipiker. I've done this many times before, just not sure if I'm having brain problems because I have gone for the last few weeks or "what" time. I have the latest JQuery (1.9.1), the latest JQuery UI (1.10.2). I have checked the bundle config, and they all look well: add bundle (add new scriptbundle ("~ / bundle / jquery "). Include (" ~ / scripts / jquery- {version} .js ")); Bundle Add ("~ / scripts / jquery-ui-{version} .js"); Add new scriptbundle ("~ / bundle / jqueryui"). Bundle Add ("~ / scripts / jquery.unobtrusive *", "~ / scripts / jquery.validate *"); (Add new scriptbundle ("~ / bundle / jqueryval"). // Use development version of Modernizr for development and learning. After that, when you are ready for production // use the build t...

string - Parse error: syntax error, unexpected T_STRING in /srv/disk7/1259829/www/k00138899.atspace.eu/photoalbum/upload_file.php on line 102 -

I am using an HTML code to upload an image to an "upload" folder which is the tutorial I used to use. I wanted to add additional functionality as I want to display from that folder with details of that folder so that my plan file is stored in file like $ $ name. $ Extension I am using mysql and I can connect it, I have worked without databases in the database (just upload the image to a folder) The full php code is that http: / /justpaste.it/phpcodephpcode And this is just my extra part I am getting this error: http: // k00138899.atspace.eu/photoalbum/upload_file.php Change row $ sql = "$ tbl_name (PhotoString) Include values ​​(" http: //www.atspace. Com / photoalbum / upload / '$ imagestring'. '$ Filetype' "); for $ sql = 'INSERT IN'. $ Tbl_name '(photostring) value ("http://www.atspace.com/photoalbum/upload/'.imagestring.''filetype.' '' ')';

Is it possible to replace the content of a binary file in Alfresco? If not, is it possible to replace the entire file? -

Is it possible to change the contents of a binary file in Alfresco? If not, is it possible to change the entire file? The content is only a property on the node of type cm: content, Yes, this is possible. In fact, every time you edit the contents of a file in Alfresco, the content is replaced. It's just a matter of selecting a technology that is used

function - SQL SUM within Query and Group By Duplicates -

यहाँ परिदृश्य है: सारणी: कॉल मैने: कॉल_आईडी = पीके (आईएनटी) परित्यक्त (INT) या तो 1 या शून्य कॉलहोल्ड: होल्ड_आईडी = पीके (आईएनटी) , 0 या कई रिकॉर्ड रिकॉर्ड। हर बार जब कॉल पर हो जाता है तो एक रिकार्ड बनाया जाता है जिसे एफके द्वारा धारण के स्टार्टटाइम और पकड़ का एंडटैम के साथ संदर्भित किया जाता है। अब, कॉल करने के लिए एक क्वेरी में और इनकी कुल जानकारी वापस करने के लिए बार पकड़, मेरा मानना ​​है कि एसक्यूएल इस प्रकार हैं: CallMain.Call_ID, CallMain.Abandoned, IsNull का चयन करें ((CallHold.EndTime - CallHold.StartTime), 0) के रूप में CTIStatCall बाएं से HoldPeriodSeconds कॉल करने के लिए कॉलमॉल पर कॉल करें। कॉल_ऑफ = कॉलहोल्ड.कॉल_आईडी इस क्वेरी से उन कॉलों के लिए रिकॉर्ड्स वापस करनी चाहिए जिनके पास कोई धार रिकॉर्ड नहीं है और उन्हें नल के रूप में वापस करना चाहिए। एकल पकड़ रिकॉर्ड वाले कॉल सही तरीके से दिखाई देते हैं। शून्य से बाहर आने वाले नलों को ISNULL () फ़ंक्शन के साथ प्रबंधित किया जा रहा है और शून्य के साथ प्रतिस्थापित किया जा रहा है, क्योंकि कॉल के पास कोई प...

iphone - Cannot distribute AdHoc ipa file -

I have a xcode project that I would like to distribute to my colleagues, so I added all my colleagues in the UIDID In the Devices section of the provisioning portal, I downloaded and downloaded the ad-hoc provisioning file and clicked them so they came in my organizational order. I then used them in the encode and chose "build-archive", then I followed this guide to create a wireless app distribution. And the provisional file, plist file and ipa file were uploaded. But when I try to install an app using the link in my html file, it starts installing "" but the "Appnamexxxx" failed with this message could not be installed ". I do not know What I am doing and the error that I get, does not tell me anything ... "post-text" itemprop = "text"> I found the reason why it is not working I have all the subdivisions of the provisioning portal UNDIDS of the ranks had entered, but I did not see where they were supposed to be used wit...

Delphi typcast tlist items C++ approach -

Hello I have a question about some type of casting approach. I am translating some Delphi files into C ++. I have a Delphi declaration of class which is taken from TList and it is a base class for other derivative classes. Type TBaseItem = Class (TObject) Public Process Some Processes; Virtual; abstract; End; Type TBaseClass = Class (TList) Private Function GetItem (Index: Integer): TBaseItem; Process settings (value: TBCITIM; index: integer); Public Property Items [Index: Integer]: Read TBCIT Read Write Guest System Setting; End; Function TBaseClass.GetItem (index: integer): TBCITIM; Start the result: = TBCITAM (inherited goods [index]); End; Process TBaseClass.SetItem (value: TBaseItem; index: integer); Inherited items [index]: = value; End; These are the two base classes, Tibajitum and TBS classes. So new classes taken from TBIIlitem and TBEidclass have been announced as TchildItim which has been taken from TBsclass. TChildItem is overwriting some method method and what is...

Coffeescript shortcut for truthyness -

इस सवाल का पहले से ही एक उत्तर है: 8 जवाब मुझे अक्सर यह देखना है कि क्या एक चर या संपत्ति शून्य में नहीं है और सीएस में अनिर्धारित नहीं है क्या "सत्य" के लिए कोई शॉर्टकट है - ? के लिए अपरिभाषित ? @ ऑस्टिन मुलिंस, यह सच है, लेकिन मैंने मान लिया है कि यह सब कुछ के लिए जांच करता है और पाया जाता है कि कॉफी स्क्रिप्ट कम्पाइलर चर के उपयोग के आधार पर अलग-अलग परिणाम देगा। वेरिएबल जिन्हें उपयोग करने से पहले घोषित किया गया है (एक मान असाइन) ! = Null के लिए जांचें अपरिभाषित (यहां तक ​​कि जावास्क्रिप्ट को शून्य 0 के लिए अनिवार्य रूप से रिटर्न देता है) के स्पष्ट असाइनमेंट भी कंपाइलर व्यवहार नहीं बदलेगा। परिणाम समान है परवाह किए बिना? मुझे क्या मिला (पूर्वावलोकन लिंक) का एक डेमो, लिंक का पालन करें और चलाएं बटन ( शीर्ष दाईं ) पर क्लिक करें कोड ... ((आरजीआई) - & gt; str = "हैलो वर्ल्ड!" Num = 42 foo = arg # यह देखते हैं कि कंपाइलर चेतावनी पैदा करता है " Str # # {str} "अगर str? चेतावनी" num # # {num} "है, अगर num? चेताव...

php array_search find index value -

मेरे पास 2 सरणियों $ userArray और $ differentArray । प्रश्न: मैं $ userArray से सूचकांक मान ढूंढने की कोशिश कर रहा हूं जहां $ userId से मिलान करता है $ differentArray ताकि मैं प्रथम / अंतिम नाम खींच सकूं / print_r $ userArray का आउटपुट इस: सरणी ([0] = & gt; सरणी ([userId] = & gt; आईडी वस्तु ([_unknown: संरक्षित] = & gt; [id_: संरक्षित] = & gt; 8k6Y4FTrnxKY45XrVkXvVJhL) [fIRSTNAME] = & gt; जो [lASTNAME] = & gt ; स्मिथ) [2] = & gt; सरणी ([userId] = & gt; आईडी वस्तु ([_unknown: संरक्षित] = & gt; [id_: संरक्षित] = & gt; pCvR9qvIgGv8WyejcKmRtGD8) [fIRSTNAME] = & gt; मुकदमा [lASTNAME] = & gt ; मिलर)) print_r $ differentArray के इस आउटपुट: सरणी ([0] = & gt; सरणी ([तिथि] = & gt; 1363800434868 [userId] = & gt; आईडी वस्तु ([_unknown: संरक्षित] = & gt; [id_: संरक्षित] = & gt; 8k6Y4FTrnxKY45XrVkXvVJhL) [someTxt] = & gt; aaaa) [1] = & gt; अर्रे ([date] = & gt; 1363800858828 [userId] = ...

try catch - tcl file rename and catching error if file exists -

I am a newbie, and in some files I picked from the list of files. I'm trying to add the Skip extension. If a file is already present in TCL fileName.skip, then I would like to capture the error, put my own message on the screen, and I will continue the next file. Here's the code I'm using: set I 0 foreach fileName [glob -nocomplain -type f [file $ basedir * .wav included]] {foreach line $ fileData {if {[ Regexp $ Line $ fileName] == 1} {If the file {{file name change $ fileName "$ fileName.skip"}}} {{"error file leaving file file does not already exist"} {continue} {Puts "$ fileName.", "Rename File" [file contains $ $ addir $ fileName] [File $ $ based on $ $ $ $ $ $ $ $ $ $ $ name] / Code> I have three files in my folder I am testing it on: test21.wav test21.wav.skip test22.wav This code executes at that point where it The name is given (or does not change the name of the file), but then it is printed on the screen: ...

How to call a method in Objective-C? -

इस सवाल का पहले से ही एक उत्तर है: 6 उत्तर मैं बस में शुरू कर रहा हूँ IOS और प्रयोक्ता परिभाषित कार्यों को बनाने की कोशिश कर रहा हूँ ... मेरा कोड: - (शून्य) testFunction {// के पास स्वयं है कॉल} - (IBAction) बटन: (आईडी) प्रेषक {testFunction (); } मुझे चेतावनी मिलती है: सीएमटी में समारोह का पूर्ण घोषणा अवैध है मैं क्या कर रहा हूँ गलत? या मुझे अपने कोड में क्या जोड़ना है? उद्देश्य-सी में आप लिख सकते हैं testFunction () । आप 'संदेश' भेजते हैं और आप ऐसा कर सकते हैं [self testFunction]

c# - show progress bar/ring in windows 8 app while a webpage is loading in webview control -

I have experience adding progress bars and progress rings when calling async functions. It has been an easy task because it progressed progressively The time and progress of the ring depends only on the ISI and iActive properties. Now my question is, how can the progress bar / ring in the app be shown, while some webpages are loading in the webview control of Windows 8 app. I am searching for a property or event, which tells the web page in the web view is currently in the loading position. If someone came into such property, please write it down, if you have any other solution, please tell! Announce the first representative Public representative Zero Load Edit The handler (object Sender, navigation events, cargo e); Logically add the following code to the area on which progress bar / ring should start showing. progressing 1 ISActiv = true; // ProgressBar1.IsInderminate = true for Progress Ring; / / For the progress bar // adds this line to move control to an ...

c - How to read multiple number from a text file -

Then this is my code and I'm getting division error. How can I format this code to read a set of numbers from a file? My input looks like this: 82, 46, 71, 56, 44, 12, 100 62, 67, 64, 65, 62, 39, 68, 68, 90, 78, 57, 76, 45 , 82 etc. #include & lt; Stdio.h & gt; Int main () {FILE * input = fopen ("input.txt", "r"); Integer line [7]; Int store = 0, read; If (! Input) {printf ("Error: file name \" input.txt \ "not found! \ N); } Store = 0; While (fscanf (input, "% d", read more)! = EOF) {line [store] = read; Shop ++; } Printf ("% d% d% d% d% d% d% d \ n", line [0], row [1], row [2], row [3], row [4], row [5] ]], Line [6]); Return (0); } Change your time lapse position to: while (store and lieutenant; size) / sizef (& amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; amp; d & # 39;; & more!) = EOF) If there are more numbers in t...

ruby on rails - I want the user only enter the password once, so they never have to enter it again in the future -

In my rail app, I use HTTP Basic authentication for app mobile only, and I do not want users Everybody has to keep logging on opening the page. Is there any way to store user / pass for future use of the app? I really do not really need to finish its deadline, but I just want to enter at least, since the first thing to come first is to log in at least. Thanks Safari at iOS does not remember at least such credentials If you are using http basic authorization, you can go to the site using a URL and save it as bookmarks if you are resting the password saved in the password.

database - Upper case before insert a row -

I need to put all my data in uppercase. I am using an Oracle database, and I wrote a trigger Which could work. The problem is that I do not know: new overrides can be done. This is my code. Change or change the trigger my_trigger at the first or my_TABLE on each row for the removal cursor field Select from COLUMN_NAME user_tab_columns WHERE table_name = 'MY_TABLE'; Area user_tab_columns% ROWTYPE; LOOP DECLARE theField VARCHAR2 (100) for field in field field: = field.COLUMN_NAME; Newest NVARCHAR2 (1000): =: New. "MY_FIELD"; BEGIN: NEW. "MY_FIELD": = UPPER (nValor); End; End loop; End; / This field works with "MY_FIELD", but I need to use "variable" instead. I think that all the fields in the table are changed You can. I hope someone can help me or recommend me another way of doing this. Thank you. /p> The way you want your code to work, it is completely disabled for each modified row Imagine, Oracle must loop through...

uml - Diagram to represent user interaction with different parts of the network -

Can someone recommend suitable diagrams to represent user interaction with different systems because different Are the tasks? I think that would be nice on the lines of the UML sequence diagram, but I think they are more than os programming than system interactions .. This non- OO is a piece of PHP to represent software that interacts with various cloud technologies, to evaluate whether a certain concept can be possible with current state technology. The software is already built and the purpose of the diagram is for the research paper along with it. There are three main processes that test different areas of the same system, although they are all related, I'm not sure that one big or three small pictures will be better. If you want to emphasize which messages are being discussed , Then a sequence diagram is appropriate. It is used for OO models, but for network literature (for example) it is often used to find them. If you want to emphasize control flow , then ...

ruby on rails - Compare two arrays using include? -

मेरे पास दो सरणियाँ हैं: @all_genres = [# & lt; शैली आईडी: 1 , नाम: "एक्शन", बनाया_टः "2013-03-01 07:44:51", अपडेटेड_ैट: "2013-03-01 07:44:51" & gt ;, # & lt; शैली आईडी: 2, नाम: " साहसिक ", बनाया गया_टाः" 2013-03-01 07:44:51 ", अपडेटेड_ैट:" 2013-03-01 07:44:51 "& gt ;, # & lt; शैली आईडी: 3, नाम:" एनीमेशन ", बनाया_ट : "2013-03-01 07:44:51", अपडेटेड_ैट: "2013-03-01 07:44:51" & gt;] @genres = ["एक्शन", "एनीमेशन"] मैं genre.id से @genres को @all_genres तालिका की तुलना करने की कोशिश कर रहा हूं। उदाहरण के लिए मेरा परिणाम होना चाहिए: @genre_ids = [1, 3] मैंने यह करने की कोशिश की है: @ All_genres.each do | g | अगर g.name.include? ((@ Genres.each {| g | g})। To_s) @genre_ids & lt; & lt; G.id end end मैंने इसे मेरे कंसोल में करने की कोशिश की और यह काम करने के लिए लग रहा था, लेकिन जब मैं इसे अपने ऐप में डाल देता हूं तो यह रिटर्न ...

c# - Using ASP.NET Charts in MVC -

I am able to create charts in MVC below, but the problem is that I can not add color, and much more Fancy things that can be done under ASP.Net Chart control. Is there an option to do this in chart type or MVC? Public Variation GetRainfallChart () {var key = New chart (width: 600, height: 400) (type "type": "bar", xValue: new [] {"January" , "M", "April", "May"}, yValues: new [] {"40", "10" "20", "20", "10"}) .AddTitle ("title" ). Type (); Return tap; } If you want to use the ASP.NET chart control, you might add Can be a web form page (or page according to your app design etc.) in your project. Web form and MVC may be able to co-exist and there should be quite a few blog posts, around this SE question etc. It can also have a web form control on the same page, but I have never ever dump it myself, so can not comment on 100%. The option is probably javascrip...

ruby on rails - Assigning an exception to a variable in pry -

So I'm trying to use pry to debug a method_missing in my Rail app : [5] pry (# & lt; Travel Agreement & gt;) & gt; E-name: Undefined local variables or # & lt; Method 'E' for Travel: Travel: 0x007fa3f30d13c8 & gt; This is my code 21: define_method (save_method) Do 22: If "@ # {method_name}" exists? 23: Start 24: self.send ("# {attribute} =", time .pars (instance_variable_get ("@ # {method_name}"))) 25: rescue = & gt; E = & gt; 26: binding.pry You always use the last exception through the global variable Can $! . See if your breakpoint works. It's possible that you have a breakpoint set elsewhere, and are actually debugging the wrong line.

read through 4 csv files in python and printing out the row based from the column id -

Hi guys, I'm a Noah in Python and I am currently learning, and I was thinking that someone could help me with the problem. Facing up I have four files: routes.txt, trips.txt, stop_times.txt, stops.txt, files look like this (files have thousands of rows): routes.txt "route_id", "Agency_id", "route_short_name", "route_long_name", "route_desc", "route_type", "route_url", "route_color", "route_text_color" "01", "1", "1", 3, "fff 7 "," 000000 "" 04 "," 1 "," 4 ", 3," FFFF 7C "," 000000 "" 05 "," 1 "," 5 ", 3," FFFF7C " "Direction_id", "trip_headsign", "trip_headsign", "trap_headsense", "trailer", "000000" "7", "1", "7", 3, "FFFF7C", "000000" trips.tx...

c# - how to disable a button for two seconds after click and then enable itself again? -

How to disable a button for two seconds after a click and then enable itself again? I want to do this in JavaScript onClientClick and after running OnClientClick it will run the OnClick event then enable the button again "post-text" itemprop = "text" > You can use this function: // disable the button setTimeout ("EnableTheButton ();", 2000); // This is done by clicking inside the event then declare this function: function EnableTheButton () Enable {// button here}

Android: Pull HTML and Process it -

"postprint" itemprop = "text"> I used to get the HTML for a site I used to have to pull the information from, but the website Anyone can use (server side, only client side). I am able to drag html through javascript. But when I run my code, my data field is not updated because it loads before my JavaScript finishes. I want to process data through JSOUP later. It is difficult to get along with HTTPCLient because it has a website with a login, and it is SSL secure I can get it through WebView (manual entry) and then drag data later. Is there a way to get or login to the past, or until all this is to wait in the second formula of loading HTML data? OnClickListener {TextView data; on the implementation of the main activity activity of the public class; Button getRost; WebView WebView; String code; @ Override protected void saved create (bundled Instansstet) {Suprknkret (saved Instensstet); SetContentView (R.layout.activity_main); Data = (textview) Find VV...

c# - How to make required validator or other validator being triggered error in Page_load even if no error? -

Page_load Even if there is no error, due to an error in the required verifier or other verifier? Scroll bar (0,0) unsuccessful and set the focus of a link failed, I came up with an idea to create a necessary validator at the top of the page, then there are no errors But also hope to trigger the error. The target iframe has a focus on the top of the page rather than the end of the page In Asp.net, set the "overflow" property in the div in the iframe, like "overflow: auto", the scroll bar is the default at the top, I think this is a property problem.

css - Twitter Bootstrap button group items getting cut off the screen -

Image
I am getting a part of my button to exit the viewing area. I use the standard bootstrap code I am using: & lt; Div class = "btn-group" & gt; & Lt; Button class = "btn btn-info" & gt; Sign in & lt; / Button & gt; & Lt; Button class = "btn btn-info dropdown-toggle" data-toggle = "dropdown" & gt; & Lt; Span class = "caret" & gt; & Lt; / Span & gt; & Lt; / Button & gt; & Lt; Ul class = "dropdown menu" & gt; & Lt; Li & gt; & Lt; A href = "#" & gt; Sign in with Facebook & lt; / A & gt; & Lt; / Li & gt; & Lt; Li class = "divider" & gt; & Lt; / Li & gt; & Lt; Li & gt; & Lt; A href = "#" & gt; Create a new account & lt; / A & gt; & Lt; / Li & gt; & Lt; / Ul & gt; & Lt; / Div & gt; I have issues similar to the bottom of the page, where...

jquery - Trying to animate the size of 4 images, each inside their own div? -

I want to enlarge the size of four different small images, each in their own div. Right now, I can animate the div, but the image inside the divis does not change. Is there any way to do this? This is an example of what's currently working: My current JavaScript: $ (document). Ready (work () ($ ("# green_box_container a"). (Function () {$ (this). Child (). ({Height: 105, width: 105}) $ (this) .siblings () Edit: It does not work just trying to enter $ (this). There are several ways to do this but to add a CSS style div img {width: 100%; height: 100%;} UPDATE What is the price of this, I have your HTML Is simplified. Check ... much simpler and cleaner.

python - How to share object tree with process fork? -

I do not have much experience with multithreading, and I'm trying to get something like work below: Process class node from multiprocessing import: def __init __ (self): self. Children = {} class test (define): def __init __ (self, tree): super () .__ init (__) self.tree = tree DRF (own): # infinite loop which does the stuff for the tree itself. Tree. Children [1] = node () self.tree.children [2] = node () x = node () t = test (x) t. start () print (xcand) # random access to tree I realize that it should not work for very sensible reasons (and not) but I'm not sure how it works to to mention the documentation While doing so, it seems that I need to do something with the manager and proxy, but I honestly do not know this Where to start from, or what exactly i want to do Can someone provide an example of the above mentioned? multiprocusing is limited In general, The code is> multiprocessing (after the initial fork) and depends on the clear communication b...

php - Get count of multiple condition -

My question is that I want to count three situations in the same query. I know that I can do it with running multiple queries but the problem is that I need it in a query my query that I've tried SELECT COUNT (if (AD2, Da, 0) ASD2, CAD (IF (D & T, 1, DR, 0)) from SAD 3 as TV and its result 4 4 4 but expected result 2 1 0 da column 3 2 1 3 SELECT SUM (if (RR & lt; 3, 1, 0)) da 1, sm (i.f. Lt; 2, 1, 0)) AS D2, SM (IF (RR & TT1, 1, 0)) TV to ASD3;

php - Issues with importing CSV file into MySQL when comma in address -

I am using a script that I found online to import the CSV file into MySQL. But when the script detects a comma in my address, CO 80113 in a cell, it is also divided as there. I have seen a solution where you can save from Excel to the Tab Delimited Test file. Then you go to Notepad and change the tab with a semicolon. Is this the best practice for "fixing a comma in the address"? My final goal is to take a CRV file from the highway, which is in our MySQL database from our hundreds of clients, then update every two months so that it is a good script, but am I seeing it wrong Am I Edit: It appears that the part of the PHP code that divides cells is while ($ data = fgetcsv ( $ Handle, 1000, ",", "'")); If you use commas as comma separator, you should quote all string field values, - 1, 'My address, CO80113' 2, 'his address, CO 80114' 4, 'his address, CO 80115' and so on FIELDS Contact Try using the ...

sql - need help making a dynamic query for oracle -

So I can be identified only runtime that need to select records from tables it is what got me , But I'm a bit stuck. Pointing on any help, suggestions or how to do it in a simple / right way would be greatly appreciated. DECLARE TABLE_NAME VARCHAR2 (255); QUERY_STR VARCHAR2 (1000); Select Start When UPPER (APP.MODULE_LONG_NAME) 'PLEDGE% in the beginning of' 'PLEDGE_HDR' the ELSE 'CONTACT_HDR' REQST_HDR RH TABLE_NAME the inner end LRT.REQST_TYPE_ID = RH.REQST_TYPE_ID LKUP_REQST_TYPE LRT. APP_MODULE_MSTR APP.MODULE_ID = LRT.MODULE_ID on APP; QUERY_STR: = 'SELECT * FROM' || TABLE_NAME || '- More filtering'; -SOMMEHOW Show results for QUERY_STR in table form ending; Update - As I could not find any solution to work, finish while I just use COALESCE because my query to only two tables to be based on the way Were. Thanks for everyone. Try something like: Change make or functions or the Chunen_a_fnkshn_nam returns SYS_REFCURSOR TAB...

c++ - Multithread Programming for memcpy -

I'm doing an optimization function for the memcpy function, I found this link here. Since I am not familiar with multithread programming, I do not know how to put the code into the original main function? How to modify the code in the original question in the Multithrand Memkpi project? I mean, how to prepare a whole project for this multithread memcpy project. Where there are places to insert tasks such as startCopyThreads or stopCopyThreads or mt_memcpy functions in the original main work #define NUM_CPY_THREADS 4 handle hCopyThreads [NUM_CPY_THREADS] = {0}; Handle hCopyStartSemaphores [NUM_CPY_THREADS] = {0}; Handle hCopyStopSemaphores [NUM_CPY_THREADS] = {0}; Typefif Structure {ET CT; Zero * src, * dest; Size_t size; } Mt_cpy_t; Mt_cpy_t mtParameters [NUM_CPY_THREADS] = {0}; DWORD WINAPI thread_copy_proc (LPVOD Ultimate) {mt_cpy_t * p = (mt_cpy_t *) Ultimate; While (1) {WaitForSingleObject (hCopyStartSemaphores [p-> gt; ct], INFINITE); Mempi (p-> gt; destruction,...

bash - Set a parent shell's variable from a subshell -

मैं एक सबशेल्ड से मूल शेल में एक वैरिएबल कैसे सेट करूँ? a = 3 (ए = 4) एकोरो $ a एक सबशेल्ड का पूरा मुद्दा है कि यह नहीं करता है कॉलिंग सत्र को प्रभावित करता है बैश में एक सबशेल्ड एक बाल प्रक्रिया है, अन्य गोले भिन्न होते हैं लेकिन फिर भी एक सबशेल्ड में एक चर सेटिंग कॉलर को प्रभावित नहीं करती है। परिभाषा से। क्या आपको एक सबशेल्ड की आवश्यकता है? अगर आपको सिर्फ एक समूह की आवश्यकता होती है तो ब्रेसिज़ का उपयोग करें: a = 3 {a = 4;} प्रतिध्वनि $ a देता है 4 (उस एक में रिक्त स्थान के बारे में सावधान रहें) वैकल्पिक रूप से, चर को stdout में लिखें और इसे कॉलर में कैप्चर करें: a = 3 a = $ (a = 4; प्रति एको = echo) echo $ a बैक-टिक्स `` का उपयोग न करें, उनका बहिष्कार किया जाता है और पढ़ना मुश्किल हो सकता है।

excel - Copying a range of numbers from regedit to multiple worksheets depending on tabstrip index? -

I excel in / VBA I am trying to create a Ugrform which to select a range of data and data category For a specific worksheet based on the tab strip index, will be allowed to copy, once the command button "Forecasting" has been selected. This is what I have to strip changes so far: private sub TbsMethod_Change () Dim tab Indies tab as index = tbsMethod.SelectedItem.Index case tab Chunenindaks case 0 Label2.Visible = True RefEdit1.Visible = True Label_a.Visible = False Label_b.Visible = False Label_g.Visible = False TextBox_a.Visible = False TextBox_b .Visible = False TextBox_g.Visible = False case 1 Label2.Visible = True .... this is where I believe the problem (Commandbutton_click) is: sub Purwanumanbaytn_klik () dim tab index Integer worksheet in form Worksheet tab in the form of tab index = TBS method. Selected ITem.Index Select Case with this workbook worksheet tab or "copies" module 'case 0 Application ( "B7: B 26") Episode 1 range (R...

unix - then not expected error on k shell script -

I wrote a simple K Shell program, but I did not expect the following error "line 11: 0403-057 syntax error" ' is.' The code is #! / Usr / bin / ksh function check_rm {number = $ # # Code number of the parameter if [$ 1-gate 0]]; #if RC is a success if [["$ number" -gt 2]]; Then / usr / bin / mv $ 4 $ 3 echo "error for $ 2" fi # user_name = `whoami` #mail_body =" $ 3 $ user_name is checked from "#echo $ mail if no other [[" $ Number "-gt 2]]; Then echo "echo" for "$ 2" then "usf / bin / rm -rf $ 4f echo" was "3f successful" } Can anyone please help Could? if and [[ ; Ksh needs to tell that there are two different ones. The script has the same problem later; You have to fix both events.

osx - Handling "dyld: lazy symbol binding failed: Symbol not found" error when nm does not find symbol -

postprint "itemprop =" text "> I have called a fat (32 and 64-bit) Intel binary myBinary that failed to do The Mac OS X 10.8.2 runs on another workstation running: $ myBinary dyld: lazy symbol has failed binding: referenced from __ZNSt8__detail15_List_node_base7_M_hookEPS0_: not found symbol / usr / local / Bin / myBinary in hope: /usr/lib/libstdc++.6.dylib dyld: Symbol not found: In expected / usr / local / bin / myBinary: referenced from __ZNSt8__detail15_List_node_base7_M_hookEPS0_ / usr / lib / libstdc ++. 6.Dylib Trace / BPT Trap: 5 I compiled from a Mac OS X 10.8.2 GCC 4.7.2 running workstation: $ gcc --version gcc (MacPorts gcc47 4.7.2_2 + universal) 4.7.2 I run nm and the symbol is undefined: $ nm / usr / local / bin / MyBinary | Grapple __ZNSt8__detail15_List_node_base7_M_hookEPS0_U __ZNSt8__detail15_List_node_base7_M_hookEPS0_ What do I miss or when did myBinary compile wrong? What do I do in / usr / lib / libstdc ++ 6.dylib one...

asp.net - send hashed password to user after registering the user -

I modified the user control with my custom fields. This control is not a password field. I am generating a password randomly with the membership. GeneratingPassowrd () method I am sending an email to the user after registering using the membership.Getuser (user name). GetPassword () method When I put the PassowrdFormat = Clear on the Web, OK, I want to change the Config file now in passwordFormat = Hashed . But if I format the password as hased then I can not retrieve the password. At the bottom line I want to send a password to the user who hash has been done. What is a workaround for this one I am searching for in Google, but no suitable answer was found. If someone gives your help hand, then it would be great if I followed them, but did not give any solution. As far as I know it is not possible to get the password from the password received with the password . If you need to send plain text through e-mail, you have to track it separately. Depending on how your co...

JavaScript debugging in Internet Explorer (all scripts on page) -

I am new to a project in a mature stage. There are several JS scripts and libraries on one of the pages, jQuery is used intensely. There is a strange error in IE 7/8 only: In the middle of the execution of page scripts, the object of jQuery is undefined, so everything else stops working. Two scripts have been specified in the middle of HTML, say, like this: script1 , there is an object which is expected in jQuery , but at the beginning of script 2 variable jQuery is already undefined. Please consider any idea where to debug and how to do it! Does the control of the execution of script execution and WHOLE result include JS (including debug) all the JS on one page? Thank you! :) UPDATE I have created a patch: script1 at the end of backup: var jQueryBackup = JQuery; I'm restoring it at the beginning of script2 : if (! JQuery & jQuery backup) jQuery = JQueryBackup; This script works, but it does not explain how a variable between the two scri...

javascript - display a table from a excel sheet -

I want to display the table in my html page with an Excel sheet. There are several tables in excel sheet, I want to display a specific table. Please help .. The HTML code that I used to extract information from the Excel file & lt; Html & gt; & Lt; Top & gt; & Lt; Title & gt; From Excel to & lt; / Title & gt; & Lt; Script language = "javascript" & gt; GetData (cell, row) function {var excel = new ActiveXObject ("Excel.Application"); Var excel_file = excel.Workbooks.Open ("C: \\ abc.xlsx"); Var excel_sheet = excel.Worksheets ("25 pe"); Var data = excel_sheet.Cells (cell, line). value; Document.getElementById ('div1'). InnerText = Data; } & Lt; / Script & gt; & Lt; / Head & gt; & Lt; Body & gt; & Lt; Div id = "div1" style = "background: #dfdff; width: '100%';" Align = "center" & gt; C: \ abc.xlsx & lt; / Div & gt; C...

html - PHP redirect doesn't work on IE? -

I try to insert a script to send an email and redirect to the main page. Yes, this is work! Code example: & lt ;? Php if (isset ($ _ POST) ['email'])) // Edit as required for 2 lines // $ email_to1 = "a@abc.com"; $ Email_to2 = "b@abc.com"; $ Email_subject = "Email from www.abc.com"; ................ ................ // $ headers = 'From:' to create e-mail header. $ Email_from "\ R \ n". Answer: ' $ Email_from "\ R \ n". 'X-Mailer: PHP /' phpversion (); // @mail ($ email_to1, $ email_sube, $ email_message, $ header); @ Email ($ email_to2, $ email_sube, $ email_message, $ header); Header ("Refresh: 3; http://www.abc.com/Contact.html"); ? & Gt; & Lt ;! - Include your own success here in HTML - & gt; Thanks for contacting us. We will contact you very soon. & Lt; Br> & Lt; A href = "http://www.abc.com/Contact.html" & gt; Back to Website & lt; / A ...

c - Can only one element of an array make a subarray? -

I'm not clear about everybody. Suppose: a [3] = {1, 2,3} whether 1,2 and 3 can be inducted in the form of A Are you Answer: In C, the array is basically an indicator with its length. You can do this: int a [3] = {1,2,3}; Int * p1 = A; // or p1 = & amp; A [0] int * p2 = a + 2; // or p2 = & amp; A [2]; and you can now work on p1 as an array of 2 elements ( {1,2} ), And as an array of P2 1 element ( {3} ), but you have to know or remember about sub-array lengths.

c++ - working with a stringstream, how do i unparse these strings? -

Image
I have a TCP client that receives data from the server as a stringstream. The server packs vectors (floats) in a big string and separates them from the flag. Now in my client, I separate these flags again, and store them in string arrays. Therefore each "token" should be a vector. But I just can not parse it back Strings look very strange to me, take a look: So again, I just need to do this in 3 layers it is parsed back. On behalf of the server it was sent as: data.addFlag (11); Data & lt; & Lt; Pelvis.x () & lt; & Lt; Pelvis.y () & lt; & Lt; Pelvis.z (); Data.addFlag (12); Data & lt; & Lt; Rhip.x () & lt; & Lt; Rhip.y () & lt; & Lt; Rhip.z (); Where operator is overloaded operator Edit: A token looks like this: if I call it float First = * reint_past & lt; Float * & gt; (Value) I get an exception. The wire looks fine, you just have to understand that when you change the four elements you ...

yourkit not giving string objects during memory profiling -

On attempting to monitor the object size, string objects are not displayed in profile results. Can someone tell me that they are the process of showing them in the results .... called public class calling (called myobj3 = new called); Myobj4 = new called (); Public zero function () {myobj3.d = "plz"; Myobj3.e = "help"; Myobj4.d = "thank you"; Myobj4.e = "you"; Myobj3.act (); Myobj4.act (); } Public static zero main (string [] args) {System.out.println ("called object." Obj = new calling () is calling; Obj.function (); }} Class {public string d; Public string e; Public Zero Act () {System.out.println (d + e); }} Memory profile maintained shallow size [irreversible] which is called 40 40 [unaccessable] 40 40 Perhaps, your objects are collected or scheduled for collection (do not get out of reach). Disclaimer: I'm your kit developer.

c# - How do I sort #region:s with a one click operation? -

We use #region #endregion blocks in our project. Is there any verses or extensions to move them smoothly? Actually, I do not know how they started from the sequence. They do this. Hope you want what select an area of ​​code and ctrl + k and s , then select #region and then specify your area name.

html - Using multiple class in one div with images -

I am using two squares in a div. The problem I'm having is, I have two different titles divs and each title will have its own image, I do not understand why each title will not display its image, both images are div I'll be stacked, what am I doing? Demo CSS . Title [boundary: 1 px solid # aaa; Padding: 4px 22px; } .inon-img1: first {status: absolute; Top: 4px; Left: 4px; material: ""; Background: URL (http://png-4.findicons.com/files/icons/366/icomic/24/images.png); Width: 24px; Height: 24px; } .inon-img2: first {status: complete; Top: 4px; Left: 4px; material: ""; Background: URL (http://png-5.findicons.com/files/icons/753/gnome_desktop/24/gnome_emblem_photos.png); Width: 24px; Height: 24px; } HTML & lt; Div class = "title icon-img1" & gt; Title 1 & lt; / Div & gt; & Lt; Div class = "title icon-img2" & gt; Title 2 & lt; / Div & gt; now status: relative; Add to your Title ...

C# Delegating Members - Resharper -

(Alt + Ins) लेकिन सदस्यों को क्या सौंपना है? अधिकांश खोज मैं अमेरिकी राजनीति के साथ आते हैं जो उपयोगी नहीं हैं। नियुक्त करने के तरीकों को बस तरीके से सीधे कुछ निहित वस्तु के माध्यम से सुरंग। उदाहरण के लिए: वर्ग MyClass {निजी SomeType innerObj = new SomeType (); पब्लिक बार गेटफू () {return innerObj.GetFoo (); }}

Can gdb print a specific variable every time it breaks? -

इस सवाल का पहले से ही एक उत्तर है: 1 उत्तर मुझे एक चर की जांच करने की आवश्यकता है यह पता लगाने के लिए कि यह सही तरीके से सेट है, जो कई छोरों के बाद हो रहा हो सकता है। अब मैं क्या कर रहा हूं, ऐसा कुछ है: (gdb) b myfile सीपीपी: 180 (जीडीबी) सी (जीडीबी) पी डिकोडर.एम_एमएसजी (जीडीबी) सी (जीडीबी) पी डिकोडर.एम_एमएसजी (जीडीबी) सी ... क्या मैं इस चर डिकोडर.एम_ एमएसजी हर बार प्रोग्राम टूटता है? जी हाँ, इसके साथ: $ break myfile.cpp: 180 ब्रेकपॉइंट 1 0x46ba0e पर: file myfile.cpp, पंक्ति 180. $ आदेश 1 & gt; प्रिंट डीकोडर.एम_एमएसजी & gt; एंड $

ms access - How can I find records in a table / recordset based on the result of a query on the same table? -

The first condition I am trying to return to the record for a warning system based on two conditions is that tomorrow's date [Date () + 1] for the type of booking book in the system with value. If that type of job also requires a type of value of A (in the second record) and the result field value is "not accepted", we need to return a warning. Example table: Job Type Number Company Date Results 58129 B3 22/03/2013 58129 A3 20/03 / 2013 Approved 58129 C3 So far I have succeeded in creating the SQL query in VBA to return the results of the first condition and is prevented through the result to return the relevant job. How can I insert these jobnets as criteria for the second SQL query or is it possible to add all the parameters to a SQL statement? My SQL so far: strSQL1 = "SELECT I.JobNumber, I.Type, I.Company, I.Date, I.Result" & amp; _ "To tblInspection I" & amp; _ "WHERE (((I.Type) = 'b') and (idad) = date () + 1...

networking - Can't connect to Azure using a VPN client to Rackspace through a Site to Site VPN with Rackspace and Azure -

We have site for the site VPN setup between RacketSpace and Blue when I am inside the Rackspace network (i.e. on Rackspace server Remote Desktop) I have no problem connecting with some weird VMS. However, when I connect to a rackspace using a VPN client, I do not get this behavior. The rackspace has told me that passes through the packet but nothing is returning back, they are telling me that it is under the VPN firewall configuration on the blue side. I have added our IP range to the auction under the local network section. Finding this with any help will be very appreciated. A bit of background is going on this route because we can not add VPN directly to the blue (we do not want to use to connect because we want it at our router level) and our There is no external IP so that we can not use any site Independent team is providing direct support

sitecore6 - Sitecore 6 Filtering Items based on a profile -

I am looking for a common method of filtering a series of sitcom items based on the current profile of users, I found a promising example: Although some important references are unavoidable, it is embarrassing because it is an appropriate general task resources. AnalyticsUserProfileEnableSwitch I could just have a Boolean switch The killer is applied USSprown File (filter) Please keep in mind that user profiles are not same as profiles in DMS . This is in reference to the related analytics profiles for a specific user in DMS, but in visiting profiles ... i. Marketing Individuals If you want to filter items based on user profiles, then you just receive Sitecore.Context.User.Profile and get whatever property and apply your logic to how you Want to filter. If you want to filter items based on the DMS profile, due to that fact, it would be difficult to do something that the individuals who are not registered in the Analytics database in real time are really nothing...

Passing more than one command Arguments in gridview in asp.net -

I have a template-field in a gridview with an image button inside it. I have two command arguments within an image button I need to use i here is my code & asp: TemplateField ItemStyle- width = "30px" & gt; & Lt; ItemTemplate & gt; & Lt; Asp: ImageButton id = "btnAvaililabitly" runat = "server" imageUrl = "~ / cms / image / available_color page" width = "12px" height = "12px" command name = "availability" tooltip = "room availability" command agreement = '& Lt;% # Eval ("HotelID")% & gt; /> & Lt; / ItemTemplate & gt; & Lt; / ASP: TemplateField & gt; Please You can send a different string with commas and Value can be collected on the server side command argument = '& lt;% # string.format ("{0}, {1}", Evil ("name1"), EVAL "Name 2")%>

Ruby 1.8.7 versus Ruby 1.9+ performance -

Recently I have been tasked with working on a fairly high volume rail API (5k requests at the summit of each other for). Earlier I have spent most of our coding efforts on Java applications, I am just new in the world of Ruby / Rail. In the house I am using the latest versions of Ruby / Rail to develop some small applications and feel for language and structure. Work on the tracks is made at Ruby 1.8.7 and Rail 2.3.16 and for me it seems very old and much more than the current versions used at home Syntax and new features are unavailable. I like new versions of Ruby and Rail. I picked up with my team about the desire to upgrade to the latest / latest versions but I was told that new versions of Ruby 'Production' are not ready. Unfortunately due to my inexperience with Ruby, I'm not really in a position to dispute this. Is any good article / metric showing the same or better performance with the new Ruby / Rail versions? Personally, I look forward to the better...

android - How can I run an AsyncTask with a dialog after finishing activity? -

I have two activities, here is a standard use case for displaying one entry and creating another. : The user opens the app and displays the entries. The user clicks the button to create a new button and it opens the new activity. The user ends up creating the entry and clicking "Done". Ends with the activity set () and ends (). What I want to add runs after an AsyncTask view activity is completely loaded. It displays a dialog when AsyncTask is running. The problem is, when I put this code in onActivityResult (): @OverrideActivative results on the public vacuum (int requestcode, INC results, resulting data) {super.onActivityResult (requestCode, ResultCode, info); Switch (result code) {case (activity. RSULDOK): {Mentry listfragment.update content (); RunAsyncTaskHere (); }}} Before AsyncTask runs before it goes back to main activity, and no dialogue is displayed. Any ideas what I can do? EDIT: AsyncTask is here. Public Static Class login entities As...

Maven 3.0.3 archetype creation: from multiple module project -

I am using Maven 3.0.3 and I have a lot of module Maven project, which I have to create a mirror I want to use. Like Strawant: main project ---- pom.xml ---- modules_1 ---- pom.xml ---- source ---- main ---- java - --- com ---- mycompany ---- Domains ----DomainT.java ---- Repo ---- Resource ---- Webpage ---- Examination ---- Module_2 --- - Pom.xml ------------------ Java ---- Com ---- Mikipedia ---- Web ----WebT.java ---- Resources ---- WebAp Now, when I use the following CMD in Module_2, it is basically created successfully and correctly. c: \ Main_Project \ module2 & gt; Mvn archetype: create-from-project However, when I run the same command from the main folder (i.e. c: \ Main_Project ), then the package structure is not Is created (to generate 'CMD') and still the original package structure exists in both modules. What do I mean in Java is the package name and other files are replaced with the correct variable but the package folder structure is not create...

javascript - IE8 ActiveX control issue from intranet -

I have some static pages that work perfectly in all browsers (ie8, ie9, Mozilla, Chrome, Safari) are doing. When I open the static pages in i.e. 8, it indicates to allow ActiveX control, if I do not allow ActiveX control, pages are not showing up completely, if I do not have ActiveX control pages Allow me to work on. My problem is, when I deploy pages in a server (WCS) in intranet, if I reach the URL from IE8 then it is prompted for ActiveX control So it does not allow ActiveX control and does not display as expected, but the page is fully working in other browsers (I'm 9, Mozilla, Chrome, Safari). Please advise me how can I overcome this issue? Looking for this kind of solution yourself and come to this link. So far it has not been tried.

css - How to make curve style menu in css3? -

Image
क्या सीएसएस 3 के साथ वक्र / आर्क शैली मेनू बनाना संभव है? क्या मैं इस उपयोग कैनवास को प्राप्त कर सकता हूं एचटीएमएल 5 में कुछ है? पहले से धन्यवाद, लोगान मुझे दुर्भाग्य से किसी भी सुरुचिपूर्ण समाधान के बारे में पता नहीं है, विशेषकर जब यह मेनू आइटम की बात आती है, लेकिन चाप को सादे सीएसएस और दो कुछ HTML तत्वों में संभव होना चाहिए। शायद यह आरंभ करें। html & lt; div class = "container" & gt; & Lt; div वर्ग = "ग्रे" & gt; & lt; / div & gt; & Lt; div वर्ग = "सफेद" & gt; & lt; / div & gt; & Lt; / div & gt; सीएसएस । कंटेनर {ऊंचाई: 200px; छिपा हुआ सैलाब; स्थिति: रिश्तेदार; }। ग्रे,। व्हाईट {स्थिति: पूर्ण; बाएं: -25%; सही: -25%; सीमा-त्रिज्या: 100%; } .gray {/ * एक चाप * / शीर्ष का अनुकरण करने के लिए सीमा त्रिज्या के साथ एक ग्रे सीमा का उपयोग करें: -50%; सीमा: 100 पीएक्स ठोस ग्रे; सीमा-शीर्ष: कोई नहीं; ऊंचाई: 200 पिक्सेल; }। White {/ * बैनर के शीर्ष किनारे के लिए शीर्ष पर एक सफेद ओवल डाल...