Help trying to insert JScrollPane into code

Yes! It is me again on the same program. I have the program working with a few peoples help on this board. But, I want to make the display look better. So, I thought I would use the JScrollPane component. But, I'm getting a cannot resolve symbol error on the following statement.
f.setContentPane(scrollPane);
The code is below. Any help in getting the JScrollPane to work would be very appreciated.
Code:
import java.util.*;
import mycorejava.Day;
import mycorejava.*;
import myjavastdio.*;
import java.io.*;
import java.text.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class P5AWT extends JFrame
private JTextField inputfile;
private JTextField outputfile;
private JTextArea ta;
private JMenuItem newMT, openMT, saveAsMT, exitMT;
String curFile, filename = "";
int numstaff;
Employee[] staff;
public P5AWT()
super ("P5AWT Starter Program");
addWindowListener(new WindowAdapter()
{ public void windowClosing(WindowEvent e) { System.exit(0); }} );
JMenuBar mb = new JMenuBar ();
setJMenuBar(mb);
JMenu fileMenu = new JMenu ("File");
mb.add(fileMenu);
fileMenu.add (newMT = new JMenuItem ("New"));
newMT.addActionListener( new NewCommand());
fileMenu.add (openMT = new JMenuItem ("Open"));
openMT.addActionListener( new LoadFileCommand());
fileMenu.add (saveAsMT = new JMenuItem ("Save As"));
saveAsMT.addActionListener( new SaveAsFileCommand());
fileMenu.add (exitMT = new JMenuItem ("Exit"));
exitMT.addActionListener( new CloseCommand());
JPanel p3 = new JPanel();
getContentPane().setLayout(new FlowLayout(FlowLayout.CENTER));
ta = new JTextArea(200, 40);
//p3.add(ta);
//getContentPane().add(p3, BorderLayout.CENTER);
JScrollPane scrollPane = new JScrollPane(ta);
f.setContentPane(scrollPane);
// Bail Out
class CloseCommand implements ActionListener {
public void actionPerformed (ActionEvent e) {
System.exit (0);
// New
class NewCommand implements ActionListener {
public void actionPerformed (ActionEvent e) {
ta.setText(" ");
// Load a file into the text area.
class LoadFileCommand implements ActionListener {
public void actionPerformed (ActionEvent e) {
int state;
String msg;
FileDialog file = new FileDialog (P5AWT.this, "Open File", FileDialog.LOAD);
file.setFile ("*.*"); // Set initial filename filter
file.show(); // Blocks
if ((curFile = file.getFile()) != null) {
System.out.println(curFile.substring(curFile.indexOf(".") + 1));
filename = file.getDirectory() + curFile;
setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
doit( filename );
setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
// Load a file into the text area.
class SaveAsFileCommand implements ActionListener {
public void actionPerformed (ActionEvent e) {
int state;
String msg;
FileDialog file = new FileDialog (P5AWT.this, "Save As", FileDialog.SAVE);
file.setFile ("*.*"); // Set initial filename filter
file.show(); // Blocks
if ((curFile = file.getFile()) != null) {
filename = file.getDirectory() + curFile;
setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
saveAs(filename);
setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
public static void main(String[] args)
JFrame f = new P5AWT();
f.setSize(475,400);
f.setVisible(true);
f.show();
public void saveAs(String file)
          String emptype = "";
          try
               PrintWriter fout = Text.create(file);     //attempts to open output
               for( int x = 0; x < numstaff; x++ )
     if (staff != null) emptype = (staff[x].getClass().getName());
     if (emptype.equals("Employee"))
     staff[x].printToFile(fout);
//ta.append("\n\n******************** MANAGERS ********************\n");
     for( int x = 0; x < numstaff; x++ )
     if (staff[x] instanceof Manager)
//staff[x] = (Manager)staff[x]; - This is used if access to elements needed outside of class
     staff[x].printToFile(fout);
               fout.close();
          catch(IOException e)
               System.out.println("An IO Exception occured!");
public void doit(String file)
String filename = "";
String emptype = "";
String firstname = "";
String lastname = "";
String ssn = "";
String hiredate = null;
String secfirstname = "";
String seclastname = "";
String ofile = "";
numstaff = 0;
int yy = 0;
int mm = 0;
int dd = 0;
double salary = 0;
try
BufferedReader fin = Text.open(file); // attempts to open data file
try
numstaff = Text.readInt(fin); // # of records to set array size
staff = new Employee[numstaff];
for(int x = 0; x <= numstaff; x++) // # of records
emptype = Text.readString(fin);
firstname = Text.readString(fin);
lastname = Text.readString(fin);
ssn = Text.readString(fin);
salary = Text.readDouble(fin);
yy = Text.readInt(fin);
mm = Text.readInt(fin);
dd = Text.readInt(fin);
if(emptype.equals("M"))
secfirstname = Text.readString(fin);
seclastname = Text.readString(fin);
staff[x] = new Manager( emptype, firstname, lastname, ssn, salary,
yy, mm, dd, secfirstname, seclastname);
else
staff[x] = new Employee(emptype, firstname, lastname, ssn, salary,
yy, mm, dd);
staff[x].raiseSalary(5);
catch (EOFException e)
ta.append("******************** EMPLOYEES ********************\n");
for( int x = 0; x < numstaff; x++ )
if (staff != null) emptype = (staff[x].getClass().getName());
if (emptype.equals("Employee"))
staff[x].printToAwt(ta);
ta.append("\n\n******************** MANAGERS ********************\n");
for( int x = 0; x < numstaff; x++ )
if (staff[x] instanceof Manager)
//staff[x] = (Manager)staff[x]; - This is used if access to elements needed outside of class
staff[x].printToAwt(ta);
catch (FileNotFoundException e) // file not found, what the heck is this e thing
System.out.println("The file: " + file + " doesn't exist! ABORTING!");
catch(IOException e)
System.out.println("An IO Exception occured!");
class Employee
private NumberFormat coolsalary = NumberFormat.getCurrencyInstance(Locale.US);
public Employee(String emptype, String fn, String ln, String ssn, double s, int yy, int mm, int dd)
type = emptype;
fname = fn;
lname = ln;
salary = s;
social = ssn;
year = yy;
day = dd;
month = mm;
hireDay = new Day(year,month,day);
public void print()
System.out.println();
System.out.print(fname + " " + lname + "\t" + social + " " + coolsalary.format(salary) + " " + hireDay.toString()); }
public void printToFile(PrintWriter out)
out.println();
out.print(fname + " " + lname + "\t" + social + " " + coolsalary.format(salary) + " " + hireDay.toString());
public void printToAwt(javax.swing.JTextArea ta)
ta.append("\n");
ta.append(fname + " " + lname + "\t" + social + " " + coolsalary.format(salary) + " " + hireDay.toString());
public void raiseSalary(double byPercent)
salary *= 1 + byPercent / 100;
public int hireYear()
{  return hireDay.getYear();
public String type;
public String fname;
public String lname;
public double salary;
public String d;
public String social;
public int year;
public int month;
public int day;
public Day hireDay;
private Date date;
class Manager extends Employee
public Manager(String emptype, String fn, String ln, String ssn, double s, int yy, int mm, int dd, String fsec, String lsec)
super(emptype, fn, ln, ssn, s, yy, mm, dd);
secretaryfName = fsec;
secretarylName = lsec;
public void raiseSalary(double byPercent)
{  // add 1/2% bonus for every year of service
Day today = new Day();
double bonus = 0.5 * (today.getYear() - hireYear());
super.raiseSalary(byPercent + bonus);
public void print()
{    super.print();
System.out.print(" " + getName());
public void printToAwt(javax.swing.JTextArea ta)
super.printToAwt(ta);
ta.append(" " + getName());
public void printToFile( PrintWriter out)
super.printToFile(out);
out.print(" " + getName());
public void setSecretaryName(String fn, String ln)
{  secretaryfName = fn;
secretarylName = ln;
public String getName()
{  return secretaryfName + " " + secretarylName;
private String secretaryfName;
private String secretarylName;

Alright, I feel like the biggest idiot that ever walked the earth. Thank you for your help.

Similar Messages

  • Can't find some albums when trying to insert photos into other programs

    I am having trouble finding albums (and thus pictures) when trying to insert photos into a Word document or upload to mySpace/ facebook etc.
    After choosing 'insert<picture<from file<pictures<iPhoto Library' , I have the option of looking into the year-month-date or by album. Since I have a better memory of the 50+ albums I have created rather than their dates, I choose "Albums". This list only contains about half of my albums (with folder icons) and it appears outdated...ie one of the albums no longer exists in iPhoto and has been changed to a folders with several albums in it.
    I'm wondering why this is happening or how i can update the album list. I realize i could use the year-month-day thing but that is too frustrating.
    Carey
    iBook G4   Mac OS X (10.4.3)  
    iBook G4   Mac OS X (10.4.3)  

    Hi chantreya,
    iPhoto 5 now stores the Album information in a data xml file. The Albums folder within the iPhoto Library folder is no longer used. At some point, usually after a rebuild, you will no longer have that folder in the Finder.
    If you need to access photos from an album it is very difficult for a third party application to navigate the iPhoto Library in order to find the photo you need. You will have to know the date of import in order to find the photo.
    There are some third party applications that can read the xml file and can navigate the iPhoto library and show you the Albums. Hopefully more applications will be revised to read this file.
    Until then you will have to Share/Export the photos to the desktop. You can then navigate to the desktop to use the photos (example: web uploading from online photo site)
    If your application supports drag and drop, you can drag the photo from an open iPhoto Library window into your application.
    For email you can also use the email icon within iPhoto to open a message with the highlighted photo attached.
    You can also use spotlight to find images in an Album...
    This is what I have done using Spotlight to find my images that are in iPhoto albums without opening iPhoto..
    In iPhoto, select the album, then select all, go to Photos/batch change.
    Change the comments to text. In the text field I put the name of the Album.
    Do this for each album.
    Close iPhoto.
    Open Spotlight and put in the name of the Album ( you have to remember the names of the albums or have then written down)
    In the spotlight search results. click on "show all"
    Under "Images" click on the "xx more" to show all the images in the album.
    Make sure you have it in icon view, the icon view box is the last one on the blue images line.
    Now you can control click on the image to "reveal in finder", open in iPhoto or Mail, etc.
    I am not sure if this is going to make you happy and it is a little more work, but you can find images in albums and even view them in a slideshow (by clicking the play arrow at the end of the Images highlighted blue line) using Spotlight, all without opening iPhoto.
    One important thing to know is you can set up a graphic program to be an external editor (when you double click an image in the library} such as PhotoShop or PS Elements. You set up that within iPhoto Preferences. Just make sure you save the image flattened and with the same name. The edits will then be relected in iPhoto when you hit "save".
    Two Apple kbs for you to read
    Don't tamper with files in the iPhoto library folder
    About the iPhoto Library folder
    Lori

  • Crashing when trying to insert file into multitrack

    I am using CS4 on a MacBook Pro. Has been working fine last four months and then recently whenever I try to put an audio file into a multitrack file, the program closes with this message:
    Adobe Soundbooth CS4 quit unexpectedly.
    Here are the boring details. Crashes every time. I have completely uninstalled the entire CS4 Master Suite and Reinstalled it. Same issue. Below is the latest crash report.
    Process:         Adobe Soundbooth CS4 [4036]
    Path:            /Applications/Adobe Soundbooth CS4/Adobe Soundbooth CS4.app/Contents/MacOS/Adobe Soundbooth CS4
    Identifier:      com.adobe.Soundbooth
    Version:         20080902.0652 (2.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [86]
    Date/Time:       2011-01-20 13:30:39.686 -0800
    OS Version:      Mac OS X 10.6.6 (10J567)
    Report Version:  6
    Interval Since Last Report:          110359 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  749 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      760CEB88-C10C-44E9-AA38-81F5E3D18531
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7ffff0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x98be54a2 tiny_malloc_from_free_list + 981
    1   libSystem.B.dylib             0x98be4301 szone_malloc_should_clear + 263
    2   libSystem.B.dylib             0x98be41a8 malloc_zone_malloc + 81
    3   com.apple.CoreFoundation      0x92baff27 _CFArrayReplaceValues + 2647
    4   com.apple.CoreFoundation      0x92baf4ab CFArrayAppendValue + 139
    5   com.apple.audio.CoreAudio     0x90d9c5b2 CACFArray::AppendString(__CFString const*) + 36
    6   com.apple.audio.CoreAudio     0x90d8db47 IOA_MultiDeviceDescription::CopySubDeviceUIDList() const + 279
    7   com.apple.audio.CoreAudio     0x90d8acf8 IOA_MultiDevice::GetPropertyData(AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 200
    8   com.apple.audio.CoreAudio     0x90d53b2b HP_HardwarePlugIn_ObjectGetPropertyData(AudioHardwarePlugInInterface**, unsigned long, AudioObjectPropertyAddress const*, unsigned long, void const*, unsigned long*, void*) + 379
    9   com.apple.audio.CoreAudio     0x90d538d8 HALPlugIn::ObjectGetPropertyData(HALObject const&, AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 92
    10  com.apple.audio.CoreAudio     0x90d49b23 HALObject::GetPropertyData(AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 529
    11  com.apple.audio.CoreAudio     0x90d55b69 HALDevice::GetPropertyData(AudioObjectPropertyAddress const&, unsigned long, void const*, unsigned long&, void*) const + 1193
    12  com.apple.audio.CoreAudio     0x90d494d7 AudioObjectGetPropertyData + 365
    13  ...ore.Frameworks.AudioSupport 0x03516e35 ML::Device::GetNumberOfSubDevicesInAggregation(unsigned long) + 165
    14  ...ore.Frameworks.AudioSupport 0x0351923d ML::Device::GetSubDevicesInAggregation(unsigned long, std::vector<unsigned long, std::allocator<unsigned long> >&) + 49
    15  ...ore.Frameworks.AudioSupport 0x035193ee ML::Device::GetNumberStreams(unsigned long, unsigned char) + 70
    16  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    17  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    18  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    19  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    20  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    21  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    22  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    23  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    24  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    25  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    26  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    27  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    28  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    29  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    30  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    31  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    32  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    33  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    34  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    35  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    36  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    37  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    38  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    39  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    40  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    41  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    42  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    43  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    44  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    45  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    46  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    47  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    48  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    49  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    50  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    51  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    52  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    53  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    54  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    55  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    56  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    57  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    58  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    59  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    60  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    61  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    62  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    63  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    64  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    65  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    66  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    67  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    68  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    69  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    70  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    71  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    72  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    73  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    74  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    75  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    76  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    77  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    78  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    79  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    80  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    81  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    82  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    83  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    84  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    85  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    86  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    87  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    88  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    89  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    90  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    91  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    92  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    93  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    94  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    95  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    96  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    97  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    98  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    99  ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    100 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    101 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    102 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    103 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    104 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    105 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    106 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    107 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    108 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    109 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    110 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    111 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    112 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    113 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    114 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    115 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    116 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    117 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    118 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    119 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    120 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    121 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    122 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    123 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    124 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    125 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    126 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    127 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    128 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    129 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    130 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    131 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    132 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    133 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    134 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    135 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    136 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    137 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    138 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    139 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    140 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    141 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    142 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    143 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    144 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    145 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    146 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    147 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    148 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    149 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    150 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    151 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    152 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    153 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    154 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    155 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    156 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    157 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    158 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    159 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    160 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    161 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    162 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    163 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    164 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    165 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    166 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    167 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    168 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    169 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    170 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    171 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    172 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    173 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    174 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    175 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    176 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    177 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    178 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    179 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    180 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    181 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    182 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    183 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    184 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    185 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    186 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    187 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    188 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    189 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    190 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    191 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    192 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    193 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    194 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    195 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    196 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    197 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    198 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    199 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    200 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    201 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    202 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    203 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    204 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    205 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    206 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    207 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    208 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    209 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    210 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    211 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    212 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    213 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    214 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    215 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    216 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    217 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    218 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    219 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    220 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    221 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    222 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    223 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    224 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    225 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    226 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    227 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    228 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    229 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    230 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    231 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    232 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    233 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    234 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    235 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    236 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    237 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    238 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    239 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    240 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    241 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    242 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    243 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    244 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    245 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    246 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    247 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    248 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    249 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    250 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    251 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    252 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    253 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    254 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    255 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    256 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    257 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    258 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    259 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    260 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    261 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    262 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    263 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    264 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    265 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    266 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    267 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    268 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    269 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    270 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    271 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    272 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    273 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    274 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    275 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    276 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    277 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    278 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    279 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    280 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    281 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    282 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    283 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    284 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    285 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    286 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    287 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    288 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    289 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    290 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    291 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    292 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    293 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    294 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    295 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    296 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    297 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    298 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    299 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    300 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    301 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    302 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    303 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    304 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    305 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    306 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    307 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    308 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    309 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    310 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    311 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    312 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    313 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    314 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    315 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    316 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    317 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    318 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    319 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    320 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    321 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    322 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    323 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    324 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    325 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    326 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    327 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    328 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    329 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    330 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    331 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    332 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    333 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    334 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    335 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    336 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    337 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    338 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    339 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    340 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    341 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    342 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    343 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    344 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    345 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    346 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    347 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    348 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    349 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    350 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    351 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    352 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    353 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    354 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    355 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    356 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    357 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    358 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    359 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    360 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    361 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    362 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    363 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    364 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    365 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    366 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    367 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    368 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    369 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    370 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    371 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    372 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    373 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    374 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    375 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    376 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    377 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    378 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    379 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    380 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    381 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    382 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    383 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    384 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    385 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    386 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    387 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    388 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    389 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    390 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    391 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    392 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    393 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    394 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    395 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    396 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    397 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    398 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    399 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    400 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    401 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    402 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    403 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    404 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    405 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    406 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    407 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    408 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    409 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    410 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    411 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    412 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    413 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    414 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    415 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    416 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    417 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    418 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    419 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    420 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    421 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    422 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    423 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    424 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    425 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    426 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    427 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    428 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    429 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    430 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    431 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    432 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    433 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    434 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    435 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    436 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    437 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    438 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    439 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    440 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    441 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    442 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    443 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    444 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    445 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    446 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    447 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    448 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    449 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    450 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    451 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    452 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    453 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    454 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    455 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    456 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    457 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    458 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    459 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    460 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    461 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    462 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    463 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    464 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    465 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    466 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    467 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    468 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    469 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    470 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    471 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    472 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    473 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    474 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    475 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    476 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    477 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    478 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    479 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    480 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    481 ...ore.Frameworks.AudioSupport 0x03519461 ML::Device::GetNumberStreams(unsigned long, unsigned char) + 185
    482 ...ore.Frameworks.AudioSupport

    OK, here's a kicker for ya. I just recorded a file by switching my inputs to the onboard mic on the Macbook pro. I then inserted it into a multi-track file and it worked fine. Then I inserted the others files I was trying to use and they worked fine. The only thing I can think of is the USB input from my mixer must have momentarily wigged out the program until the input/output was changed again. Working fine.

  • "null" when trying to insert HTML embed code after 2014.3 update

    I am currently attempting to insert the HTML code of an excel spreadsheet into my adobe muse site. If I copy paste the embed code directly onto the page, nothing happens. If I try the "insert HTML" function, when I paste the embed code there, it simply places "null". I have successfully pasted the same embed code into my muse site before, but the problem began after I updated to Muse 2014.3. Please help me with this as it is inhibiting me from the production of my website where the embedded spreadsheets are extremely important.
    Here is the embed code.
    <iframe width="358" height="900" frameborder="0" scrolling="no" src="https://onedrive.live.com/embed?cid=84CEA296175B532C&resid=84CEA296175B532C%21193&authkey= AP_X9buPgnrR1MM&em=2&ActiveCell='HA_Tier_List'!A3&Item='HA_Tier_List'!A%3AD&wdHideGridline s=True"></iframe>

    I had success using museGrid's 'iFrame Builder' widget. Here's the iFrame that it created...
    <iframe class="actAsDiv" src="https://onedrive.live.com/embed?cid=84CEA296175B532C&resid=84CEA296175B532C%21193&authkey= AP_X9buPgnrR1MM&em=2&ActiveCell=%27HA_Tier_List%27!A3&Item=%27HA_Tier_List%27!A%3AD&wdHide Gridlines=True" style="border:0px #FFFFFF none;" name="myiFrame" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" height="900px" width="358px"></iframe>

  • Help! Can't paste into code view or property inspector

    I'm experiencing a weird and extremely annoying bug in Dreamweaver CS6 -- I can't paste text from outside apps into DW's code view or into the property inspector (such as URLs).
    Pasting doesn't work no matter the method: Ctrl + V, right-clicking or using the Edit menu. Pasting works normally in every other program. If I copy within Dreawmweaver, pasting works fine.
    Does anyone have a solution for this? I'm running Win 8 and DW 12.1 through Creative Cloud. Searching the forums, I see others have reported the same issue. Some have been able to fix it by deleting the configuration file; that didn't fix the issue for me. I'd like to try reinstalling DW, but the Adobe Application Manager doesn't seem to allow that.
    I began noticing this bug about two weeks ago. That might have been about the same time I updated to 12.1. Can anyone help?
    Thanks,
    Cory K.

    Adding to my last post, I used a clipboard format inspector called nclip (http://code.google.com/p/nclip/) to see if I could find a pattern between "what works" and "what doesn't".
    There are two cases where I'm seeing paste-into-Dreamweaver CS6 fail:
    Paste into Code View fails, but Paste into Design View works!
    Paste into either Code View or Design View fails
    I went through the list of programs that worked and didn't worked, using nclip to show what clipboard formats were being saved from each working and non-working source. It appears that DreamWeaver CS6 as of January 9, 2013 doesn't accept the most basic text clipboard formats:
    CF_UNICODETEXT
    CF_TEXT
    CF-OEMTEXT
    CF_LOCALE
    If these are the only clipboard formats used by an app (for example, Window's venerable Notepad.exe), Dreamweaver doesn't appear to handle them. Most programmer-style text editors output just these formats, because they are presumed to be understood any application that handles text. These fail for both pasting into codeview and design view.
    Interestingly, Chrome browser fails the code view test, but it does work in design view! It outputs the four clipboard types above, plus one more:
    Custom Format: HTML Format
    Hypothesis 1: Any application that puts HTML Format on the clipboard will paste into design view, but not necessarily code view.
    Next, Visual Studio 2010 and Sticky Notes, which doesn't include HTML Format as a clip type, works for both code view and design view. They both output this type in addition to the basics:
    Custom Format: Rich Text Format
    Two programs that output Rich Text Format without HTML Format are Sticky Notes and WordPad. These both work with Code View and Design View. From these limited tests on my system, it appears that for Dreamweaver to accept a text paste from an outside program into Code View, that program must output Rich Text Format to the clipboard. Otherwise, it fails. Dreamweaver will accept HTML Format, but only in Design View. Firefox is an exception in that it don't export Rich Text Format, but still works with Code View. It might use OLE, though (Chrome doesn't seem to use OLE, and it breaks in code view).
    Hypothesis 2: Any application that puts Rich Text Format on the clipboard will paste into design view AND code view.
    If Dreamweaver is really ignoring the basic text clipboard formats, and it's not just my system configuration, then this is a bug. Probably something that got overlooked in testing.
    To reproduce on Dreamweaver 12.1 build 5966:
    Try copy/pasting text from Notepad.exe into Dreamweaver Code View (DWCV). This fails for me.
    Try copy/pasting text from WordPad.exe into DWCV. This works!
    Try copy/pasting text from Internet Explorer 9 or Firefox into DWCV. This works!
    Try copy/pasting text from Chrome. This fails to paste into Code View, but does paste into Design View
    The Code View workaround:
    Use Firefox or Internet Explorer for your browser if you're copy/pasting source code.
    If you're working from another text editor, try copy/pasting into intermediate programs Sticky Notes or WordPad, then copy/paste from there into Dreamweaver.
    So that is my experience on Windows 7 64-bit. Anyone else experiencing the same thing?

  • Urgent help needed in inserting data into a custom table in oracle WorkFlow

    Hi
    I am trying to get data from the WF and insert into a custom table..
    I read that workflow procedures WONT allow commits...
    Oracle Workflow will not support autonomous commits in any procedure it calls directly. If you need to perform commits, then embed your SQL in a subprocedure and declare it as an autonomous block. This subprocedure must be capable of being rerun. Additionally, note that Oracle Workflow handles errors by rolling back the entire procedure and setting its status to ERROR. Database updates performed by autonomous commits cannot be rolled back, so you will need to write your own compensatory logic for error handling
    Have anyone did this..
    Please give me some idea ...It is urgent
    I am getting data using getitemattribute..and try to insert it into a custom table
    thanks
    kp

    Pl do not post duplicate threads - insert dont work in Workflow
    Srini

  • Exception while trying to insert data into Target Table

    Hi ,
    Im trying pick data from a table A which is in DB1 and trying to insert table B which is in DB2 .Below are the steps which I did.But im getting the exception
    *"Caused By: java.sql.SQLSyntaxErrorException: ORA-02019: connection description for remote database not found:"* .Can some one help me with this .
    Note : The DB that im using is Oracle 10g Express Edition and ODI studio is ODI 11.1.1.5.0
    1.Created a two Data Server -one for each Data base (DB1 and DB2)
    2.Created two Physical Schema under the respective Data Server
    3.Created two Logical Schema referring respective Physical Schema
    4.Created a two Models for each Logical schema and did Reverse Engineer
    5.Created an Interface , imported the Knowledge models and did the mapping between the Source and Target Data Source
    KM's used :
    Source data store-Staging Area-LKM Oracle to Oracle (DBLink)
    Target Properies-IKM Oracle Incremental Update
    I unchecked Stagin Area Different from Target .
    Thanks
    John

    Hi John,
    I think you need to create public database link then create public synonym
    After creating that, please check it from DB side it is working or not, then check from ODi end and go thru below URL hope this will helps you.
    https://forums.oracle.com/forums/thread.jspa?threadID=530074
    Thanks,
    Phani

  • ORA-1013 when trying to insert data into the table

    Hi,
    While inserting record into a table, we are getting the following error:
    ORA-1013
    01013, 00000, "user requested cancel of current operation"
    I could not find any information in alert log also.
    We have a bitmap index on this table. However, we never got this error till now.
    Also i found that the tablespace who stores data has lot of space and tablespace which consists of the indexes is close to 90% full today ( i dont know what was the space available yesterday when there was error).
    I know that information i provided might be very less, but i gave as much information as i can provide.
    Can you please help me in trouble shooting this problem.
    Thank you
    Giridhar

    Sorry. i forgot to give version information
    Oracle version: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0
    OS: SunOS 5.10
    we got it only once yesterday. only for one table. not for any other tables.
    Thanks aalap for your quick response.
    Giridhar

  • Please help with multiple insert query into nested table!!!!

    I am having a problem with inserting multiple references to objects into a nested table using the following query:
    INSERT INTO TABLE(SELECT Taken_by FROM courses WHERE course_number= 001)
    (SELECT REF(p) FROM persons p
    WHERE p.enroled_in = 'Computing for Business'
    The database says that p.enroled_in is an invalid identifier. I know why this is. This is because the field enroled_in is part of a subtype of person called student_type and the query above is not accounting for this properly. I would like to know the correct syntax to use so I can insert into the nested table wherever a student is enroled into the 'computing for business' course. My full schema is below:
    CREATE TYPE person_type;
    CREATE TYPE student_type;
    CREATE TYPE staff_type;
    CREATE TYPE course_type;
    CREATE TYPE module_type;
    CREATE TYPE address_type AS OBJECT
    Street VARCHAR2 (30),
    Town     VARCHAR2 (30),
    County VARCHAR2 (30),
    Postcode VARCHAR2 (9)
    CREATE TYPE person_type AS OBJECT
    Name VARCHAR2 (50),
    Address address_type,
    DOB     DATE
    ) NOT FINAL;
    CREATE TYPE staff_type UNDER person_type
    Staff_number NUMBER (2,0)
    ) FINAL;
    CREATE TYPE student_type UNDER person_type (
    Student_number NUMBER (2,0),
    Enroled_in VARCHAR2(50),
    MEMBER FUNCTION getAge RETURN NUMBER
    )NOT FINAL;
    CREATE OR REPLACE TYPE BODY student_type AS
    MEMBER FUNCTION getAge RETURN NUMBER AS
    BEGIN
    RETURN Trunc(Months_Between(Sysdate, DOB)/12);
    END getAge;
    END;
    CREATE TYPE module_type AS OBJECT
    Module_number VARCHAR2(6),
    Module_name VARCHAR2(50),
    Credit NUMBER(2,0),
    Taught_in VARCHAR2(50)
    CREATE TYPE students_tab AS TABLE OF REF person_type;
    CREATE TYPE modules_tab AS TABLE OF REF module_type;
    CREATE TYPE course_type AS OBJECT
    Course_number NUMBER (2,0),
    Course_name VARCHAR2(50),
    Dept_name VARCHAR2(50),
    Taken_by Students_tab,
    Contains Modules_tab
    CREATE TABLE modules OF module_type(
    constraint pk_modules primary key (Module_number)
    CREATE TABLE courses OF course_type(
    constraint pk_courses primary key (Course_number)
    NESTED TABLE Taken_by STORE AS students_nt,
    NESTED TABLE Contains STORE AS modules_nt;

    By the way I am using oracle 9i and trying to insert into the nested table data from a subtype (i.e student is a subtype of person)

  • Can no longer see my I-photo photos, when trying to insert photo into Word Document.

    I had some computer problems and did upgrade to Snow Leopard from Leopard. Using older MacBook Pro. 
    Now, when I try to insert a picture into a Word Document, I cannot see my photos!
    I am working in a word document, I choose "Insert Photo from my files" and when the window comes up so I can choose the photo to insert... when I select the "photos" choice under the Media section on the Left side of the box that comes up, the box to the right is BLANK, both on the top and bottom!  None of my photos come up for selection. 
    This method to choose photos to insert into documents used to work before... now it is not.  After selecting "photos" all my photos would appear in the right box, and I would move through my I-photo events to choose my saved photo and insert it.  Yes, photos are showing and present in I-photo.  They just won't appear for importing.
    This is so frustrating, not to mention time comsuming trying to figure out what is going on and how to fix it.
    Can anyone help? Please?

    Oroilore-
    I do not see a way to disable the Picture Frame icon.  I looked at Settings-Picture Frame, but none of the options turns it off.  The only way I can thinik of, would be if all of your photos had been deleted.  If there were no photos, you couldn't have a slide show!
    One thing to try is to reset (reboot) your iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart after a couple of minutes.  Resetting this way will not hurt anything, and sometimes clears up mysterious problems.
    Fred

  • Trying to insert data into a spreadsheet on the fly

    I'm sure this is a very basic question, but I came into the project I'm
    doing this semester with no LabVIEW experience, and I've just taught
    myself along the way.
    RIght now, I'm trying to calibrate a pyrometer with a thermocouple
    wafer.  I want to generate a set of data points of the TC readout
    in deg C  vs.  pyrometer amps.  The part of my program
    that I'm using to control the lamp (and thusly, the heat) is a state in
    a state machine.  The state itself is a while loop.  I've
    generated some code that I thought would do the trick.  I
    apologize for the messiness, as I kinda cobbled it together off the top
    of my head.
    The time delay is set to 0.1 seconds, to generate a reading at that
    interval.  The result of this code is that the files only have the
    first reading in them, and that's it.  I imagine my error is in
    the initialization.  By putting the initialize array things in the
    while loop, I thought it'd clear everything out each time through the
    loop.  But I wasn't sure how else to do it.  And, the files
    are keeping the very first value they take, not just overwriting the
    old with the new.  I know it's probably much easier to implement
    this another way, but I don't know of such a way, at least not without
    seriously altering the general setup of my program.

    Hi,
    I am not sure why you are even doing any array operations. You can simply connect the output of your Express VIs to the Write to Spreadsheet file.vi and it will work howver this is not a good programming practice.
    Usually if you are acquiring data in a  while loop and writing it to file, you want to open the file before the beginning of the loop, write to the file in the loop (using Write File.VI), and close the file after the loop finishes executiong. This approach prevents opening and closing the file every time the loop runs (which is what happens when you use a high level file Vi like Write to Spreadsheet File inside the loop).
    I hope this helps. Please post if you need any further help/explanation.
    Ankita

  • Please help me in inserting data into table from XML message.

    Hi Experts,
    Please provide a procedure to implement my below requirement.
    Since I am new to queue concept.
    [code]- <MESSAGES>
    - <MESSAGE ID="3026900">
      <MSG_ID>3026900</MSG_ID>
      <DT_POSTED>6/20/2013 08:15:48</DT_POSTED>
      <POSTED_BY>GPD_MSG_EXTRACTOR</POSTED_BY>
      <DT_LAST_QUEUED />
    - <MSG>
    - <WORK_SET TRANSACTION_ID="@TRANS_ID" TRANSACTION_TYPE="Batch" IS_ACID="@IS_ACID">
    - <WORK_UNIT GROUP="LEAD_TIME" ACTION="UPDATE" AFFECTED="LEAD_TIME">
    - <RECORDSET TABLE_NAME="LEAD_TIME">
    - <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    - <rs:data>
      <z:row business_unit_id="3838" geo="AT" sku="A0814818" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      <z:row business_unit_id="202" geo="GB" sku="A0814819" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      <z:row business_unit_id="2828" geo="BE" sku="A0814820" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      </rs:data>
      </xml>
      </RECORDSET>
      </WORK_UNIT>
    - <WORK_UNIT GROUP="LEAD_TIME" ACTION="ADD" AFFECTED="LEAD_TIME">
    - <RECORDSET TABLE_NAME="LEAD_TIME">
    - <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    - <rs:data>
      <z:row business_unit_id="202" geo="GB" sku="A0814821" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      <z:row business_unit_id="2828" geo="BE" sku="A0814822" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      </rs:data>
      </xml>
      </RECORDSET>
      </WORK_UNIT>
    - <WORK_UNIT GROUP="LEAD_TIME" ACTION="DELETE" AFFECTED="LEAD_TIME">
    - <RECORDSET TABLE_NAME="LEAD_TIME">
    - <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    - <rs:data>
      <z:row business_unit_id="202" geo="GB" sku="A0814817" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      <z:row business_unit_id="2828" geo="BE" sku="A0814816" dw_maint_flag="False" stock_status_id="0" lead_time="30" est_qty="0" leadtime_lock="False" update_dts="2013-06-12T02:08:30.367" update_uid="DEACTIVATE_SKU_PROCESS" leadtime_dts="2010-05-22T02:21:21.707" leadtime_uid="Lead_Time_Rules" />
      </rs:data>
      </xml>
      </RECORDSET>
      </WORK_UNIT>
      </WORK_SET>
      </MSG>
      </MESSAGE>
      </MESSAGES>[/code]
    The above XML message is receieved by our oracle queue.Once the message is receieved to our queue.
    We have to process the message according to the action(UPDATE ADD DELETE).
    From this message we have to process only 3 fields (geo  sku lead_time).
    These three feilds data should be processed into the SKU_LEAD_TIME table based on the action.
    Req1:
    IF the action is update then the records should be updated in the "LEAD_TIME_TABLE" table
    IF the action is update then the records should be updated in the "LEAD_TIME_TABLE" table
    based on the below condition.
    [code]UPDATE LEAD_TIME_TABLE SET lead_time= lead time from xml message
    WHERE LEAD_TIME_TABLE.SKU=sku from xml message AND LEAD_TIME_TABLE.GEO=geo from xml message;[/code]
    Req2:
    IF the action is delete then the records should be deleted from the "LEAD_TIME_TABLE" table.
    based on the below condition.
    [code]DELETE FROM LEAD_TIME_TABLE
    WHERE LEAD_TIME_TABLE.SKU=sku from xml message AND LEAD_TIME_TABLE.GEO=geo from xml message;[/code]
    Req3:
    IF the action is add then the records should be inserted in the "LEAD_TIME_TABLE"  and "LEAD_TIME_TABLE_STAGING" table
    based on the below conditions.
    Req3.1:
    If SKU from XML message is available in "SKU_TABLE" table
    then the three parameter(GEO SKU LEAD_TIME) values from XML message should be inserted into "LEAD_TIME_TABLE" table.
    Req3.2:
    If SKU from XML message is not available in "SKU_TABLE" table
    then the three parameter(GEO SKU LEAD_TIME) values from XML message should be inserted into "LEAD_TIME_TABLE_STAGING" table.
    Req3.3:
    Once the new SKU is avilable in "SKU_TABLE" table then the corresponding SKU record should be
    inserted into "LEAD_TIME_TABLE" table and that record should be deleted from  "LEAD_TIME_TABLE_STAGING" table.
    I am posting required scripts and test cases.
    [code]CREATE TABLE LEAD_TIME_TABLE(sku VARCHAR2(20),model VARCHAR2(20),class CHAR(1),geo VARCHAR2(6),lead_time NUMBER,created DATE);
    CREATE TABLE LEAD_TIME_TABLE_STAGING(sku VARCHAR2(20),geo VARCHAR2(6),lead_time NUMBER);
    CREATE TABLE SKU_TABLE(sku VARCHAR2(20),geo VARCHAR2(6),lead_time NUMBER);
    INSERT INTO SKU_TABLE VALUES('A0814817','GB',30);
    INSERT INTO SKU_TABLE VALUES('A0814818','AT',30);
    INSERT INTO SKU_TABLE VALUES('A0814819','GB',30);
    INSERT INTO SKU_TABLE VALUES('A0814820','BE',30);
    INSERT INTO SKU_TABLE VALUES('A0814821','GB',30);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814817','GB',30);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814818','AT',20);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814819','GB',20);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814820','BE',20);
    INSERT INTO LEAD_TIME_TABLE_STAGING VALUES('A0814822','BE',30);[/code]
    From the above message.
    Test case for req3.1:
    The action for SKU numbers "A0814821"  "A0814822" are insert.
    The SKU number  "A0814821" is available in SKU_TABLE table.
    so the record should be inserted in the LEAD_TIME_TABLE.
    [code]SELECT * FROM LEAD_TIME_TABLE;
    SKU        GEO   LEAD_TIME
    A0814817    GB    30
    A0814818    AT    20
    A0814819    GB    20
    A0814820    BE    20
    A0814821    GB    30[/code]
    Test case for req3.2:
    The action for SKU numbers "A0814821"  "A0814822" are insert.
    The SKU number  "A0814822" is not available in SKU_TABLE table.
    so the record should be inserted in the LEAD_TIME_TABLE_STAGING.
    [code]SELECT * FROM LEAD_TIME_TABLE_STAGING;
    SKU        GEO   LEAD_TIME
    A0814822    BE     30[/code]
    Test case for req3.3:
    The action for SKU numbers "A0814821"  "A0814822" are insert.
    The SKU number  "A0814822" is not available in SKU_TABLE table.
    Once I insert SKU number "A0814822" in SKU_TABLE table.
    The corresponding records automatically should be inserted in the LEAD_TIME_TABLE
    and should be deleted from LEAD_TIME_TABLE_STAGING.
    [code]SELECT * FROM LEAD_TIME_TABLE_STAGING;  --- should return NULL.
    SELECT * FROM LEAD_TIME_TABLE;
    SKU        GEO   LEAD_TIME
    A0814817    GB    30
    A0814818    AT    20
    A0814819    GB    20
    A0814820    BE    20
    A0814821    GB    30
    A0814822    BE    30[/code]
    Please help me.
    Thanks in advance.

    Hi,
    I have resolved this issue.
    But I have stuck up in implementing some of the scenarios.
    Req1:
    IF the action is update then the records should be updated in the "LEAD_TIME_TABLE" table
    IF the action is update then the records should be updated in the "LEAD_TIME_TABLE" table
    based on the below condition.
    UPDATE LEAD_TIME_TABLE SET lead_time= lead time from xml message
    WHERE LEAD_TIME_TABLE.SKU=sku from xml message AND LEAD_TIME_TABLE.GEO=geo from xml message;
    Req3:
    IF the action is add then the records should be inserted in the "LEAD_TIME_TABLE"  and "LEAD_TIME_TABLE_STAGING" table
    based on the below conditions.
    Req3.1:
    If SKU from XML message is available in "schema_name.SKU_TABLE" table.
    The schema_name.SKU_TABLE table should be selected based on "business_unit_id" of XML message and "sid" of MAPPING table WHERE business_unit_id=sid.
    then the three parameter(GEO SKU LEAD_TIME) values from XML message and two fields MODEL,CLASS from SKU_TABLE
    should be inserted into "LEAD_TIME_TABLE" table.
    Req3.2:
    If SKU from XML message is not available in "schema_name.SKU_TABLE" table
    The schema_name.SKU_TABLE table should be selected based on "business_unit_id" of XML message and "sid" of MAPPING table WHERE business_unit_id=sid.
    then the four parameter(BUSINESS_UNIT_ID GEO SKU LEAD_TIME) values from XML message
    should be inserted into "LEAD_TIME_TABLE_STAGING" table.
    Req3.3:
    Once the new SKU is avilable in "schema_name.SKU_TABLE" table then the corresponding SKU record should be
    inserted into "LEAD_TIME_TABLE" table and that record should be deleted from  "LEAD_TIME_TABLE_STAGING" table.
    The schema_name.SKU_TABLE table should be selected based on "business_unit_id" of LEAD_TIME_TABLE_STAGING and "sid" of MAPPING table WHERE business_unit_id=sid.
    I am posting required scripts and test cases.
    [code]CREATE TABLE LEAD_TIME_TABLE(sku VARCHAR2(20),model VARCHAR2(20),class CHAR(1),geo VARCHAR2(6),lead_time NUMBER,created DATE);
    CREATE TABLE LEAD_TIME_TABLE_STAGING(business_unit_id NUMBER,sku VARCHAR2(20),geo VARCHAR2(6),lead_time NUMBER);
    CREATE TABLE SKU_TABLE(sku VARCHAR2(20),model VARCHAR2(20),class VARCHAR2(10));
    CREATE TABLE mapping(sid NUMBER,schema_name VARCHAR2(20));
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814817','GB',30);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814818','AT',20);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814819','GB',20);
    INSERT INTO LEAD_TIME_TABLE(SKU,GEO,LEAD_TIME) VALUES('A0814820','BE',20);
    INSERT INTO SKU_TABLE VALUES('A0814817','M125','C111');
    INSERT INTO SKU_TABLE VALUES('A0814818','M127','A111');
    INSERT INTO SKU_TABLE VALUES('A0814819','M126','A111');
    INSERT INTO SKU_TABLE VALUES('A0814820','N100','B111');
    INSERT INTO SKU_TABLE VALUES('A0814821','P123','B111');
    INSERT INTO mapping VALUES(202,'WEDB');
    INSERT INTO mapping VALUES(2828,'HR');
    INSERT INTO mapping VALUES(3838,'BB');
    [/code]
    Test case for req3.1:
    The action for SKU numbers "A0814821"  "A0814822" are insert.
    The SKU number  "A0814821" is available in schema_name.SKU_TABLE table.
    so the record should be inserted in the LEAD_TIME_TABLE.
    [code]SELECT * FROM LEAD_TIME_TABLE;
    SKU        MODEL  CLASS  GEO   LEAD_TIME
    A0814817    M125   C111   GB     30
    A0814818    M127   A111   AT     20
    A0814819    M126   A111   GB     20
    A0814820    N100   B111   BE     20
    A0814821    P123   B111   GB     30
    [/code]
    Test case for req3.2:
    The action for SKU numbers "A0814821"  "A0814822" are insert.
    The SKU number  "A0814822" is not available in SKU_TABLE table.
    so the record should be inserted in the LEAD_TIME_TABLE_STAGING.
    [code]SELECT * FROM LEAD_TIME_TABLE_STAGING;
    BUSINESS_UNIT_ID       SKU        GEO   LEAD_TIME
    2828               A0814822    BE     30[/code]
    Test case3.3.3:
    The action for SKU numbers "A0814821"  "A0814822" are insert.
    The SKU number  "A0814822" is not available in SKU_TABLE table.
    Once I insert SKU number "A0814822" in SKU_TABLE table.
    The corresponding records automatically should be inserted in the LEAD_TIME_TABLE
    and should be deleted from LEAD_TIME_TABLE_STAGING.
    [code]INSERT INTO SKU_TABLE VALUES('A0814822','P123','B111');
    SELECT * FROM LEAD_TIME_TABLE_STAGING;  --- should return NULL.
    SELECT * FROM LEAD_TIME_TABLE;
    SKU        MODEL  CLASS  GEO   LEAD_TIME
    A0814817    M125   C111   GB     30
    A0814818    M127   A111   AT     20
    A0814819    M126   A111   GB     20
    A0814820    N100   B111   BE     20
    A0814821    P123   B111   GB     30
    A0814822    P123   B111   GB     30[/code]
    I am able to implement Req1 and Req3.1 for action UPDATE and INSERT in single merge statement.
    However my code is not taking care of all my requirements.
    Please find my below code.
    [code]   CREATE OR REPLACE PACKAGE BODY messg_values_process
       AS
        procedure ProcessInboundLtimeMessage(p_xml_message XmlType)
        is
        begin
            for work_unit in (
                select message.MESSAGE_ID
                     , work_unit.ACTION
                     , work_unit.LEADTIME_NODES
                  from XmlTable(
                        '/MESSAGES/MESSAGE'
                        passing p_xml_message
                        columns
                            MESSAGE_NO          for ordinality
                          , MESSAGE_ID          number path '@ID'
                          , WORK_UNIT_NODES     XmlType path 'MSG/WORK_SET/WORK_UNIT'
                       ) message
                     , XmlTable(
                        XmlNamespaces(
                            'urn:schemas-microsoft-com:rowset' as "rs"
                          , '#RowsetSchema' as "z"
                        '/WORK_UNIT'
                        passing message.WORK_UNIT_NODES
                        columns
                            WORK_UNIT_NO        for ordinality
                          , ACTION              varchar2(10 char) path '@ACTION'
                          , LEADTIME_NODES       XmlType path 'RECORDSET[@TABLE_NAME="LEAD_TIME"]/xml/rs:data/z:row'
                       ) work_unit
        LOOP
                CASE work_unit.ACTION
                  WHEN 'ADD'    THEN MergeData(work_unit.LEADTIME_NODES);
                  WHEN 'UPDATE' THEN MergeData(work_unit.LEADTIME_NODES);
                  WHEN 'DELETE' THEN RemoveData(work_unit.LEADTIME_NODES);
                  ELSE null;
                END CASE;
            END LOOP;
        END ProcessInboundLtimeMessage;
            procedure MergeData(p_leadtime_nodes XmlType)
        is
        begin
            if (p_leadtime_nodes is not null) then
                merge into LEAD_TIME_TABLE old
                using(
                    select *
                      from XmlTable(
                            XmlNamespaces(
                                'urn:schemas-microsoft-com:rowset' as "rs"
                              , '#RowsetSchema' as "z"
                            '/z:row[not(@business_unit_id=following-sibling::z:row/@business_unit_id)]'
                            passing p_leadtime_nodes
                            columns
                                ITEM_NO             for ordinality
                              , BUSINESS_UNIT_ID    number path '@business_unit_id'
                              , GEO                 varchar2(20 char) path '@geo'
                              , SKU                 varchar2(20 char) path '@sku'
                              , LEAD_TIME           number path '@lead_time'
                ) NEW
                   ON (old.VK_UNIT = new.SKU
                  AND old.GEO=new.GEO)
                when matched then update
                   set old.LEAD_TIME = new.LEAD_TIME
                when not matched then INSERT
                     ( old.VK_UNIT
                     , old.MODEL
                     , old.CLASS
                     , old.GEO
                     , old.LEAD_TIME
                     , old.COUNTDOWN
                     , old.LAST_UPDATED_DATE
                     values
                     ( new.SKU
                     ,'A123'
                     ,'A1234'
                     , new.GEO
                     , new.LEAD_TIME
                     , 'N'
                     , sysdate
            end if;
             exception
            when others then
                LogDataError(
                    'MergeData Procedure Failed #: '||chr(10)||sqlerrm
                  , null
                  , null
        END MergeData;
    END messg_values_process;
    /[/code]
    Please help me.
    Thanks.

  • Linking multiple tables and Trying to insert records into Detail

    Hello,
    I have been struggling with this one for years...
    Work Order, Employee Labor, and Materials.  I then create a group headers using the Location field from the Work Order table.  I then create another Group, suppress the group name, and insert several fields from the Work Order table (work order number, wo description, status and completion date into Group 2 section.  Multiple rows of info are displayed.  I then enter some Employee Labor fields from the Labor table into the Details section (employee name, labor hours, pay rate, etc.).  I get several lines of employee labor transaction information grouped below each row of work order info from the Group 2 section.  So far, so good.
    Now I attempt to bring a field into the Details section from the 3rd table (Materials).  The moment I introduce the record, the rows of employee labor are duplicated over and over.  In fact, there are multiple duplicate labor transaction rows (over and over).
    What am I doing wrong???  I've tried every combination of Linking Order that I can think of...  I need help.
    Please reply.
    ps.  Let me know if I need to attach a screen shot.
    Thank you
    Robert

    hi Robert,
    this is a common issue when you add several details tables to a report. once you add the fields, then the sql generated will include those parent tables and you get a multiplier of records.
    my recommendation to you would be to use a subreport for the materials table instead.
    go to the Insert menu, choose Subreport and create a new subreport using the Wizard then add your current connection but this time only add the materials table. in the Linking tab, choose your Work order and then add the subreport to the Work order group header. now in the subreport add some fields from your materials table onto the subreport canvas.
    what this is essentially doing is a subquery to the database and returning all associated materials records based on a filter for the work order.
    the main report should not include any materials records and you can also remove this table from the database expert for the main report.
    i hope this helps,
    jamie

  • Error trying to insert xml into Oracle table

    Hi -
    I am trying to (a)read a row from emp table and output the results in xml format
    and (b) insert this row to another emp_new table (same structure as emp).
    When I run it here is what I get:
    OUTPUT IS:
    <?xml verions='1.0'?>
    <Employee>
    <Emp num="1">
    <EMPNO>7369</EMPNO>
    <ENAME>Smith</ENAME>
    <JOB>Clerk</JOB>
    <MGR>7902</MGR>
    <HIREDATE>12/7/1980</HIREDATE>
    <SAL>800</SAL>
    <DEPTNO>20</DEPTNO>
    </Emp>
    </Employee>
    Exception in thread "main" oracle.xml.sql.OracleXMLSQLException:
    No rows to modify -- the row enclosing tag is missing. Specify
    the correct row enclosing tag.
    etc...
    The row enclosing tag is given by setRowTag("Emp").
    What's wrong here? Any ideas?
    PS: To Ambrose Padilla: Your response was helpful. Thank you.
    Program
    import java.sql.*;
    import oracle.xml.sql.query.*;
    import oracle.jdbc.driver.*;
    import oracle.xml.sql.dml.*;
    class testXML
    public static void main(String[] args) throws SQLException
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    //initialize a JDBC connection
    Connecton conn = DriverManager.getConnection("jdbc:oracle:thin:mytest:1521:acme", "scott", "tiger");
    //initialize the OracleXMLQuery
    OracleXMLQuery qry =
    new OracleXMLQuery(conn,"select * from emp where rownum < 2");
         // set the document name
         qry.setRowsetTag("Employee");
         // set the row element name
         qry.setRowTag("Emp");
         // get the XML result
         String xmlString = qry.getXMLString();
         // print result
         System.out.println(" OUPUT IS:\n"+xmlString);
         OracleXMLSave sav = new OracleXMLSave(conn,"emp_new");
         sav.insertXML(xmlString);
         sav.close();
    }

    Try inserting
    sav.setRowTag("emp");
    before calling insertXML.

  • Inserting Spaces into code when pressing tab

    When I press the tab key, DW inserts a tab character in the
    code. I'd like to replace that behavior with it inserting spaces.
    DW catches when you don't add a trailing slash on certain HTML tags
    in XHTML, so is there a way to hook into that system and have it
    catch when you type a tab in?
    The code formatting preferences only apply to when DW
    auto-inserts tabs, not manually pressing the tab key.

    Go to Edit>Preferences>Code Format and ensure that the
    first setting is as follows:
    index (box checked) with "2" spaces (not tabs)

Maybe you are looking for