× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I can say that I do not run as admin, and I see the file associations
link...


On Tue, Oct 20, 2015 at 3:10 PM, Tim Rowe <timmr@xxxxxxxxxx> wrote:

I believe the file associations menu only shows if you are running as
Root
or Administrator. Check the Getting started guide for details.

Tim


Tim Rowe, timmr@xxxxxxxxxx
Business Architect Application Development & Systems Management for IBM
i
IBM i Development Lab, Rochester, MN
(507) 253-6191 (Tie) 553-6191

http://www-03.ibm.com/systems/power/software/i/are/index.html



----- Original message -----
From: midrange-l-request@xxxxxxxxxxxx
Sent by: "MIDRANGE-L" <midrange-l-bounces@xxxxxxxxxxxx>
To: midrange-l@xxxxxxxxxxxx
Cc:
Subject: MIDRANGE-L Digest, Vol 14, Issue 1493
Date: Tue, Oct 20, 2015 2:59 PM

Send MIDRANGE-L mailing list submissions to
midrange-l@xxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
[1]http://lists.midrange.com/mailman/listinfo/midrange-l
or, via email, send a message with subject or body 'help' to
midrange-l-request@xxxxxxxxxxxx

You can reach the person managing the list at
midrange-l-owner@xxxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of MIDRANGE-L digest..."

*** NOTE: When replying to this digest message, PLEASE remove all text
unrelated to your reply and change the subject line so it is
meaningful.

Today's Topics:

1. Re: MIDRANGE-L Digest, Vol 14, Issue 1489 (Mike Jones)
2. Re: i Access Solutions - error loading java module (Jeff Crosby)
3. Re: i Access Solutions - error loading java module
(Gerald Magnuson)

----------------------------------------------------------------------

message: 1
date: Tue, 20 Oct 2015 12:48:24 -0700
from: Mike Jones <mike.jones.sysdev@xxxxxxxxx>
subject: Re: MIDRANGE-L Digest, Vol 14, Issue 1489

Hi Vinay,

With the exception of F2 through F10, this does what you want, or gets
you
close to it.

Processing by RRN is risky. If the file gets reorganized, or if
"reuse
deleted rows" is turned on for the table, the rows may not stay in
their
original RRN order.

Anytime you involve RRN processing using the RRN() function,
performance
may not be optimum. About how many rows are in this table?

with
CTE_ROW_NUM_ASSIGNED as (
select K1, F1, row_number() over( partition by K1
order by rrn( MY_FILE ) desc
) as ROW_NUM
from MY_FILE
where F1 <> ''
)

select F1, count(*) as MY_COUNT
from CTE_ROW_NUM_ASSIGNED
where ROW_NUM = 1
group by F1
;

Mike

>
> date: Tue, 20 Oct 2015 13:59:19 -0400
> from: Vinay Gavankar <vinaygav@xxxxxxxxx>
> subject: Checking Thresholds in a file using SQL
>
> Hi,
>
> I have a requirement where I need to check for number times a value
occurs
> in a field in the file.
>
> The file has a field K1 (non-unique) and another field F1
>
> For the records with same value of K1, F1 can have different
values. I
need
> to consider only the value of last record (highest RRN).
> If my file has 3 records for K1=A (in RRN sequence)
> A XXX
> A YYY
> A ZZZ
>
> then I want to consider only ZZZ for processing.
>
> I need to get a count of unique, non-blank values of F1 in the file
> (considering only the last record for K1).
>
> To give an example, if my full file looks like this:
>
> A XXX
> A YYY
> *A ZZZ*
> *B XXX*
> C MMM
> *C ZZZ*
> *D XXX*
>
> *E UUU*
>
> *F ZZZ*
> G (blanks)
> H (blanks)
>
> then my counts should be:
> ZZZ 3
> XXX 2
> UUU 1
>
> If the highest count is greater than a certain number (threshold), I
have
> to take a particular action.
>
> So basically, I just need the highest count. The value of F1 for
which
> highest count occurred is not important.
>
> Is this possible to do with sql (embedded in RPGLE).
>
> Or what would be the most efficient (I/O and CPU wise) way of doing
this?
>
> The file actually has 10 fields (F1 thru f10) and the above needs to
be
> done for all the 10 fields (could be a different threshold value for
all
> fields).
>
> Any help will be greatly appreciated.
>
> Thanks
> Vinay
>
>

------------------------------

message: 2
date: Tue, 20 Oct 2015 15:49:44 -0400
from: Jeff Crosby <jlcrosby@xxxxxxxxxxxxxxxx>
subject: Re: i Access Solutions - error loading java module

I downloaded and installed the latest. There is still no File
Associations
in the Tools menu.

