Can't find some strings with the Find function in LV2012

Hi
I got a problem with the "Find function" in LV2012.
The Find function can't find the text "IniFile: WriteKeys" in the string constant in the innercase.
Why is that?
I have tried to plase a copy of the constant(se next picture)  and then it can only find the one marked with yellow!
regards Bjarne

Hi Anders.
Thank you
I have tried the things you suggested and my strings are exactly the same and it didn't work to put the outside-string(that could be found) inside the case.
Here is the VI but be aware the broken arrow, because the sub VIs is not incorporated
By the way, my name is Bjarne, not Bjarke
Regards Bjarne
Attachments:
VASPMain.vi ‏674 KB

Similar Messages

  • My iPad has been stolen, I need some help with the Find my iPhone app and iCloud please

    Hello people.  I have (had) an iPad 1 (wifi only) - which was stolen two days ago.  It's locked with a passcode but I am worried that someone will be able to get into it.  I've got the Find app installed on my iPhone 4S and it shows that both my iPad and stolen iPod are offline.
    Q - if either the iPad or the iPod goes into an unlocked wifi area, will I be notified on my phone?
    Q - can anyone actually break into my iPad as it is locked?
    Q - how does iCloud work in terms of the info that's on my iPad - photos etc that I don't want to lose?
    Q - I've reported this to the police - does Apple need to know?
    I'd be very grateful for any advice, many thanks in advance

    What To Do If Your iDevice or Computer Is Lost Or Stolen
    If your Mac, iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should do in advance - before you lose it or it's stolen - and some things to do after the fact. Here are some suggestions:
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T, Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. Lost or Stolen iPhone? Here’s What to do
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on MobileMe
      3. OS X Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)
    Third-party solutions for computers:
      1. VUWER 1.5.4
      2. Sneaky ******* 0.2.0
      3. Undercover 4.7
      4. LoJack for Laptops Premium Mac
      5. STEM 2.1
      6. MacPhoneHome 3.5

  • Can i get some help with the bing app please?

    ironically i searched all over the bing website and couldn't find the answer to this:
    on the bing commercial they show the ability to hold up your phone with the app open and on the screen you see the scene in front of you but with little popups telling you what each place is. i cannot figure out how to get the app to do that, can anyone provide instructions? thanks.

    Bing Mobile email support is here:
    https://support.discoverbing.com/default.aspx?%7b!%7dsource=app_iPhone&ct=eformt s&mkt=en-US&productkey=bingmobile&scrx=1&st=1&wfxredirect=1

  • Need some help with the Table Function Operator

    I'm on OWB 10gR2 for Sun/Solaris 10 going against some 10gR2 DB's...
    I've been searching up and down trying to figure out how to make OWB use a Table Function (TF) which will JOIN with another table; allowing a column of the joined table to be a parameter in to the TF. I can't seem to get it to work. I'm able to get this to work in regular SQL, though. Here's the setup:
    -- Source Table:
    DROP TABLE "ZZZ_ROOM_MASTER_EX";
    CREATE TABLE "ZZZ_ROOM_MASTER_EX"
    ( "ID" NUMBER(8,0),
    "ROOM_NUMBER" VARCHAR2(200),
    "FEATURES" VARCHAR2(4000)
    -- Example Data:
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (1,'Room 1',null);
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (2,'Room 2',null);
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (3,'Room 3','1,1;2,3;');
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (4,'Room 4','5,2;5,4;');
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (5,'Room 5',' ');
    -- Destination Table:
    DROP TABLE "ZZZ_ROOM_FEATURES_EX";
    CREATE TABLE "ZZZ_ROOM_FEATURES_EX"
    ( "ROOM_NUMBER" VARCHAR2(200),
    "FEATUREID" NUMBER(8,0),
    "QUANTITY" NUMBER(8,0)
    -- Types for output table:
    CREATE OR REPLACE TYPE FK_Row_EX AS OBJECT
    ID NUMBER(8,0),
    QUANTITY NUMBER(8,0)
    CREATE OR REPLACE TYPE FK_Table_EX AS TABLE OF FK_Row_EX;
    -- Package Dec:
    CREATE OR REPLACE
    PACKAGE ZZZ_SANDBOX_EX IS
    FUNCTION UNFK(inputString VARCHAR2) RETURN FK_Table_EX;
    END ZZZ_SANDBOX_EX;
    -- Package Body:
    CREATE OR REPLACE
    PACKAGE BODY ZZZ_SANDBOX_EX IS
    FUNCTION UNFK(inputString VARCHAR2) RETURN FK_Table_EX
    AS
    RETURN_VALUE FK_Table_EX := FK_Table_EX();
    i NUMBER(8,0) := 0;
    BEGIN
    -- TODO: Put some real code in here that will actually read the
    -- input string, parse it out, and put data in to RETURN_VALUE
    WHILE(i < 3) LOOP
    RETURN_VALUE.EXTEND;
    RETURN_VALUE(RETURN_VALUE.LAST) := FK_Row_EX(4, 5);
    i := i + 1;
    END LOOP;
    RETURN RETURN_VALUE;
    END UNFK;
    END ZZZ_SANDBOX_EX;
    I've got a source system built by lazy DBA's and app developers who decided to store foreign keys for many-to-many relationships as delimited structures in driving tables. I need to build a generic table function to parse this data and return it as an actual table. In my example code, I don't actually have the parsing part written yet (I need to see how many different formats the source system uses first) so I just threw in some stub code to generate a few rows of 4's and 5's to return.
    I can get the data from my source table to my destination table using the following SQL statement:
    -- from source table joined with table function
    INSERT INTO ZZZ_ROOM_FEATURES_EX(
    ROOM_NUMBER,
    FEATUREID,
    QUANTITY)
    SELECT
    ZZZ_ROOM_MASTER_EX.ROOM_NUMBER,
    UNFK.ID,
    UNFK.QUANTITY
    FROM
    ZZZ_ROOM_MASTER_EX,
    TABLE(ZZZ_SANDBOX_EX.UNFK(ZZZ_ROOM_MASTER_EX.FEATURES)) UNFK
    Now, the big question is--how do I do this from OWB? I've tried several different variations of my function and settings in OWB to see if I can build a single SELECT statement which joins a regular table with a table function--but none of them seem to work, I end up getting SQL generated that won't compile because it doesn't see the source table right:
    INSERT
    /*+ APPEND PARALLEL("ZZZ_ROOM_FEATURES_EX") */
    INTO
    "ZZZ_ROOM_FEATURES_EX"
    ("ROOM_NUMBER",
    "FEATUREID",
    "QUANTITY")
    (SELECT
    "ZZZ_ROOM_MASTER_EX"."ROOM_NUMBER" "ROOM_NUMBER",
    "INGRP2"."ID" "ID_1",
    "INGRP2"."QUANTITY" "QUANTITY"
    FROM
    (SELECT
    "UNFK"."ID" "ID",
    "UNFK"."QUANTITY" "QUANTITY"
    FROM
    TABLE ( "ZZZ_SANDBOX_EX"."UNFK2" ("ZZZ_ROOM_MASTER_EX"."FEATURES")) "UNFK") "INGRP2",
    "ZZZ_ROOM_MASTER_EX" "ZZZ_ROOM_MASTER_EX"
    As you can see, it's trying to create a sub-query in the FROM clause--causing it to just ask for "ZZZ_ROOM_MASTER_EX"."FEATURES" as an input--which isn't available because it's outside of the sub-query!
    Is this some kind of bug with the code generator or am I doing something seriously wrong here? Any help will be greatly appreciated!

    Hello Everybody!
    Thank you for all your response!
    I had changes this work area into Internal table and changed the select query. PLease let me know if this causes any performance issues?
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    I had removed the select single and insted of using the Structure it_rej, I had changed it into Internal table 
    select vkorg abgru from ZADS into it_rej.
    Earlier :
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    Now :
    DATA : BEGIN OF IT_REJ occurs 0,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    I guess this will fix the issue correct?
    PLease suggest!
    Regards,
    Developer.

  • Can I get some help with a recursive function in Java?

    I'm trying to make a FrozenBubble clone in Java.  I'm having trouble with the method that checks for rows with the same color.  Here's what I have now:
    public int checkColors (BubbleNode node, BubbleNode prevNode, int counter) {
    counter--;
    if (node != null && prevNode != null && node.imageX != prevNode.imageX)
    return 0;
    if (counter == 0) {
    fallingList.add (node);
    return 1;
    if (node.left != null && node.left != prevNode) {
    if (checkColors (node.left, node, counter) == 1) {
    fallingList.add (node);
    return 1;
    else
    return 0;
    if (node.right != null && node.right != prevNode) {
    if (checkColors (node.right, node, counter) == 1) {
    fallingList.add (node);
    return 1;
    else
    return 0;
    if (node.topLeft != null && node.topLeft != prevNode) {
    if (checkColors (node.topLeft, node, counter) == 1) {
    fallingList.add (node);
    return 1;
    else
    return 0;
    if (node.topRight != null && node.topRight != prevNode) {
    if (checkColors (node.topRight, node, counter) == 1) {
    fallingList.add (node);
    return 1;
    else
    return 0;
    if (node.bottomLeft != null && node.bottomLeft != prevNode) {
    if (checkColors (node.bottomLeft, node, counter) == 1) {
    fallingList.add (node);
    return 1;
    else
    return 0;
    if (node.bottomRight != null && node.bottomRight != prevNode) {
    if (checkColors (node.bottomRight, node, counter) == 1) {
    fallingList.add (node);
    return 1;
    else
    return 0;
    if (fallingList.size () > 2) {
    deleteNodes ();
    return 0;
    The bubbles are six sided nodes, and imageX is the x coordinate for the start of the bubble in the bubble image, you can think of it as the color of the bubble.  I also posted this on the UbuntuForums here, but since it seems like the only person willing to help me has gone to bed and the program is already late, I'm thought I would also post it here.
    Thanks!

    "Green" usually indicates a problem with graphic card drivers; see http://forums.adobe.com/thread/945765

  • Can I copy edits made with the comp function?

    Suppose I record an instrument with 2 mics. I do 5 takes then use the comp function to easily edit one of the 2 recorded tracks. Is there a way to copy the comp edits to track 2 so that I have a congruent sound or must I change them all by hand?

    if you close the folder you can copy without problem
    if you need to copy only an edited part of the composit...
    i suggest to Unpack the folder...
    this action allow you to copy only 1 take at the time
    Note: *UNDO works fine about unpacking folder... maybe*
    Anyway save a safety copy of your song by rename is as song take2 or similar

  • Some problems with the count function

    Hi Guys,
    I am trying to return following:
    2009 GUESTS NIGHTS between 1 and 5 = 80 guests
    2009 GIESTS NIGHTS between 5 and 10 = 100 guest
    Whe I use the combine with a similar report option (union), I issue the following query:
    SELECT saw_0 saw_0, saw_1 saw_1, saw_2 saw_2, saw_3 saw_3 FROM ((SELECT Resort.Resort saw_0, Time."Year" saw_1, "Non Revenue Facts".Nights saw_2, count(Guests."Guest Name") saw_3 FROM GUEST WHERE "Non Revenue Facts".Nights BETWEEN 1 AND 5 GROUP BY saw_1, saw_2, saw_0) UNION (SELECT Resort.Resort saw_0, Time."Year" saw_1, "Non Revenue Facts".Nights saw_2, count(Guests."Guest Name") saw_3 FROM GUEST WHERE "Non Revenue Facts".Nights BETWEEN 1 AND 5)) t1 GROUP BY saw_1, saw_2, saw_0 , saw_3 ORDER BY saw_0
    The query return just the results for nights between 1 and 5.
    I need two columns showing the count of the guests with nights till 5 and one other column showing the count of the guests with nights from 5 to 10.
    Any help would be really appreciated.
    Regards
    Giuliano

    Sorry I did not get this.
    I should still use the union statement and than build the below function in the nights fields?
    What I am trying to achieve is simply how many guests do i have with at least 1 night and max 5 nights
    and how many guests i have with at least 5 nights and a max of 10 nights.
    I should have 2 columns:
    1 label Nights between 1 and 5
    2 label Nights beween 5 and 10
    the count(guests) column should than show how many guests in the first range and how many in the second.
    Regards
    G.

  • Can I get some results with the SDK sample debugging?

    Debugging a sample project file in VB2008 I could not get any results. Where an InDesign plug-in to add?

    There is a folder for plugins near the .exe, or you create a PlugInConfig.txt file.
    See "getting-started.pdf" (e.g. page 13 of CS6 version).

  • Can't establish a sftp connection with the finder

    Hi, I'm trying to establish a sftp connection with the finder (using the "Connect to server" feature) between my (recently purchased) Mac Mini (mid 2011: i5, 2.3 GHz, 2 GB, running 10.7.3) and a Debian Testing box and I can't, I get the following error:
    'There was a problem connecting to the server "ip.address"
    This file server will not allow any additional users to log on. Try to connect again later.'
    However if I try establishing a connection from the terminal (either ssh or sftp) it works flawlessly:
    SSH:
    victoria:~ RonIn$ ssh [email protected]
    [email protected]'s password:
    Linux clementine 3.0.0-1-486 #1 Sat Aug 27 15:56:48 UTC 2011 i686
    The programs included with the Debian GNU/Linux system are free software;
    the exact distribution terms for each program are described in the
    individual files in /usr/share/doc/*/copyright.
    Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
    permitted by applicable law.
    You have new mail.
    Last login: Sat Apr 28 21:52:18 2012 from ukamy.local
    ronin@clementine:~$
    SFTP:
    victoria:~ RonIn$ sftp [email protected]
    [email protected]'s password:
    Connected to ip.address.
    sftp>
    I've searched for a fix or alternative on the internet and I haven't found one that works; The one that keeps coming up is to try: "ftps" as the protocol instead of "sftp" with the remaining information the same (it doesn't work, it gets the same error message afterwards).
    The IP address and login information works (corroborated by the fact that I can log in from the terminal from the Mac Mini) so the only issue is with the finder capabilities for establishing the connection. I have looked for apple related documentation or How Tos but I haven't found anything useful.
    I don't want to use any third party app or tweak because of the sensitive information that is going to be transfered, I would like to be using strictly the tools from the OS.
    If you need any more information please let me know, any help is deeply appreciated.

    I have the same issue although i kind of fixed it. I have two admin accounts and one of the account's safari did the same thing as yours, except, it was the startpage and everypage i tried to visit. I reseted safari, as in the erase all data safari in the toolbar, safari-Reset Safari... But safari still didn't work. I logged out and went to my other account and opened safari. Now it works fine on both accounts. This meant safari had to logout before actually working better. I have this a few times these days.

  • I need any help i can get, im having trouble with the app find my iphone. I have lost my iphone, checked on the computer, and somehow, took it away so how do i get it back??

    Help
    I need any help i can get, im having trouble with the app find my iphone. I have lost my iphone, checked on the computer, and somehow, took it away so how do i get it back??

    If you are saying that after signing into iCloud it is telling you device is not found, it could be for any number of reasons. If the battery is dead, if the SIM has been removed, or if someone else has the phone and they have restored it, it will not be shown. Also, if you located it once and then sent a remote wipe, it disables the abililty to locate the phone with Find My iPhone.

  • Where can i find a pdf with the dutch version of the manual for lightroom 6

    where can i find a pdf with the dutch version of the manual for lightroom 6

    I don't think it's available yet.  The English help page has a link to it:
    https://helpx.adobe.com/lightroom/topics.html
    But the equivalent page for Netherlands only links to prior versions:
    Help bij Lightroom | Help bij Lightroom
    Same for DE, FR, ES.  Maybe someone more enlightened knows if they're available somewhere else on Adobe's site.

  • Hi, since the last update i find my rented movies remained under rented although unplayable. now i find some, as before the update, are deleting fully - can anyone tell me how to delete the unwatchable covers that remain?

    hi, since the last update i find my rented movies remained under rented although unplayable. now i find some, as before the update, are deleting fully - can anyone tell me how to delete the unwatchable covers that remain?

    bunjamin wrote:
    There is now a new line in BBM that wasn't there before which covers the message that I am typing, so I can't actually see what I am typing.
    Hi bunjamin,
    just go to BlackBerry World, and update all your apps including BBM.
    bunjamin wrote:
    Every time I unlock my phone, my screen enlarges so I can't really see much on the hub/notification screen and it defaults to the hub which it didn't do before).
    you can turn off the magnifying glass :
    device settings >> accessibility >> magnify mode >> OFF
    you can deactivate the "reset to Hub view" :
    hub >> overflow (bottom right button) >> Settings >> Display and actions >> Return to Default View When Idle >> OFF
    bunjamin wrote:
    my ringtone is much softer than it was previously
    yes, BlackBerry has acknowledged this bug in this article from the public knowledge base:
    KB36755 After upgrading BlackBerry 10 OS to version 10.3.1 the volume for notifications is noticed to be significantly lower than in the previous version
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Mistakenly opened all the folders in my library of music and the Finder stopped working. Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing they reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

  • My iPad is constantly displays 'find my iPad alert OK' after my daughter was playing with the find iPhone app.  How can I unlock the iPad?

    My iPad is constantly displays 'find my iPad alert OK' after my daughter was playing with the find iPhone app.  How can I unlock the iPad?

    My iPad is constantly displays 'find my iPad alert OK' after my daughter was playing with the find iPhone app.  How can I unlock the iPad?

  • Can someone find a iphone after its been "wiped" with the "find me" app?

    Im sure this question has been asked time and time again but can someone find a stolen iphone after its been "wiped" with the "find me" app?
         this was the first time this has happen to me :-(. i think its sad the lowlifes are going around taking peoples iphones (and other items). Not that any body cares im a student putting myself through school who saved money to buy this phone not even a month ago. i feel so confliced because i question if i shouldve taken that one call and replied to a text msg in the first place.... thank god for insurance but im a broke collage student so it only goes so far but i digress. i am open to any suggestions into what i can do to pervent this happing again. i do know about the find me app.
    also im new to this forum thing; normally im just a "reader" of these things. so with that said, could you please post helpful information or thoughts i would greatly appreciate it. I thank you in advance!

    you should be able to still located your device.  it can be found by using another device with the find me app.  using the phone number should located it.  although, people who steal these devices are usually smart about it.  they will wipe the slate clean on phone and turn off the enable location function and just use it as a ipod touch basically and jail break it.  yes it is sad that people cant keep their hands off of peoples things.  but i would go to your nearest service preovider and let them know what happen.  they will be able to do a location pin point for you if its not too late.  i would do it , like.... tomorrow.  good luck

Maybe you are looking for

  • 'Picking request file' and 'Picking confirmation file'...

    Hi, Suppose the business scenario like this: After delivery created in SAP system, then the system generate an 'Picking request file' to 3rd party shipper service provider. And then 3rd party shipper service provide will generate an 'Picking confirma

  • JDBC - MS SQL Server 2005 with multible instances

    I want to get data from a Microsoft SQL Server via JDBC. We have such a scenario and till now it works fine. Now we have a second instance at the sql server and we want to connect to this instance. I've found the following MSD article: http://msdn2.m

  • How can i buy lion software? do they still sell it

    how can i buy lion software? do they still sell it

  • Forms 10g bypass signon

    Hi, I’ll try to keep this as un-wordy as I can and still ask it correctly. I am trying to develop a portal-type form, in 10g, that ALL users can initially access (thru a single URL). This form is not associated with any DB, but is just a portal/men

  • Char arrays, spliting

    am new to java programing. am trying to write a simple hangman game, that asks a user to pick a topic and then takes the elements in that topic i.e. elements in an array an picks one at random, everything up to this point works well. When i try to sp