Openbox Users: Best way to control volume (sound volume)?

I use xfce4-panel for my panel, and I'm currently using the xfce4-panel.
What else do you guys use?

along the same lines as rusty:
> grep -A 4 XF86Audio .config/openbox/rc.xml
<keybind key="XF86AudioMute">
<action name="Execute">
<execute>/home/patrick/.bin/ossvol -t</execute>
</action>
</keybind>
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<execute>/home/patrick/.bin/ossvol -i 1</execute>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<execute>/home/patrick/.bin/ossvol -d 1</execute>
</action>
</keybind>
and
> cat .bin/ossvol
#!/bin/bash
# ossvol is a simple script to manage oss volume levels and muting.
# original script by: Daniel J Griffiths <[email protected]>
# Configure stuff
VOLSTORE=~/.volume
CHANNEL="vmix0-outvol"
ARGUMENT=$2
# dzen stuff
SECS="1" # sleep $SECS
BG="#080808" # background colour of window
FG="#ffffff" # foreground colour of text/icon
BAR_FG="#ffffff" # foreground colour of volume bar
BAR_BG="#080808" # background colour of volume bar
XPOS="750" # horizontal positioning
YPOS="515" # vertical positioning
HEIGHT="50" # window height
WIDTH="400" # window width
BAR_WIDTH="300" # width of volume bar
ICON="$HOME/.icons/dvol/spkr_02.xbm"
FONT="fixed"
# You shouldn't have to edit below here.
PIPE="/tmp/volpipe"
errorout() {
echo "$1"
exit 1
usage() {
echo "usage: ossvol [option] [argument]"
echo
echo "Options:"
echo " -i, --increase - increase volume by [argument]"
echo " -d, --decrease - decrease volume by [argument]"
echo " -t, --toggle - toggle mute on and off"
echo " -h, --help - display this"
exit 1
toggle() {
if [ -f $VOLSTORE ]; then
ossmix $CHANNEL `cat $VOLSTORE`
rm $VOLSTORE
else
VOLUME=$(ossmix $CHANNEL | awk '{print $10}' | awk -F : '{print $1}')
ossmix $CHANNEL 0
echo $VOLUME > $VOLSTORE
fi
increase() {
if [ -f $VOLSTORE ]; then
TMPVOL=`cat $VOLSTORE`
NEWVOL=`expr $TMPVOL + $ARGUMENT`
ossmix $CHANNEL +$NEWVOL
rm $VOLSTORE
else
ossmix $CHANNEL +$ARGUMENT
fi
decrease() {
if [ -f $VOLSTORE ]; then
TMPVOL=`cat $VOLSTORE`
NEWVOL=`expr $TMPVOL - $ARGUMENT`
ossmix $CHANNEL -- -$NEWVOL
rm $VOLSTORE
else
ossmix $CHANNEL -- -$ARGUMENT
fi
case "$1" in
'-i'|'--increase')
increase
'-d'|'--decrease')
decrease
'-t'|'--toggle')
toggle
'-h'|'--help')
usage
errorout "Unrecognized option \`$1', see ossvol --help"
esac
# dzen approach from bruenig's dvol script added by pbrisbin
# Using named pipe to determine whether previous call still exists
# Also prevents multiple volume bar instances
if [ ! -e "$PIPE" ]; then
mkfifo "$PIPE"
(dzen2 -tw "$WIDTH" -h "$HEIGHT" -x "$XPOS" -y "$YPOS" -fn "$FONT" -bg "$BG" -fg "$FG" < "$PIPE"
rm -f "$PIPE") &
fi
# Feed the pipe!
VOL=$(ossmix $CHANNEL | awk '{print $10}' | cut -d '.' -f 1)
VOL=$(expr $VOL \* 100 / 25)
(echo "$VOL" | gdbar -l "^i(${ICON})" -fg "$BAR_FG" -bg "$BAR_BG" -w "$BAR_WIDTH"; sleep "$SECS") >> "$PIPE"
exit 0
prints a nice dzen volume bar as you change it

Similar Messages

  • Non-Apple Keyboard: any way to control system audio volume?

    I have a non-Apple Keyboard on my new Mini Lion 7.2.1
    Is there any way to control system audio volume via the keyboard ?

    Well. I can do this. But just because, on my Apple keyboard, there are the keys that do the job. There's a key to mute, and the keys to adjust low and high the sound. But keyboard shortcuts, I don't think exist. The aren't in keyboard shortcut in Keyboard panel, within System Preferences. The bottom line is that isn't a menu item in Finder for lower sound and higher sound. The only option would be an AppleScript that you save as an applet within Scripts menu (activated in Finder via Script Editor) and you invoke with a shortcut... Well, you can do it, if you open the script Set Output Volume in UI Elements Script folder within Scripts folder. Try it out!

  • Best way to control selected plug in parameters?

    Hi all,
    I've got an M-Audio ProjectMix I/O which Logic sees as a Mackie Control. I'm looking for the best way to control plug in parameters. I know I can navigate through the plug in parameter pages on my PMix, but what I want is a screenset that has each needed parameter assigned to a fader or something.
    Can it be done using folders? Any ideas?
    Thanks a bunch!

    I think I figured it out.
    Use a folder, make a track for each parameter I want to control (or click that arrow to make another instance), then on my PMix I have to click the track view button a few times to view my plugins.
    Cheers.

  • What is the best way to control a mac mini with iphone 4s , prefer blue tooth

    Hi
    what is the best way to control a mac mini with iphone 4s , prefer blue tooth, or I can use the syncing cable as well. but no wifi.
    Basically to lanch an app and load a preset for that app.
    Thank you

    As V.K. noted, check out NetRestore's documentation http://www.bombich.com/software/docs/netrestore/English/index.html or visit the fourms at http://forums.bombich.com/

  • Best way to control and run multiple (up to 20) processes independantly in LV

    Hi all, 
    I'm trying to build an application in LV to independantly control and run multiple (up to 20) processes, ie, it should be able to start and stop any of the processes at any given time. What would the best way to code for this? Off the top of my head would be to use a unique notifier to control each of the process, but I'm thinking that the code upkeep may be a handful with this number of notifiers being defined. Are there better ways of doing this?
    Appreciate any help and insight on this.Thanks a bunch in advance!
    Solved!
    Go to Solution.

    I forgot some more important questions:
    How large is your development group?
    How much "discipline" do you want to program into the Process Commands framework? For instance, is it OK for any VI to command a process into a certain state, or should your program generate a broken wire or run-time error if a command is sent from a non-authorized source?
    Where do your needs fall on this spectrum: simplicity that gets the job done and the product out the door and will probably not need much maintenance or upgrading, or flexible framework that will likely undergo multiple upgrades or fall into the hands of multiple developers?
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

  • Best way to control graphics synchronized to video cue points

    Hello,
    I've recently completed (well, 'completed' is a strong word)
    a phase one implementation of a synchronized video presentation
    using After Effects and Flash. The basic idea driving the
    synchronization of cue points to motion graphics revolves around
    creating a listener in the following fashion:
    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(eventObject:Object):Void {
    // Put any code you like here
    trace(&quot;Cue point name: &quot; +
    eventObject.info.name);
    my_FLVPlybk.addEventListener(&quot;cuePoint&quot;,
    listenerObject);
    and then using the cue point name to play a variety of
    movieclips at the appropriate time in the presentation.
    The video presentation had four sections, each of which could
    be arbitratrily browsed to at any point in the presentation, so it
    was important that the the movieclips did not need to play in order
    and that they could be interrupted at any point without an visual
    confusion.
    I dealt with this two ways (I am sure these are not the best
    ways, which is why I am writing this post):
    First, every single movieclip was already on the stage from
    the outset, stopped on the first frame, with the alpha property set
    to 0 (based on Aran Balkan
    http://aralbalkan.com/444).
    The final frame of each clip had a gotoAndStop(1) action on it so
    that when a clip finished playing it 'reset' itself. I also wrote a
    &quot;rewind&quot; function which pretty much did the same
    thing whenever a user clicked on one of the navigational tabs.
    For a first iteration, this worked pretty well, and it
    impressed enough people in my organization (university) that now
    the President wants to deliver a similar message. It seemed prudent
    at this point to ask a general question about best practices in
    this area. I am working with the full Master Collection suite, and
    can target later versions of the Flash Player (I believe I can use
    AS 3.0, although I will have to learn it). One thing that I am
    hoping any pointers you guys might have will cover is this:
    How do you handle starting/stopping/pausing of the video and
    also make sure any currently playing graphical assets also
    start/stop/pause on cue? I was thinking of setting a variable on
    the second frame of each movieclip, something along the lines of
    'nowPlaying = this;' and then resetting that to null at the end of
    the clip and in the rewind function, then using that variable to
    control the currently playing clip (would have to bu just one, I
    imagine).
    But there has got to be a better way. I have some down time
    to do research and to experiment, but it is going to be very high
    profile when it rolls around, so I thought I'd send out some
    feelers.
    Has anyone done anything like this? Seen a better way? Etc .
    Thanks so much.

    Best practice is to keep one single file as long as humanly possible.
    In this case, you "branched" a version for another format; I'd suggest you don't edit that any further (apart from the formatting stuff you mentioned), but inform your client this version is to be worked on. Work on your "real" version until it's really really done, and only then make other versions.
    It's a different story (no pun intended) if the transition between the two versions can be automated; that way you'd still only work on the 'real' version, but then you could generate the other with every edit you make -- you should still not be doing any work in the dumbed-down version.

  • Best way to control voltage with my code?

    I need to be able to control current and voltage of a power supply. What would be the best way to implement this with my code? I realize that I need to use a DAQmx Start and Stop task. I *think* I would like the task to start when the user runs the program. The voltage and current should be 0 when I start it, or a really low number.
    Currently, the program I am working off of using TraditionalDAQ. It uses 'AO Write One Update.vi' to update the voltage and current. 
    How can I use DAQmx to achieve the same? Is it possible to also have the DAQmx code in an event structure in the same way?
    Can I do this in my event structure, in a new event? The code below shows my code. There are two loops, the bottom one handles acquisition and logging. The top one handles the events.

    There are an excellent series of NI Tutorials on DAQmx.  Not that they are easy to find, but start here:  DAQmx White Papers.  This is an especially useful White Paper:  The Top 10 DAQmx Functions.
    Something that also helps a lot is to configure your device using MAX (and use MAX to run it to be sure it is working correctly).  Once you have it configured, save it as a Task, which encapsulates all of the "picky details" (such as channel names/numbers, sampling rates, clock sources, etc.).  When you go to write your code, simply right-click on the Start Task VI and create a constant, expand the Constant (which should show you MAX's Tasks), and choose the Task you just created.  No need for numerous confusing DAQmx Configuration VIs.
    Bob Schor

  • What is the best way to integrate a sound file (mp3) into a PDF?

    I saw that its possible to do it by Tools->Multimedia->Sound. This works fine on a computer but not a tablet. So what is the right way to embed a sound file into a PDF of maybe by Indesign? What i want is that people can easily open a document (PDF) on a tablet and when they click on a (play)icon that they hear a sound file. The best thing is that they can stop or put it on pause.

    I think this functionality relies on Flash, so it's not likely it's going
    to work on mobile devices, certainly not on iOS ones.

  • Is there a way to adjust the sounds' volume withou...

    I have an annoying problem with my Skype:
    The volume of the other person is perfectly fine, but the volume of the sounds for calls is just too high. Like hurting my ears too high.
    Is there a way to adjust these sounds without changing the other person's volume?
    Solved!
    Go to Solution.

    Not as far as I know. I have self, for the same reason set the Volume of Skype to about 40% and I don't see any effect on the call volume. Only ringing and notification sounds are affected.

  • The best way to remove a sound?

    Hello,
    I have an outside sound, which plays at the same time as the vocalist start to sing in my voice track. These two sounds (the outside one and the vocal) are so mixed, that I don't seem to be able to remove the outside sound without destroying the vocal. Could anyone advise me on which is the best way to deal with this situation? Thanks!

    There's no such thing as 'impossible' in this context. If you really do have a vocal-only track from a live concert (er, perhaps you should have mentioned this before...), then you put the soloist back in the same space, and just re-record the offending bit and mix it back. Or just use a similar mic setup somewhere else, and use the ambience of the original recording to convolve the sound from this (which Audition can do) to sound similar to the original. In desperate situations, this can often work rather better than you might think.
    There may be other options too - can you tell us more about the way this was recorded, in terms of tracks, mics, etc? It's just possible that if this is the right sort of stereo recording, a sound emanating from a place different from the sound you want may be able to be reduced somewhat anyway.

  • Best way to control/play shared library with iPhone

    Hi there,
    My iTunes library syncs with my ATV and I have set up my wife's iPhone (I don't have one yet but will get a Touch once they up the storage) to act as a remote with the Remote app.
    What's the best way to set up/share my wife's music library on the ATV? I know I can set up her library on the ATV and access through 'Shared Music', but it looks as though the Remote app on the iPhone can't search, scroll, display her playlists etc in the same way that it does for the 'main' library that the ATV has stored locally.
    Is the best way to have the iPhone Remote set to control the iTunes library (rather than the ATV) and have iTunes on the Mac set to Apple TV for the speakers?
    I'd prefer to be able to keep all the adjustments to within just the iPhone Remote rather than give my wife a list of instructions across a number of devices (I know I'll get a call in the middle of the night when I'm overseas from my wife asking me why the iMac isn't play her music :))
    Thanks,
    Tom

    TWH3 wrote:
    As far as I'm aware, and certainly the case when I investigated the system a few months ago, the advantage Sonos has is being able to play different music in different rooms from the same iTunes library and Mac, and also offer streaming Internet radio.
    So with Sonos you can play kiddie's music in the front room, Dad's house in the kitchen and set the radio to wake you up in the bedroom he following morning.
    With iTunes/AirTunes one is rather more restricted to one source playing one song to whichever speakers you have selected. I think.
    True, if you look at it as the only source of content, I was looking at it from a typical set up scenario, you seem to have two itunes libraries and an tv, so you could have different music in three rooms using your iphone as a central control, I have more sources than rooms so a sonos wouldn't do anymore than my present set up can do. If one is starting from scratch the sonos seems quite attractive, however for me it would require an investment of round about $ 5,000 to achieve something I more or less already have

  • Best way to control and read data from multiple instruments?

    Hello,
    I'm building an application to test power supplies involving multiple pieces of equipment over a couple of different comm busses. The application will also send control instructions to some of the instruments, and read data from some of the instruments. The reading and control profiles will not run on the same schedule (variable length control steps, configurable read interval).
    I was thinking of using a queued statemachine (producer/consumer) for the control profile and another to read the data, but I got concerned that there would be collisions between sending control commands and read commands to the same machine. Is there a suggested design pattern for implementing something like this?
    Timing of the commands isn't critical down to the milisecond, but I need to collect reasonably accurate timestamps when the data is read. The same is true for the control commands.
    Here are the instruments I'm going to use, if the are control, read, or both, and the communication method
    Instrument Funtions Comm Method
    Power Supply Read data Communicates to PMBus Adapter
    PMBus to USB Adapter Read data USB (Non-Visa)
    Switch control relays USB (VISA)
    Power Dist. Unit read data/control outlets SNMP (Ethernet)
    Electronic Load read data/control load GPIB (VISA)
    Thermal Chamber read data/control temp Ethernet (VISA)
    Thanks,
    Simon

    Hello, there is a template in LV called "Continuous measurement and Logging".
    It can give you some idea how to properly decouple the "GUI Event handler" top loop (where your Event structure is) from the DAQ and other loops.
    You do not need to totally replicate the above example, but you can find there nice tricks which can help you at certain points.
    The second loop from the top is the "UI message loop". It handles the commands coming from the top loop, and regarding to the local state machine and other possible conditions and states, it can command the other loops below.
    During normal run, the different instrument loops just do the data reading, but if you send a control command from the top loop to a certain instrument loop (use a separate Queue for every instrument loops), that loop will Dequeue the control command, execute it, and goes back to data reading mode (in data reading mode the loop Dequeu itself with a "data read" command automatically). In this way the control and data read modes happen in serial not in parallel which you want to avoid (but I think some instrument drivers can even handle parallel access, it will not happen in really parallel...).
    In every instrument loop when you read a value, attach a TimeStamp to it, and send this timestamp/value couple to the DataLogging loop via a Queue. You can use a cluster including 3 items: Source(instrument)/timestamp/value. All the instrument loops can use the same "Data logging" Queue. In the Datalogging while loop, after Dequeue-ing, you can Unbundle the cluster and save the timestamp and data-value into the required channel (different channel for every instrument) of a TDMS file.
    (Important: NEVER use 2 Event structures in the same top level "main" VI!)

  • Best way to control audio over multiple slides-iMovie or QT Pro?

    I have a 30-slide presentation, and due to the horrendous handling of audio files by Keynote I need figure out the least painful way of controlling audio spanning multiple slides.
    My end goal is to have a Quicktime file to put on the web, and to burn to a CD or DVD for viewing on individual computers. There is audio spanning 3 slides (a Garageband mix with voiceover narration built in,)and different audio for background for different groups of slides.
    Least painful method to attempt this and get ACCURATE TIMING for the end product?

    Make a series of Keynote presentations, one for each complete audio track. Export each as a QuickTime DV (digital video) clip. Launch iMovie and import the clips into a single iMovie project; tweak each clip's audio, as necessary. Finally, export the assembled iMovie to your intended QuickTime format.

  • Controlling the sound volume of my swf

    I am trying to reduce the sound volume of my swf in general. I implemented the code below, but I get this error message: Line 30 1151: A conflict exists with definition in namespace internal.
    Thanks for your help
    Charine
    ++++++++++++++++++++++++++++
    Here is my code:
    package
       import flash.display.MovieClip;
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        import flash.events.MouseEvent;
        import flash.media.Sound;
       import flash.events.Event;
        import flash.media.SoundChannel;
        import flash.media.SoundMixer;
        import flash.media.SoundTransform;
        public class BugGoopFSGame extends MovieClip
           public var mybackground:BackGround;
    //        public var LetterArray:LetterArray = new LetterArray(stage);
            public var lettera:A;
            public var cinders:Cinders;
            public var gameTimer:Timer;
            public var spidy:Spidy;
            public var myplaybtn:Play;
            public var timerback:TimerBack;
            public var timermiddle:TimerMiddle;
            public var timerfront:TimerFront;
            public var settings_btn:Settings_btn;
            public var sound1:Sound1;
            public var channel:SoundChannel = (new Sound1()).play(0, int.MAX_VALUE);
            public var channel:SoundTransform = (new Sound1()).volume(0.5,1.0); //This is where the problem is - Line 30 1151: A conflict exists with definition in namespace internal.
            public function BugGoopFSGame()
                sound1 =  new Sound1();
            //rest is not relevant to this

    Try this version that I put together. I attached the sound playing to the onClick function at the bottom. This may not be the correct place, you can move the code to any function that you like. The sound will not play from the variable declaration section of the class, it really needs to be in a function.
    package  {
                import flash.display.*;
        import flash.utils.Timer;
        import flash.events.*;
        import flash.events.MouseEvent;
        import flash.media.Sound;
        import flash.events.Event;
        import flash.media.SoundChannel;
        import flash.media.SoundMixer;
        import flash.media.SoundTransform;
        import flash.text.*;
        import flash.net.URLRequest;
        public class BugGoopFSGame extends MovieClip
            public var mybackground:BackGround;
            public var letterArray:LetterArray = new LetterArray(stage);
            public var lettera:A;
            public var cinders:Cinders;
            public var gameTimer:Timer;
            public var spidy:Spidy;
            public var myplaybtn:Play;
            public var timerback:TimerBack;
            public var timermiddle:TimerMiddle;
            public var timerfront:TimerFront;
            public var settings_btn:Settings_btn;
            public var sound1:Sound;
            public var channel1:SoundChannel = new SoundChannel();
            public var channel2:SoundTransform = channel1.soundTransform;
            public function BugGoopFSGame()
                                  // this assumes that you have a sound file in a movie Library
                                  // with a class name of "Sound1"
                sound1 =  new DeltaFog();
                lettera = new A ();
                addChild(lettera);
                                  mybackground = new BackGround ();
                addChild(mybackground);
                cinders = new Cinders();
                addChild(cinders);
                spidy = new Spidy();
                addChild(spidy);
                myplaybtn = new Play();
                addChild(myplaybtn);
                timerback = new TimerBack();
                addChild(timerback);
                timermiddle = new TimerMiddle();
                addChild(timermiddle);
                timerfront = new TimerFront();
                addChild(timerfront);
                settings_btn = new Settings_btn();
                addChild(settings_btn);
                gameTimer = new Timer(31,5120);
                //Add event listener for start button
                myplaybtn.addEventListener(MouseEvent.CLICK, startTimer);
                //Add event listener for timer;
                gameTimer.addEventListener(TimerEvent.TIMER, tickTock);
                gameTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerFinished);
                gameTimer.addEventListener(TimerEvent.TIMER, fadeIn);
                gameTimer.addEventListener(TimerEvent.TIMER, moveA);
                gameTimer.addEventListener(TimerEvent.TIMER, scaleLifeBar);
                //Add event listener for when lettera is clicked
                lettera.addEventListener(MouseEvent.MOUSE_DOWN, onClick);
            //Start timer function
            public function startTimer(timerEvent:MouseEvent):void
                gameTimer.start();
                trace("Timer started");
                myplaybtn.visible = false;
            public function tickTock(timerEvent:TimerEvent):void
                trace("Tick");
            public function timerFinished(timerEvent:TimerEvent):void
                trace("Timer is finished");
            public function scaleLifeBar(timerEvent:TimerEvent):void
                timermiddle.scaleLifeBar();
            public function fadeIn(timerEvent:TimerEvent):void
                lettera.fadeIn();
            public function moveA(timerEvent:TimerEvent):void
                lettera.moveA();
            public function onClick(event:MouseEvent):void
                trace("The letter a was clicked");
                                  // this line tells the sound to play, it can also
                                  // be "sound1.play(0,int.MAX_VALUE);" if you don't need
                                  // the volume
                                  channel1 = sound1.play(0, int.MAX_VALUE);
                                  // set a value for the volume to be used
                               channel2.volume = .5;
                                  // connect the volume to the sound channel
                      channel1.soundTransform = channel2;

  • SMP 3.0 / WM 6.1 - Best way to controll certificates

    Hi all
    I am testing out
    different things on the new SMP 3.0 / WM 6.1 and looking ahead, I have a small issue controlling the certificates.
    I have 2 SMP test server. 1 with WM 6.1 and 1 with WM 6.1 incl. CS.
    For testing, I have manually installed the default SMP certificates from the servers on my Ipad and the Agentry app then connects without any issues.
    For testing the manually installation is fine, but once you hit a productive environment or need to show customers how epic the mobile solution is I would prefer a more slick approach
    In a "simple" scenario where the customer does not use central admin of their devices. I would think, if possible, you could use the key tool to create
    a new certificate/request and then have it signed by for instance Verisign or any other authority that your devices uses as default should solve the
    issue and the overall solution run out of the box.
    Now I am not that good with certificates and not at all with the key tool. Therefore, I do not really know how you would do this.
    If anyone have any ideas or input it would be highly appreciated.
    Kind regards
    Jesper

    HI All,
    After going thrugh few threads, its required to download another version of WPF than the one available in SDK( SP04 - Version - 7.0.0.537).
    MOB_WM_WPF01_0-80000142 ( version 7.0.3.257).
    i could get this from softwares and the Application rendered almost fine.
    If any one has further suggestions, please add to this thread. I will mark this thread as answered for now.
    With Best Regards,
    Jilan

Maybe you are looking for

  • Compilation Error in stored Proc !! Please help

    Hi, This is my stored procedure , it is giving error at line 20 . The error description is : ERROR line 20, col 1, ending_line 20, ending_col 6, Found 'ELSEIF', CASE is expected CREATE OR REPLACE PROCEDURE proc_MDM_GetCountry_tst Exist IN INTEGER, Se

  • Journal Entry Remarks not comming

    Hello Everyone, I am trying to create Journal Entry using  DI API .The problem i am facing is that  the remarks at the row level is not coming in certain cases. Code:- /*this is to add remarks at header level*/                        _journalEntries.

  • Writing to BLOB with getBinaryOutputStream

    I'm trying to insert a BLOB and have problems with a variety of the methods listed in documentation. 1) The method that is in the Oracle examples, oracle.sql.BLOB.getBinaryOutputStream(), give me a warning that it is deprecated. 2) In other Oracle do

  • Stolen computer!! can i get my music files back from my ipod?

    I had my computer stolen! And stupidly hadn't backed up my music files... All the files are however on my ipod. Obviously, i don't want to lose them so i'm looking for a way to transfer my files from my ipod onto itunes 8 on my new computer... I've r

  • TNS Listener wont start

    Hi, I have Oracle 11g installed on Win. Vista Home Premium edition. I have set the "Startup" Type for "OracleOraDb11g_home1TNSListener" service to "Manual" and when I try to start it, I get a pop-up saying: "The OracleOraDb11g_home1TNSListener servic