???

On Tue, Oct 20, 2015 at 3:39 PM, Jeff Crosby <
jlcrosby@xxxxxxxxxxxxxxxx>
wrote:

> I have 1.1.4 dated April 14, 2015.
> Build ID 5161.
>
>
> On Tue, Oct 20, 2015 at 3:28 PM, Gregory Martin
<mr.gamartin@xxxxxxxxx>
> wrote:
>
>> You must have a version prior to 1.1.4 (Feb 2015). That is when I
remember
>> that the option was there in the menu options of the main program.
>>
>> What version of the ACS program do you have? Look under Help -->
About.
>>
>> I have Version 1.1.4.3. Build id: 5410 Oct 5, 2015
>>
>>
>>
>>
>>
>> Thanks,
>> Greg Martin
>> [2]mailto:mr.gamartin@xxxxxxxxx
>>
>> On Tue, Oct 20, 2015 at 3:20 PM, Jeff Crosby
<jlcrosby@xxxxxxxxxxxxxxxx>
>> wrote:
>>
>> > There is no File Associations in the Tools menu . . .
>> >
>> >
>> > On Tue, Oct 20, 2015 at 3:11 PM, Gregory Martin
<mr.gamartin@xxxxxxxxx>
>> > wrote:
>> >
>> > > Did you try the menu option Tools --> File Associations... and
reset
>> the
>> > > file associations? That should help clear up the issue.
>> > >
>> > > Thanks,
>> > > Greg Martin
>> > > [3]mailto:mr.gamartin@xxxxxxxxx
>> > >
>> > > On Tue, Oct 20, 2015 at 3:06 PM, Jeff Crosby <
>> jlcrosby@xxxxxxxxxxxxxxxx>
>> > > wrote:
>> > >
>> > > > Reboot no help.
>> > > >
>> > > >
>> > > > On Tue, Oct 20, 2015 at 2:36 PM, Jeff Crosby <
>> > jlcrosby@xxxxxxxxxxxxxxxx>
>> > > > wrote:
>> > > >
>> > > > > Well, now I could get mad.
>> > > > >
>> > > > > I deleted the entire folder c:\iAccess from my desktop.
Then
I
>> > copied
>> > > > the
>> > > > > folder from my laptop, which has the name
>> > c:\IBMiAccessClientSolutions
>> > > to
>> > > > > my desktop.
>> > > > >
>> > > > > Now I can run acslaunch_win-64.exe by double-clicking it.
But I
>> > can't
>> > > > > assign acslaunch_win-64.exe as the default for .hod files.
.hod
>> says
>> > > > > "unknown application" and, while I can browse and select
>> > > > acslaunch_win-64.exe,
>> > > > > it doesn't work. I drill to it, but whether I double-click
it or
>> > click
>> > > > > "Open" it does not work. I must be getting senile. I
know.
I'll
>> > try
>> > > a
>> > > > > reboot.
>> > > > >
>> > > > >
>> > > > > Grrr.
>> > > > >
>> > > > >
>> > > > >
>> > > > > On Tue, Oct 20, 2015 at 1:53 PM, Jeff Crosby <
>> > > jlcrosby@xxxxxxxxxxxxxxxx>
>> > > > > wrote:
>> > > > >
>> > > > >> Responses inline.
>> > > > >>
>> > > > >> On Tue, Oct 20, 2015 at 1:32 PM, Gerald Magnuson <
>> > > > >> gmagqcy.midrange@xxxxxxxxx> wrote:
>> > > > >>
>> > > > >>> is the acsbundle.jar in the same folder as the
acslaunch...exe?
>> > > > >>>
>> > > > >>
>> > > > >> No for both my desktop and laptop
>> > > > >>
>> > > > >>
>> > > > >>> what level is JAVA on the PC? (my win 7 64-bit pc has
>> 1.8.0_60b27)
>> > > > >>>
>> > > > >>> Same on both. Version 8 update 60. No outdated versions
>> detected.
>> > > > >> Product version 8.0.600.27.
>> > > > >>
>> > > > >>
>> > > > >>> On Tue, Oct 20, 2015 at 12:09 PM, Jeff Crosby <
>> > > > jlcrosby@xxxxxxxxxxxxxxxx
>> > > > >>> >
>> > > > >>> wrote:
>> > > > >>>
>> > > > >>> > Late September I started a thread regarding a
MSGSOCK007
on
>> our
>> > > CEO's
>> > > > >>> > laptop. That issue has been resolved. However I was
also
>> having
>> > > > >>> issues on
>> > > > >>> > my desktop that aren't resolved. I was getting ready
for
>> > vacation
>> > > > so I
>> > > > >>> > backburnered it till now.
>> > > > >>> >
>> > > > >>> > Here's the situation. System i 520, V7R1, fairly well
>> up-to-date
>> > > on
>> > > > >>> PTFs.
>> > > > >>> > My desktop is Win 7 pro 64-bit, on a domain.
>> > > > >>> >
>> > > > >>> > The only way I can start I Access is by double-clicking
the
>> > > > >>> acsbundle.jar
>> > > > >>> > file. If I double-click acslaunch_win-64.exe I see a
flash
>> of a
>> > > > black
>> > > > >>> > screen blink at me, then nothing. If I try to run
>> > > > >>> acslaunch_win-64.exe in
>> > > > >>> > a command prompt I get "Error loading java module."
Same
if I
>> > try
>> > > as
>> > > > >>> > Administrator.
>> > > > >>> >
>> > > > >>> > File extension .hod is assigned to
acslaunch_win-64.exe.
>> When I
>> > > > >>> > double-click an .hod file, I see a flash of a black
screen
>> blink
>> > at
>> > > > me,
>> > > > >>> > then nothing. If I try it in a command prompt I get
"Error
>> > loading
>> > > > >>> java
>> > > > >>> > module." Same if I try as Administrator.
>> > > > >>> >
>> > > > >>> > The getting started text has a bunch of
trouble-shooting
>> > regarding
>> > > > >>> this,
>> > > > >>> > like setting up a JAVA_HOME environment variable, etc,
none of
>> > > which
>> > > > >>> > worked. Rebooted several times to no avail. All this
was
>> > > yesterday,
>> > > > >>> my
>> > > > >>> > first day back from vacation.
>> > > > >>> >
>> > > > >>> > Since it works just fine on my laptop (also Win 7 Pro
>> 64-bit), I
>> > > > >>> decided to
>> > > > >>> > wait till today, bring my laptop in, and compare
settings
>> side by
>> > > > >>> side. (I
>> > > > >>> > initially just copied the entire folder structure from
my
>> laptop
>> > to
>> > > > my
>> > > > >>> > desktop, so all those files are the same.)
>> > > > >>> >
>> > > > >>> > The environment variable for javapath is the same on
both.
>> There
>> > > is
>> > > > no
>> > > > >>> > JAVA_HOME environment variable on either. The java
version is
>> > the
>> > > > >>> same on
>> > > > >>> > both. The Help/about shows the exact same java
information on
>> > > both.
>> > > > >>> The
>> > > > >>> > only difference I can think of is the laptop is not
joined to
>> the
>> > > > >>> domain.
>> > > > >>> >
>> > > > >>> > I know Jim Oberholtzer says he just double-clicks the
>> > acsbundle.jar
>> > > > >>> file,
>> > > > >>> > but I want to be able to double-click the .hod files.
>> > > > >>> >
>> > > > >>> > Suggestions? Hopefully something obvious.
>> > > > >>> >
>> > > > >>> >
>> > > > >>> > --
>> > > > >>> >
>> > > > >>> >
>> > > > >>> > Jeff Crosby
>> > > > >>> > VP Information Systems
>> > > > >>> > UniPro FoodService/Dilgard
>> > > > >>> > P.O. Box 13369
>> > > > >>> > Ft. Wayne, IN 46868-3369
>> > > > >>> > 260-422-7531
>> > > > >>> > www.dilgardfoods.com
>> > > > >>> >
>> > > > >>> > The opinions expressed are my own and not necessarily
the
>> opinion
>> > > of
>> > > > my
>> > > > >>> > company. Unless I say so.
>> > > > >>> > --
>> > > > >>> > This is the Midrange Systems Technical Discussion
(MIDRANGE-L)
>> > > > mailing
>> > > > >>> list
>> > > > >>> > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
>> > > > >>> > To subscribe, unsubscribe, or change list options,
>> > > > >>> > visit:
[4]http://lists.midrange.com/mailman/listinfo/midrange-l
>> > > > >>> > or email: MIDRANGE-L-request@xxxxxxxxxxxx
>> > > > >>> > Before posting, please take a moment to review the
archives
>> > > > >>> > at [5]http://archive.midrange.com/midrange-l.
>> > > > >>> >
>> > > > >>> >
>> > > > >>> --
>> > > > >>> This is the Midrange Systems Technical Discussion
(MIDRANGE-L)
>> > > mailing
>> > > > >>> list
>> > > > >>> To post a message email: MIDRANGE-L@xxxxxxxxxxxx
>> > > > >>> To subscribe, unsubscribe, or change list options,
>> > > > >>> visit:
[6]http://lists.midrange.com/mailman/listinfo/midrange-l
>> > > > >>> or email: MIDRANGE-L-request@xxxxxxxxxxxx
>> > > > >>> Before posting, please take a moment to review the
archives
>> > > > >>> at [7]http://archive.midrange.com/midrange-l.
>> > > > >>>
>> > > > >>>
>> > > > >>
>> > > > >>
>> > > > >> --
>> > > > >>
>> > > > >>
>> > > > >> Jeff Crosby
>> > > > >> VP Information Systems
>> > > > >> UniPro FoodService/Dilgard
>> > > > >> P.O. Box 13369
>> > > > >> Ft. Wayne, IN 46868-3369
>> > > > >> 260-422-7531
>> > > > >> www.dilgardfoods.com
>> > > > >>
>> > > > >> The opinions expressed are my own and not necessarily the
>> opinion of
>> > > my
>> > > > >> company. Unless I say so.
>> > > > >>
>> > > > >
>> > > > >
>> > > > >
>> > > > > --
>> > > > >
>> > > > >
>> > > > > Jeff Crosby
>> > > > > VP Information Systems
>> > > > > UniPro FoodService/Dilgard
>> > > > > P.O. Box 13369
>> > > > > Ft. Wayne, IN 46868-3369
>> > > > > 260-422-7531
>> > > > > www.dilgardfoods.com
>> > > > >
>> > > > > The opinions expressed are my own and not necessarily the
opinion
>> of
>> > my
>> > > > > company. Unless I say so.
>> > > > >
>> > > >
>> > > >
>> > > >
>> > > > --
>> > > >
>> > > >
>> > > > Jeff Crosby
>> > > > VP Information Systems
>> > > > UniPro FoodService/Dilgard
>> > > > P.O. Box 13369
>> > > > Ft. Wayne, IN 46868-3369
>> > > > 260-422-7531
>> > > > www.dilgardfoods.com
>> > > >
>> > > > The opinions expressed are my own and not necessarily the
opinion
>> of my
>> > > > company. Unless I say so.
>> > > > --
>> > > > This is the Midrange Systems Technical Discussion
(MIDRANGE-L)
>> mailing
>> > > list
>> > > > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
>> > > > To subscribe, unsubscribe, or change list options,
>> > > > visit: [8]
http://lists.midrange.com/mailman/listinfo/midrange-l
>> > > > or email: MIDRANGE-L-request@xxxxxxxxxxxx
>> > > > Before posting, please take a moment to review the archives
>> > > > at [9]http://archive.midrange.com/midrange-l.
>> > > >
>> > > >
>> > > --
>> > > This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
>> > list
>> > > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
>> > > To subscribe, unsubscribe, or change list options,
>> > > visit: [10]
http://lists.midrange.com/mailman/listinfo/midrange-l
>> > > or email: MIDRANGE-L-request@xxxxxxxxxxxx
>> > > Before posting, please take a moment to review the archives
>> > > at [11]http://archive.midrange.com/midrange-l.
>> > >
>> > >
>> >
>> >
>> > --
>> >
>> >
>> > Jeff Crosby
>> > VP Information Systems
>> > UniPro FoodService/Dilgard
>> > P.O. Box 13369
>> > Ft. Wayne, IN 46868-3369
>> > 260-422-7531
>> > www.dilgardfoods.com
>> >
>> > The opinions expressed are my own and not necessarily the opinion
of my
>> > company. Unless I say so.
>> > --
>> > This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
>> list
>> > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
>> > To subscribe, unsubscribe, or change list options,
>> > visit: [12]http://lists.midrange.com/mailman/listinfo/midrange-l
>> > or email: MIDRANGE-L-request@xxxxxxxxxxxx
>> > Before posting, please take a moment to review the archives
>> > at [13]http://archive.midrange.com/midrange-l.
>> >
>> >
>> --
>> This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
>> list
>> To post a message email: MIDRANGE-L@xxxxxxxxxxxx
>> To subscribe, unsubscribe, or change list options,
>> visit: [14]http://lists.midrange.com/mailman/listinfo/midrange-l
>> or email: MIDRANGE-L-request@xxxxxxxxxxxx
>> Before posting, please take a moment to review the archives
>> at [15]http://archive.midrange.com/midrange-l.
>>
>>
>
>
> --
>
>
> Jeff Crosby
> VP Information Systems
> UniPro FoodService/Dilgard
> P.O. Box 13369
> Ft. Wayne, IN 46868-3369
> 260-422-7531
> www.dilgardfoods.com
>
> The opinions expressed are my own and not necessarily the opinion of
my
> company. Unless I say so.
>

