Result of "tex" opcode is always affected by another components.

//~custom coord generating~
//and now "ft0.xy" is new coord.
tex ft1 ft0.xy fs1 <2d,nearest,clamp>
When I use custom coord for tex opcode, like above,
that result is always affected by a value of "ft0.z" or "ft0.w" component.
Is this common behavior???
How can I sample a correct value with custom coord?

Why don't you head over to the SQL & PL/SQL forum here...
PL/SQL
Expect to be asked to provide create table and inserts with sample data though, as well as to wrap your code in {noformat}{noformat} tags to make it more readable and preserve formatting!
Cheers
Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • How to tackle the dataflow problem when Value Change event always triggers after another GUI event

    We know that Value change event always triggers after another GUI event. Eg, the user modifies string control, the user clicks on a boolean control. Then event boolean clicked is triggered before event string control value change.
    Now suppose somehow the GUI event that must happen to subsequently trigger the Value change event can potentially affect the data that Value change event is supposed to work on. How can we tackle this problem ?
    For example, in a mockup application that the grand purpose is to have user entered values in a textbox logged to a file (no missing information is accepted, and there is a boolean to determine how the information is logged).
    There are 2 controls, boolean A when clicked (mouse down) will load random number in text box B. Text box B is designed with event structure VALUE change which saves whatever values user enters into text box B to a log file.
    There are 3 problems when instead of clicking anywhere on the front panel after modifying text box B, the user ends up clicking on boolean control A.
    1. Event mouse down on Boolean control A will execute first, modifying text box B content before the user entered values in B get saved.
    2. The value of boolean A can potentially affect how textbox B is loggged.
    3. The value of boolean A affects how the file is logged and this is indeterminate. Somehow when running this VI with no Highlighting, the textbox B Value change event executes -before- boolean A value is updated (F to T). When running this VI with Highlighting, the boolean A value is updated (F to T) (because we click on it) -before- textbox B value change event occurs. Why is it like this ?
    Now the situation I made up seems non-sense, but I believe it resembles one way or another a problem that you might run into. How would you solve this problem elegantly ?
     

    You can set the string control to "update while typing".
    Are you sure appending the log to itself is reasonable? Wouldn't it grow without bounds if the users keeps entering strings or pressing the ingore button?
    Why isn't the "constant" a diagram constant instead of a control. Is the user allowed to change it?
    To reset just write empty strings or a false to local variables of the controls (renit to defaults" seems a bit heavy handed).
    All you probably need is a single event case for "ignore:value change" and "String" value changed", no need for the local variable..
    Also add a stop button and an event for it.
    You don't need the timeout event.
     

  • Pass the result of a SQL Query as table_name  for another SQL Query

    Hi All,
    How to pass the result of a SQL Query as parameter to another SQL Query
    Eg: I am doing the steps below.
    1) select distinct table_name as TAB1 from all_tab_cols where table_name like 'T_%' and column_name like '%XYZ'
    2) I want to pass the table_name from step 1 above as parameter to another query "select * from TAB1"
    Thanks

    Naveen B wrote:
    Hi All,
    How to pass the result of a SQL Query as parameter to another SQL Query
    Eg: I am doing the steps below.
    1) select distinct table_name as TAB1 from all_tab_cols where table_name like 'T_%' and column_name like '%XYZ'
    2) I want to pass the table_name from step 1 above as parameter to another query "select * from TAB1"
    ThanksYou should craete PL/SQL code with cursor which will accept a parameter and call that cursor inside the first one
    But if the first sql returns only one row, you can do it with simple sql code
    select * from (select distinct table_name as TAB1 from all_tab_cols where table_name like 'T_%' and column_name like '%XYZ')- - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • When I send an email from one email address, the reply is always received in another email account?

    When I send an email from one email address, the reply is always received in another email account?
    Thank you,
    Alain

    In Mail preferences under composing tab, check to see what you have for sending new messages from.
    You can also check the account settings and make sure you have the correct SMTP server for each account and the correct settings for each. Also check the box to use only that server for the account so it doesn't switch to another accounts server without asking if there is a failure with one.

  • Unexpected Result: Deleting asset file did not affect Encore

    I am using Encore DVD 2.0. I deleted the DV AVI file, the asset for the timeline, from the folder of orgin. I did not remove the DV AVI asset from the Encore project. When I opened the Encore project, I expect the DV AVI file to have either a "broken link" or be disabled or say "file not found." But when I opened the Encore project, the project Preview played just fine as if the DV AVI file had not been deleted from the folder of orgin. Why is this?
    This confused me for the following reason.....when I import an asset into an Adobe Premiere Pro project then delete the actual asset file, Adobe Premiere Pro will let me know that the file cannot be found, etc.
    Thanks for any input,
    Angela

    I did a Burn DVD Disc with encore on a project where the untranscoded original asset file had been deleted. The DVD played just fine. I'm going to do some further comparison testing, and will let you know more.
    -Angela

  • PApplet/component is always above all other components except...

    Hi,
    I am working with java and a program off shoot of Java called Processing. Processing aids in the creation of java and it integrates itself into a swing component by extending into a PApplet(Processing�s version of an applet) which a JFrame sees as a component.
    Example:
    newJFrame.add(PApplet); <--- works perfectly except�
    The integration of java/swing and processing in an application works very well except for one problem. The Processing class (PApplet) draws to the screen and when I put it into a JFrame, JPanel, JInternalFrame, etc � the graphics are always above all other component except the JMenuBar. I found a fix for the JMenuBar to be this line of code �JPopupMenu.setDefaultLightWeightPopupEnabled(false);� I guess it tells the popup manager of the JMenuBar to not setDefaultLightWeightPopupEnabled which in turn, allows the JMenuItems to popup above the PApplet.
    Is there a way to force the PApplet/component to follow the rules of all other components? (setComponentZOrder, setLayer, etc�) It works for the JMenuBar so I feel it should be able to work for all other components � is there a way?
    Thanks,
    4dplane

    Thanks for the info; I believe you hit the nail on the head. Processing is open source so I looked in the PApplet class and it extends Applet, so this means processing is awt based.
    Thanks,
    4dplane

  • When i click on a search result from google, i am automatically redirected to another website everytime

    This just started recently, since installing firefox 4. Now whenever I search on google or other search engines, when I click on a result, I am automatically redirected to another search site. Any ideas?

    Try running several malware scanners. It is best to run several as each will pick up things that the others miss. Some scanners you can try are:
    * [http://www.malwarebytes.org/mbam.php Malwarebytes]
    * [http://www.superantispyware.com/ SUPERAntiSpyware]
    * [http://www.lavasoft.com/products/ad_aware_free.php Ad-Aware]
    * [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx Windows Defender]
    * [http://www.safer-networking.org/en/home/index.html Spybot S&D]
    If the above malware scanners do not find any malware or can not clear it, you should consider posting in one of these forums for specialized malware removal help:
    * http://forums.spybot.info/
    * http://www.spywarewarrior.com/index.php
    * http://forum.aumha.org/
    * http://www.bleepingcomputer.com/forums/
    * http://www.spywareinfoforum.com/

  • Applewroks 6 Spreadsheet:  Results of a cell in one sheet to another sheet

    How do I add the results from the cell of one spreadsheet to the cell of another spreadsheet? It's easy on Excel.
    iMac   Mac OS X (10.4.8)  

    At 1st I couldn't figure out your instructions. Then I replaced "cell" with the cell location of the source spreadsheet. I then pressed [Enter] and was greeted by a window asking for the name of the source spreadsheet.
    Thanks
    iMac   Mac OS X (10.4.8)  

  • Is it possible to write a result of query to a CLOB field in another table

    Hi all,
    I have a table with 50 columns which will ideally have around 250,000 rows. I want to select all the rows from this table and insert the result in to another
    table's CLOB or BLOB column. ( I think CLOB is preferred for strings !!)
    f.i
    Table1 : SELECT ID, COL1||','||COL2||','||COL3||','||COL4||','||COL5 FROM TF_TEMPREP
    ORDER BY COL1
    will have the output
    A001, 1,ABN LAYOUT,01-APR-11,30-APR-11,REMARK1
    A001, 2,CTS ,01-APR-11,10-APR-11,REMARK2
    A001, 3,BTS,01-APR-11,20-APR-11,REMARK3
    A001, 4,CWWS,01-JAN-11,31-JAN-11,REMARK4
    A001, 5,ZYNC,01-MAR-11,31-MAR-11,REMARK5
    I would like to store these rows into another table (TF_TEMPREP_OUTPUT) CLOB/BLOB column ,
    so the table TF_TEMPREP_OUTPUT will have one row with all the rows from TF_TEMPREP in the CLOB/BLOB column.
    TF_TEMPREP_OUTPUT will have column OUTPUTID (VARCHAR2) , OUTPUTDATA (CLOB DATATYPE)
    Will this be possible !!.
    Thanks in advance
    Regards
    Murali

    Hi all
    Thanks for your reply,
    The reason we would like to store the data in a CLOB file is that,
    Currently we are fetching the data from the table TF_TEMPREP and the recordset is passed into a function and writing the ouput to a CSV file in the local drive using the VB (front end application). once the process is completed, the temporary table will be deleted. this is used only for printing purpose.
    we are using the VB function
    Public Function RecordsetToCSV(rsData As ADODB.Recordset, pFileSeparator As String, Optional ShowColumnNames As Boolean = True, Optional NULLStr As String = "") As String
    Dim k As Long
    Dim RetStr As String
    On Error GoTo Errh
    If ShowColumnNames Then
    For k = 0 To rsData.Fields.Count - 1
    RetStr = RetStr & pFileSeparator & """" & rsData.Fields(k).Name & """"
    Next k
    RetStr = Mid(RetStr, 2) & vbNewLine
    End If
    rsData.MoveFirst
    RetStr = RetStr & """" & rsData.GetString(adClipString, -1, """" & pFileSeparator & """", """" & vbNewLine & """", NULLStr)
    RetStr = Left(RetStr, Len(RetStr) - 3)
    RecordsetToCSV = RetStr
    Exit Function
    Errh:
    RecordsetToCSV = ""
    Exit Function
    End Function
    But in this operation, as the number of records is more the system often throws out with the message "Not enough storage is available to complete this operation.". The Local HD is having around 50GB of free space. when we have less number of records (say around 30-40K), the above process works perfectly.
    Storing the File in the database server will be an issue, as the database server will be in a different location and it will not be possible/advisable to access the
    local directory thru mapped directory in the database server.
    our plan was if the data is available in a clob field, then we could try to read the clob and write to a file in the local directory thru our VB application itself. Not sure, will this also gives a same error as it was giving when reading from the table?.
    Hope I have clarified what we are aiming at.
    Regards
    Murali

  • Component always displays "under" other components......

    Hi there,
    I have a component derived from a "panel" - I'm adding it to the applet but it always displays itself "under" the other components in the applet, never above (which is where I want it).
    I've tried adding it last and adding it first - doesn't make any difference. When I add the component I set it to "setVisible(false)" and "setVisible(true)" when the user clicks a button. I'm a bit confused as to why its underneath everything else!
    Any ideas?
    Thanks.

    I am using my own paint methods indeed - I mean I'm calling "super" and then rendering the component - or calling "super" in a container component and rendering other stuff on the container afterwards.
    But this is all working on the version you see on the website - the one I'm working on is broken.
    btw. I'm using a "Panel" (derives from Container, its a lightweight thingy, nout to do with Schwing etc.).

  • Cannot download firefox english version, always comes in another language

    got a new samsung laptop for Christmas. tried to download Mozilla Firefox in english.it shows that I selected English US or Brit(tried both) but when it is finished the download Firefox is in Russian or Greek or something. Other languages download Ok but not English. Could my internet provider be blocking this somehow. I'm in Thailand

    The UserAgent of the Firefox installation you posted here with is '''en-US'''.

  • Need to use the results of one query as an input to another query

    Hi, I have one sql query in my XML file, that returns more than one values for a column.
    and i want to use this output one by one as an input to the second query to retrive the data from the second query.
    Could please someone tell me if its possible in XML Publisher?
    If possible, please share the syntax to do the same
    For eg:
    Query 1:
    Select data1, data2 from query1 ; -- output data1 and data2
    want to use data1 and data2 one by one in the below query
    Query 2:
    select * from abc where name_id= data1/data2;
    Thanks and Regards
    Madhu

    Make sure your cursor declarations are in your declare section, not between the begin and end statements.

  • Delete a row in a table should affect in another table specified row

    hello ,
    my problem is let us  assume i have two table related to each other as
    dish       [d_id as primary key ,d_name,d_code,d_cost]
    dish_outlet    [id as primary key,d_id as foreign key,outlet_name,amt]
    i set foreign constraint in dish_outlet as foreign basetable as [dish_outlet] , foreign key as [d_id] , primary key table as [dish],primary key as [d_id].
    now i want to do as delete a row where d_id is let us suppose '1'  in dish table but also dish_outlet whose d_id will be '1' should also get deletd
    my issue is on [DELETE FROM dish WHERE d_id ='1'] query a row is deleted from dish table only.
    give a opinion or solution to my problem i need a query for vb.net and if foreign key setting is mistaken then need a procedure to solve it.
    im using vb.net with sqlserver 2005 with sqlserver management studio
    aziz

    use ondelete cascade option
    Please see below example for your reference
    CREATE TABLE dbo.cource
          courceID     INT   PRIMARY KEY,
          Name        VARCHAR(50)
    CREATE TABLE dbo.student
         studentID     INT   PRIMARY KEY,
         name     VARCHAR(50),
         courceID     INT   REFERENCES cource(courceID)
                            ON DELETE SET NULL
                            ON UPDATE CASCADE,
          Duration    TIME(0)
    INSERT      INTO dbo.cource(courceID  , Name)
    VALUES      (1,'c1'), (4,'c2')
    INSERT      INTO dbo.student (studentID,name, courceID, Duration)
    VALUES      (1, 's1' , 1, '00:07:08'),
                (2, 's2', 1, '00:07:52'),
                (3, 's3', 1, '00:07:56'),
                (4, 's4', 4, '00:05:12')
    DELETE FROM dbo.cource
    WHERE courceID = 1
    SELECT      A.courceid, A.Name,
                T.studentID, T.name, T.courceID, T.Duration
    FROM        dbo.cource  A
    RIGHT JOIN dbo.student T ON A.courceid = T.courceID
                

  • After using a certain payed wifi, now always I open another wifi feature, the old window for the paying wifi ask for the user name ans password. I'd already delete the old wifi conection, clean the cookies, restart laptop, clean the historic, etc etc

    This happens with Firefox, or even IE...

    It shows Peter's doing its jobs properly.
    Anyway there is no more communication from Sony since awihle. If you can have any news.
    Anyway good job Zero!

  • When using the google search button my queries are always redirected to another site, and not google as indicated as my preferred search engine.

    I have to open up an Internet Explorer browser when I try to to a search for anything. Even though I've selected google as my default search engine, I still get redirected to some random site. It's useless. I would like to use Firefox all the time, but I cannot do so.

    Do a malware check with some malware scan programs. You need to scan with all programs because each program detects different malware. Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and Searches are redirected to another site

Maybe you are looking for

  • How do i stop iPhone from sharing with mac

    how do i stop iPhones sharing texts with mac

  • HOW LONG DOES IT TAKE TO GET iPHOTO BOOK?

    I would like to order my first HARD COVER book and since I am not living in USA, my friend would bring the book back to Europe. But the only problem is that, she will be there only two days, so the book must be at the address, she will be living on 9

  • 1.4.2 SDK Windows installation problem

    Hello, I have installed the SDK under the C:\Program Files\Sun directory without any error messages. I tried to start the domain "domain1". I get the error message shown below. I am aware that the SDK has problems with space characters in directory n

  • Just did a clean install, realized I lost my iPhoto album in the process...

    I went to Japan 2 years ago and I took a ton of picture. It was the only album I had in iPhoto. I installed Leopard the other night and it gave me that DivX error and I couldn't fix it. So I wiped my iBook clean and it runs like a charm now. I don't

  • SQL access to interface port descriptions or via radius request?

    Does anyone know how to include port descriptions within a radius request or of a database that I can pull the information from a Using a SQL statement. We have Cisco CER, Cisco works, Cisco prime or am looking to populate my own database. Thanks