--

Jeff Crosby
VP Information Systems
UniPro FoodService/Dilgard
P.O. Box 13369
Ft. Wayne, IN 46868-3369
260-422-7531
www.dilgardfoods.com

The opinions expressed are my own and not necessarily the opinion of
my
company. Unless I say so.

------------------------------

message: 3
date: Tue, 20 Oct 2015 14:59:12 -0500
from: Gerald Magnuson <gmagqcy.midrange@xxxxxxxxx>
subject: Re: i Access Solutions - error loading java module

on the latest version you downloaded, what does it say under Help /
about?

(I ask, because when I first dropped the new version, it was still
using
the old jar file)

On Tue, Oct 20, 2015 at 2:49 PM, Jeff Crosby <
jlcrosby@xxxxxxxxxxxxxxxx>
wrote:

> I downloaded and installed the latest. There is still no File
Associations
> in the Tools menu.
>
> ???
>
> On Tue, Oct 20, 2015 at 3:39 PM, Jeff Crosby
<jlcrosby@xxxxxxxxxxxxxxxx>
> wrote:
>
> > I have 1.1.4 dated April 14, 2015.
> > Build ID 5161.
> >
> >
> > On Tue, Oct 20, 2015 at 3:28 PM, Gregory Martin
<mr.gamartin@xxxxxxxxx>
> > wrote:
> >
> >> You must have a version prior to 1.1.4 (Feb 2015). That is when I
> remember
> >> that the option was there in the menu options of the main
program.
> >>
> >> What version of the ACS program do you have? Look under Help -->
About.
> >>
> >> I have Version 1.1.4.3. Build id: 5410 Oct 5, 2015
> >>
> >>
> >>
> >>
> >>
> >> Thanks,
> >> Greg Martin
> >> [16]mailto:mr.gamartin@xxxxxxxxx
> >>
> >> On Tue, Oct 20, 2015 at 3:20 PM, Jeff Crosby
<jlcrosby@xxxxxxxxxxxxxxxx
> >
> >> wrote:
> >>
> >> > There is no File Associations in the Tools menu . . .
> >> >
> >> >
> >> > On Tue, Oct 20, 2015 at 3:11 PM, Gregory Martin <
> mr.gamartin@xxxxxxxxx>
> >> > wrote:
> >> >
> >> > > Did you try the menu option Tools --> File Associations...
and
reset
> >> the
> >> > > file associations? That should help clear up the issue.
> >> > >
> >> > > Thanks,
> >> > > Greg Martin
> >> > > [17]mailto:mr.gamartin@xxxxxxxxx
> >> > >
> >> > > On Tue, Oct 20, 2015 at 3:06 PM, Jeff Crosby <
> >> jlcrosby@xxxxxxxxxxxxxxxx>
> >> > > wrote:
> >> > >
> >> > > > Reboot no help.
> >> > > >
> >> > > >
> >> > > > On Tue, Oct 20, 2015 at 2:36 PM, Jeff Crosby <
> >> > jlcrosby@xxxxxxxxxxxxxxxx>
> >> > > > wrote:
> >> > > >
> >> > > > > Well, now I could get mad.
> >> > > > >
> >> > > > > I deleted the entire folder c:\iAccess from my desktop.
Then I
> >> > copied
> >> > > > the
> >> > > > > folder from my laptop, which has the name
> >> > c:\IBMiAccessClientSolutions
> >> > > to
> >> > > > > my desktop.
> >> > > > >
> >> > > > > Now I can run acslaunch_win-64.exe by double-clicking it.
But I
> >> > can't
> >> > > > > assign acslaunch_win-64.exe as the default for .hod
files.
.hod
> >> says
> >> > > > > "unknown application" and, while I can browse and select
> >> > > > acslaunch_win-64.exe,
> >> > > > > it doesn't work. I drill to it, but whether I
double-click
it
> or
> >> > click
> >> > > > > "Open" it does not work. I must be getting senile. I
know.
> I'll
> >> > try
> >> > > a
> >> > > > > reboot.
> >> > > > >
> >> > > > >
> >> > > > > Grrr.
> >> > > > >
> >> > > > >
> >> > > > >
> >> > > > > On Tue, Oct 20, 2015 at 1:53 PM, Jeff Crosby <
> >> > > jlcrosby@xxxxxxxxxxxxxxxx>
> >> > > > > wrote:
> >> > > > >
> >> > > > >> Responses inline.
> >> > > > >>
> >> > > > >> On Tue, Oct 20, 2015 at 1:32 PM, Gerald Magnuson <
> >> > > > >> gmagqcy.midrange@xxxxxxxxx> wrote:
> >> > > > >>
> >> > > > >>> is the acsbundle.jar in the same folder as the
> acslaunch...exe?
> >> > > > >>>
> >> > > > >>
> >> > > > >> No for both my desktop and laptop
> >> > > > >>
> >> > > > >>
> >> > > > >>> what level is JAVA on the PC? (my win 7 64-bit pc has
> >> 1.8.0_60b27)
> >> > > > >>>
> >> > > > >>> Same on both. Version 8 update 60. No outdated
versions
> >> detected.
> >> > > > >> Product version 8.0.600.27.
> >> > > > >>
> >> > > > >>
> >> > > > >>> On Tue, Oct 20, 2015 at 12:09 PM, Jeff Crosby <
> >> > > > jlcrosby@xxxxxxxxxxxxxxxx
> >> > > > >>> >
> >> > > > >>> wrote:
> >> > > > >>>
> >> > > > >>> > Late September I started a thread regarding a
MSGSOCK007 on
> >> our
> >> > > CEO's
> >> > > > >>> > laptop. That issue has been resolved. However I was
also
> >> having
> >> > > > >>> issues on
> >> > > > >>> > my desktop that aren't resolved. I was getting ready
for
> >> > vacation
> >> > > > so I
> >> > > > >>> > backburnered it till now.
> >> > > > >>> >
> >> > > > >>> > Here's the situation. System i 520, V7R1, fairly
well
> >> up-to-date
> >> > > on
> >> > > > >>> PTFs.
> >> > > > >>> > My desktop is Win 7 pro 64-bit, on a domain.
> >> > > > >>> >
> >> > > > >>> > The only way I can start I Access is by
double-clicking
the
> >> > > > >>> acsbundle.jar
> >> > > > >>> > file. If I double-click acslaunch_win-64.exe I see a
flash
> >> of a
> >> > > > black
> >> > > > >>> > screen blink at me, then nothing. If I try to run
> >> > > > >>> acslaunch_win-64.exe in
> >> > > > >>> > a command prompt I get "Error loading java module."
Same
> if I
> >> > try
> >> > > as
> >> > > > >>> > Administrator.
> >> > > > >>> >
> >> > > > >>> > File extension .hod is assigned to
acslaunch_win-64.exe.
> >> When I
> >> > > > >>> > double-click an .hod file, I see a flash of a black
screen
> >> blink
> >> > at
> >> > > > me,
> >> > > > >>> > then nothing. If I try it in a command prompt I get
"Error
> >> > loading
> >> > > > >>> java
> >> > > > >>> > module." Same if I try as Administrator.
> >> > > > >>> >
> >> > > > >>> > The getting started text has a bunch of
trouble-shooting
> >> > regarding
> >> > > > >>> this,
> >> > > > >>> > like setting up a JAVA_HOME environment variable,
etc,
none
> of
> >> > > which
> >> > > > >>> > worked. Rebooted several times to no avail. All
this
was
> >> > > yesterday,
> >> > > > >>> my
> >> > > > >>> > first day back from vacation.
> >> > > > >>> >
> >> > > > >>> > Since it works just fine on my laptop (also Win 7 Pro
> >> 64-bit), I
> >> > > > >>> decided to
> >> > > > >>> > wait till today, bring my laptop in, and compare
settings
> >> side by
> >> > > > >>> side. (I
> >> > > > >>> > initially just copied the entire folder structure
from
my
> >> laptop
> >> > to
> >> > > > my
> >> > > > >>> > desktop, so all those files are the same.)
> >> > > > >>> >
> >> > > > >>> > The environment variable for javapath is the same on
both.
> >> There
> >> > > is
> >> > > > no
> >> > > > >>> > JAVA_HOME environment variable on either. The java
version
> is
> >> > the
> >> > > > >>> same on
> >> > > > >>> > both. The Help/about shows the exact same java
information
> on
> >> > > both.
> >> > > > >>> The
> >> > > > >>> > only difference I can think of is the laptop is not
joined
> to
> >> the
> >> > > > >>> domain.
> >> > > > >>> >
> >> > > > >>> > I know Jim Oberholtzer says he just double-clicks the
> >> > acsbundle.jar
> >> > > > >>> file,
> >> > > > >>> > but I want to be able to double-click the .hod files.
> >> > > > >>> >
> >> > > > >>> > Suggestions? Hopefully something obvious.
> >> > > > >>> >
> >> > > > >>> >
> >> > > > >>> > --
> >> > > > >>> >
> >> > > > >>> >
> >> > > > >>> > Jeff Crosby
> >> > > > >>> > VP Information Systems
> >> > > > >>> > UniPro FoodService/Dilgard
> >> > > > >>> > P.O. Box 13369
> >> > > > >>> > Ft. Wayne, IN 46868-3369
> >> > > > >>> > 260-422-7531
> >> > > > >>> > www.dilgardfoods.com
> >> > > > >>> >
> >> > > > >>> > The opinions expressed are my own and not necessarily
the
> >> opinion
> >> > > of
> >> > > > my
> >> > > > >>> > company. Unless I say so.
> >> > > > >>> > --
> >> > > > >>> > This is the Midrange Systems Technical Discussion
> (MIDRANGE-L)
> >> > > > mailing
> >> > > > >>> list
> >> > > > >>> > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> >> > > > >>> > To subscribe, unsubscribe, or change list options,
> >> > > > >>> > visit:
> [18]http://lists.midrange.com/mailman/listinfo/midrange-l
> >> > > > >>> > or email: MIDRANGE-L-request@xxxxxxxxxxxx
> >> > > > >>> > Before posting, please take a moment to review the
archives
> >> > > > >>> > at [19]http://archive.midrange.com/midrange-l.
> >> > > > >>> >
> >> > > > >>> >
> >> > > > >>> --
> >> > > > >>> This is the Midrange Systems Technical Discussion
(MIDRANGE-L)
> >> > > mailing
> >> > > > >>> list
> >> > > > >>> To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> >> > > > >>> To subscribe, unsubscribe, or change list options,
> >> > > > >>> visit:
[20]http://lists.midrange.com/mailman/listinfo/midrange-l
> >> > > > >>> or email: MIDRANGE-L-request@xxxxxxxxxxxx
> >> > > > >>> Before posting, please take a moment to review the
archives
> >> > > > >>> at [21]http://archive.midrange.com/midrange-l.
> >> > > > >>>
> >> > > > >>>
> >> > > > >>
> >> > > > >>
> >> > > > >> --
> >> > > > >>
> >> > > > >>
> >> > > > >> Jeff Crosby
> >> > > > >> VP Information Systems
> >> > > > >> UniPro FoodService/Dilgard
> >> > > > >> P.O. Box 13369
> >> > > > >> Ft. Wayne, IN 46868-3369
> >> > > > >> 260-422-7531
> >> > > > >> www.dilgardfoods.com
> >> > > > >>
> >> > > > >> The opinions expressed are my own and not necessarily
the
> >> opinion of
> >> > > my
> >> > > > >> company. Unless I say so.
> >> > > > >>
> >> > > > >
> >> > > > >
> >> > > > >
> >> > > > > --
> >> > > > >
> >> > > > >
> >> > > > > Jeff Crosby
> >> > > > > VP Information Systems
> >> > > > > UniPro FoodService/Dilgard
> >> > > > > P.O. Box 13369
> >> > > > > Ft. Wayne, IN 46868-3369
> >> > > > > 260-422-7531
> >> > > > > www.dilgardfoods.com
> >> > > > >
> >> > > > > The opinions expressed are my own and not necessarily the
> opinion
> >> of
> >> > my
> >> > > > > company. Unless I say so.
> >> > > > >
> >> > > >
> >> > > >
> >> > > >
> >> > > > --
> >> > > >
> >> > > >
> >> > > > Jeff Crosby
> >> > > > VP Information Systems
> >> > > > UniPro FoodService/Dilgard
> >> > > > P.O. Box 13369
> >> > > > Ft. Wayne, IN 46868-3369
> >> > > > 260-422-7531
> >> > > > www.dilgardfoods.com
> >> > > >
> >> > > > The opinions expressed are my own and not necessarily the
opinion
> >> of my
> >> > > > company. Unless I say so.
> >> > > > --
> >> > > > This is the Midrange Systems Technical Discussion
(MIDRANGE-L)
> >> mailing
> >> > > list
> >> > > > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> >> > > > To subscribe, unsubscribe, or change list options,
> >> > > > visit:
[22]http://lists.midrange.com/mailman/listinfo/midrange-l
> >> > > > or email: MIDRANGE-L-request@xxxxxxxxxxxx
> >> > > > Before posting, please take a moment to review the archives
> >> > > > at [23]http://archive.midrange.com/midrange-l.
> >> > > >
> >> > > >
> >> > > --
> >> > > This is the Midrange Systems Technical Discussion
(MIDRANGE-L)
> mailing
> >> > list
> >> > > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> >> > > To subscribe, unsubscribe, or change list options,
> >> > > visit:
[24]http://lists.midrange.com/mailman/listinfo/midrange-l
> >> > > or email: MIDRANGE-L-request@xxxxxxxxxxxx
> >> > > Before posting, please take a moment to review the archives
> >> > > at [25]http://archive.midrange.com/midrange-l.
> >> > >
> >> > >
> >> >
> >> >
> >> > --
> >> >
> >> >
> >> > Jeff Crosby
> >> > VP Information Systems
> >> > UniPro FoodService/Dilgard
> >> > P.O. Box 13369
> >> > Ft. Wayne, IN 46868-3369
> >> > 260-422-7531
> >> > www.dilgardfoods.com
> >> >
> >> > The opinions expressed are my own and not necessarily the
opinion
of
> my
> >> > company. Unless I say so.
> >> > --
> >> > This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
> >> list
> >> > To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> >> > To subscribe, unsubscribe, or change list options,
> >> > visit: [26]
http://lists.midrange.com/mailman/listinfo/midrange-l
> >> > or email: MIDRANGE-L-request@xxxxxxxxxxxx
> >> > Before posting, please take a moment to review the archives
> >> > at [27]http://archive.midrange.com/midrange-l.
> >> >
> >> >
> >> --
> >> This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
> >> list
> >> To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> >> To subscribe, unsubscribe, or change list options,
> >> visit: [28]http://lists.midrange.com/mailman/listinfo/midrange-l
> >> or email: MIDRANGE-L-request@xxxxxxxxxxxx
> >> Before posting, please take a moment to review the archives
> >> at [29]http://archive.midrange.com/midrange-l.
> >>
> >>
> >
> >
> > --
> >
> >
> > Jeff Crosby
> > VP Information Systems
> > UniPro FoodService/Dilgard
> > P.O. Box 13369
> > Ft. Wayne, IN 46868-3369
> > 260-422-7531
> > www.dilgardfoods.com
> >
> > The opinions expressed are my own and not necessarily the opinion
of
my
> > company. Unless I say so.
> >
>
>
>
> --
>
>
> Jeff Crosby
> VP Information Systems
> UniPro FoodService/Dilgard
> P.O. Box 13369
> Ft. Wayne, IN 46868-3369
> 260-422-7531
> www.dilgardfoods.com
>
> The opinions expressed are my own and not necessarily the opinion of
my
> company. Unless I say so.
> --
> This is the Midrange Systems Technical Discussion (MIDRANGE-L)
mailing
list
> To post a message email: MIDRANGE-L@xxxxxxxxxxxx
> To subscribe, unsubscribe, or change list options,
> visit: [30]http://lists.midrange.com/mailman/listinfo/midrange-l
> or email: MIDRANGE-L-request@xxxxxxxxxxxx
> Before posting, please take a moment to review the archives
> at [31]http://archive.midrange.com/midrange-l.
>
>

------------------------------

Subject: Digest Footer

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) digest
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: [32]http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at [33]http://archive.midrange.com/midrange-l.

------------------------------

End of MIDRANGE-L Digest, Vol 14, Issue 1493
********************************************


References

Visible links
1. http://lists.midrange.com/mailman/listinfo/midrange-l
2. mailto:mr.gamartin@xxxxxxxxx
3. mailto:mr.gamartin@xxxxxxxxx
4. http://lists.midrange.com/mailman/listinfo/midrange-l
5. http://archive.midrange.com/midrange-l
6. http://lists.midrange.com/mailman/listinfo/midrange-l
7. http://archive.midrange.com/midrange-l
8. http://lists.midrange.com/mailman/listinfo/midrange-l
9. http://archive.midrange.com/midrange-l
10. http://lists.midrange.com/mailman/listinfo/midrange-l
11. http://archive.midrange.com/midrange-l
12. http://lists.midrange.com/mailman/listinfo/midrange-l
13. http://archive.midrange.com/midrange-l
14. http://lists.midrange.com/mailman/listinfo/midrange-l
15. http://archive.midrange.com/midrange-l
16. mailto:mr.gamartin@xxxxxxxxx
17. mailto:mr.gamartin@xxxxxxxxx
18. http://lists.midrange.com/mailman/listinfo/midrange-l
19. http://archive.midrange.com/midrange-l
20. http://lists.midrange.com/mailman/listinfo/midrange-l
21. http://archive.midrange.com/midrange-l
22. http://lists.midrange.com/mailman/listinfo/midrange-l
23. http://archive.midrange.com/midrange-l
24. http://lists.midrange.com/mailman/listinfo/midrange-l
25. http://archive.midrange.com/midrange-l
26. http://lists.midrange.com/mailman/listinfo/midrange-l
27. http://archive.midrange.com/midrange-l
28. http://lists.midrange.com/mailman/listinfo/midrange-l
29. http://archive.midrange.com/midrange-l
30. http://lists.midrange.com/mailman/listinfo/midrange-l
31. http://archive.midrange.com/midrange-l
32. http://lists.midrange.com/mailman/listinfo/midrange-l
33. http://archive.midrange.com/midrange-l
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.