Need help with VB6 Application.

Original title: Windows 7 & VB6

We have developed the VB6 Application on Windows XP, this VB6 application calls the dot net (x 86) DLL. The VB6 Application works fine in Win XP environment. When we deploy VB6 application in Win 7 environment, we get errors. only the calling part of Dot net does not work.

is there any solution for this?

This issue is beyond the scope of this site and must be placed on Technet or MSDN

http://social.msdn.Microsoft.com/forums/en-us/home

Tags: Windows

Similar Questions

  • im a student at the Academy of art and my creative cloud only let's tracks me because I never offer or give a serial number need help with the application

    I need help for the account and the sotfware please help

    I'll get an update this topic & you update tomorrow.

    Concerning

    Baudier

  • Please need help with my application manifest signed Comodo to get rid of the Oracle security warning

    Dear members. I need your help please

    I have a game I'm hosting at www.hiredforoneday.com

    I signed the code with Comodo M/s. I wrote the manifest file (and changed so many times) but I still get the Oracle security warning:

    "This application will run with unrestricted access, which can put your computer and personal information at risk.

    Run this application if you trust the place and the editor above.

    I'm must admit am bat / do not understand what I do.

    Please I need your help on how to write the code manifest, how correctly put it in the jar and how to reference the html code

    The game can be played online from www.hiredforone Day

    I need the system clock of the client and also I used getResources() to read images in the jar file

    on the site, I have a (Play) button. During a call to the play button, the index page connects to the file play.html which is located in the folder pots.
    The file play.html calls the HiredForOneDay.jar file that is located in the folder of the pots. Files such as launch.jnlp, launch.html are all in the jarsfolder.

    My game using Cardlayout (CardLayOutClass) in the Applets init() the

    cardLayoutClass.showCongratulationsPanel (); which shows the Congraculations class

    then setJMenuBar (helpTopicSelector.getBar ()); HelpTopicSelector is also another class

    Here is the code

    [code]

    package hiredforoneday;

    /**
    * @(#) HiredForADayApplet.java
    *

    * @author Ruth Bugembe
    * @author John Bannick
    * @version December 23, 2012
    */
    @SuppressWarnings ("serial")
    SerializableAttribute public class HiredForADayApplet extends javax.swing.JApplet {}

    public static CardLayoutClass cardLayoutClass;
    HelpTopicSelector helpTopicSelector;
    @Override
    @SuppressWarnings("static-access")
    public void init() {}

    cardLayoutClass = new CardLayoutClass();
    helpTopicSelector = new HelpTopicSelector (this);

    Add (cardLayoutClass.getMainPanel (), BorderLayout.CENTER);
    cardLayoutClass.showCongratulationsPanel ();

    setJMenuBar (helpTopicSelector.getBar ());

    }

    } [/ code]

    I didn't send in the manifest code because I did so many versions and now am confused

    Thanks again for your time

    Ruth

    I don't think it's possible to prevent the warning message from appearing at least once. There could be an option 'do not show this again' on the dialog box warning that users can check to prevent it from appearing again. Codezone-the only thing I can think is to eliminate the dependency on the system clock client side so that the attribute in the manifest file permissions can be set to 'sandbox' rather than 'all rights '. You don't know if he read images from the same signed jar file still qualified under 'sandbox' - try it and see.

    It is worth noting that other publishers Java RIA as the Knowledge Base for the Skillsoft Support are also facing the same issue, and they document simply as a relatively mild warning message.

  • need help with downloading applications

    Hi I am trying to download some creative Cloud applications and he goes on to say that it has been downloaded already, but will not be displayed on my folder of the application. I installed a trial version but maybe he deleted things that it was already installed. Any help would be amazing.

    Thank you!

    Hi student-panda,

    Please run creative tool cloud cleanser and then launch CC desktop applications. It should solve the problem.

    http://www.Adobe.com/support/contact/cscleanertool.html

    Kind regards

    Abhijit

  • Need help with my application

    Hi all

    My select query is as below,

    Select x.col_1 in the x tble_name, where x.col2.id = x.id;

    Looks like a simple request, but the problem here is col2 includes the name of the table. This means that table1.table_name.id = table1.my_field

    and my error message is below.

    ORA-00904: 'x '. "" col2 ". "" id ": invalid identifier (it is quite common that the column name is not valid, but my where condition must be table1.my_field = tablle2.id (table2 is a field value in my table1))
    00904, 00000 - '% s: invalid identifier '.

    How...?

    Thank you
    NGO

    It's like an intermediate table that I use it to update several tables. To update the value in the column new_date with the value of column_name (of the destination table) to destination_table (table name).

    You'll need generate SQL code and execute it. The following method should result in a single SQL statement by tables and columns to update so if you update the same lots of times with different values column, you will not have many versions of essentially the same SQL code. I create my own test data you provide none. Be sure to read the FAQ on how to ask questions.

    SQL> create table test_synch
      2  (
      3  type_is varchar(10) ,
      4  cycle_date date ,
      5  destination_table varchar(30),
      6  column_name varchar(30),
      7  old_data varchar(100),
      8  new_data varchar(100),
      9  column_type varchar(15),
     10  seq_number varchar(10),
     11  last_upd_user varchar(15) NOT NULL ,
     12  last_upd_date date default(sysdate) ,
     13  PRIMARY KEY (type_is, cycle_date,destination_table,column_name, seq_number)
     14  );
    
    Table created.
    
    Elapsed: 00:00:00.17
    SQL>
    SQL> CREATE TABLE dt_test_target
      2  (      ID    NUMBER NOT NULL,
      3         col1  VARCHAR2(100)
      4  )
      5  /
    
    Table created.
    
    Elapsed: 00:00:00.04
    SQL> INSERT INTO dt_test_target SELECT ROWNUM, 'ROW'||TO_CHAR(ROWNUM) FROM dual CONNECT BY LEVEL <=10
      2  /
    
    10 rows created.
    
    Elapsed: 00:00:00.03
    SQL> SELECT * FROM dt_test_target
      2  /
    
            ID COL1
    ---------- --------------------
             1 ROW1
             2 ROW2
             3 ROW3
             4 ROW4
             5 ROW5
             6 ROW6
             7 ROW7
             8 ROW8
             9 ROW9
            10 ROW10
    
    10 rows selected.
    
    Elapsed: 00:00:00.01
    SQL> insert into test_synch
      2  VALUES ('UDPATE',SYSDATE,'dt_test_target','col1','ROW1','UPDATED ROW1','VARCHAR2',1,USER,SYSDATE)
      3  /
    
    1 row created.
    
    Elapsed: 00:00:00.01
    SQL> insert into test_synch
      2  VALUES ('UDPATE',SYSDATE,'dt_test_target','col1','ROW5','UPDATED ROW5','VARCHAR2',2,USER,SYSDATE)
      3  /
    
    1 row created.
    
    DECLARE
    
         ls_Sql          VARCHAR2(4000);
    
    BEGIN
    
         FOR lr_Update IN (     SELECT
                             destination_table,
                             column_name,
                             old_data,
                             new_data,
                             column_type,
                             seq_number,
                             type_is,
                             cycle_date
                        FROM
                             test_synch
                        ORDER BY
                             destination_table,
                             seq_number
                   )
         LOOP
    
              ls_Sql := '
            UPDATE '||lr_Update.destination_table||' dest
            SET dest.'||lr_Update.column_name||' =
                (SELECT src.new_data FROM test_synch src WHERE
                src.old_data = dest.'||lr_Update.column_name||'
                AND src.destination_table = :dest_table
                AND src.column_name = :column_name
                AND src.seq_number = :seq_num
                AND src.cycle_date = :cycle_date
                AND src.type_is = :type_is)
            WHERE EXISTS(   SELECT NULL
                            FROM   test_synch src
                            WHERE  src.old_data = dest.'||lr_Update.column_name||'
                            AND src.destination_table = :dest_table
                            AND src.column_name = :column_name
                            AND src.seq_number = :seq_num
                            AND src.cycle_date = :cycle_date
                            AND src.type_is = :type_is
                            )';
    
             DBMS_OUTPUT.put_line(ls_SQL);
             DBMS_OUTPUT.put_line(lr_Update.destination_table);
             DBMS_OUTPUT.put_line(lr_Update.column_name);
             DBMS_OUTPUT.put_line(lr_Update.seq_number);
             DBMS_OUTPUT.put_line(lr_Update.cycle_date);
             DBMS_OUTPUT.put_line(lr_Update.type_is);
    
             EXECUTE IMMEDIATE ls_SQL USING lr_Update.destination_table,
                                            lr_Update.column_name,
                                            lr_Update.seq_number,
                                            lr_Update.cycle_date,
                                            lr_Update.type_is,
                                            lr_Update.destination_table,
                                            lr_Update.column_name,
                                            lr_Update.seq_number,
                                            lr_Update.cycle_date,
                                            lr_Update.type_is;
    
         END LOOP;
    
    END;
    /
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.15
    SQL> SELECT * FROM dt_test_target
      2  /
    
            ID COL1
    ---------- --------------------
             1 UPDATED ROW1
             2 ROW2
             3 ROW3
             4 ROW4
             5 UPDATED ROW5
             6 ROW6
             7 ROW7
             8 ROW8
             9 ROW9
            10 ROW10
    
    10 rows selected.
    
    Elapsed: 00:00:00.03
    

    HTH

    David

  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Need help with my Mail window. I can't export my message to the PST format. I keep getting the message error "an error occurred during initialization of MAPI".

    Hello

    Need help with my Mail window. I can't export my message to the PST format. I keep getting the message error "an error occurred during initialization of MAPI". Y at - it solution or another method?

    Hi ErikLee,

    Do you have MS Outlook installed on your computer?

    Windows mail import and export opportunities are limited to an Outlook .pst file or an Exchange Server mailbox. They are available only if MS Outlook is installed.
    If MS Outlook is not installed and you start an import or export action, the necessary support files are not present for Windows mail complete the operation. Then I suggest you to install Outlook temporarily and see if the problem is resolved.

    Follow the instructions below and check if the problem is resolved.

    1. reboot your computer, and then start Windows Mail.
    2. on the Tools menu, click Options.
    3. in the connection tab, click on edit to open the Internet Properties dialog box.
    4. in the tab programs, click on an application other than Windows mail e-mail in the e-mail list. Click on apply and then click OK.
    5. click OK again to close the Options dialog box.
    6. exit Windows mail and restart Windows mail.

    If this does not work, I suggest you upgrade to Windows Live Mail to import or export messages that may help you resolve the issue.

    To download Windows Live Mail, visit the following Microsoft Web site:
    http://get.live.com/wlmail/overview

    For more information about Windows Live Mail, see the Microsoft Web site at the following address:
    http://windowshelp.Microsoft.com/Windows/en-us/help/4b30d3d6-abe2-46d1-a5fd-4a1ba786a1381033.mspx

    Check whether the problem is resolved.

    Please post back and let us know if it helped to solve your problem.

    Kind regards
    KarthiK TP

  • Need help with slui message with the Validation Code: 50

    OT: need help with the message 'victim' slui...

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Code of Validation caching online: 0xc004c4a2
    Windows product key: *-* - YMK9F - 7Q3XK-X7D3P
    Windows product key hash: 9WDJkbD1PdUJ + GCdK63bG2yus5g =
    Windows product ID: 00371-702-8613485-06367
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {60986DD4-5ADA-464C-A590-469385BD5D3A} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.150928 - 1507
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x 86) \Mozilla Firefox\firefox.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {60986DD4-5ADA-464C-A590-469385BD5D3A}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-X7D3P5S-1-5-21-4040712825-3780279311-4191590923the system manufacturer,System Product NameAmerican Megatrends Inc. 00371-702-8613485-06367 0802 20110601000000.000000 + 000F3A53C07018400FE04090409Central Standard Time(GMT-06:00)03109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Activation ID: c1e88de3-96c4-4563-ad7d-775f65b1e670
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00212-702-861348-00-1033-7601.0000-1142014
    Installation ID: 022214046070387640229264400212325972472065330163335456
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: X7D3P
    License status: Notification
    Reason for the notification: 0xC004F200 (non-genuine).
    Remaining Windows rearm count: 4
    Trust time: 12/01/2016 11:28:57

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C4A2
    Beyond: 0 x 0000000000000000
    Event timestamp: 1:11:2016 12:55
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: QAAAAAEAAwABAAEAAQADAAAABwABAAEAln3OI0bUDFRsO24dgCKo58SW2JyUY/1mMckmPrb67HxoDsAKMMl2Vg ==

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID consistent: n/a
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC1425 APIC 060111
    FACP 060111 FACP1425
    HPET 060111 OEMHPET
    MCFG 060111 OEMMCFG
    LASRYVITRAGE OEMB1425 060111
    ASPT 060111 PerfTune
    OEMOSFR OSFR 060111
    SSDT DpgPmm CpuPm

    Hello

    Thanks to everyone who responded to my question.

    Turns out it would not activate the system properties page.

    He did, however, turn on the tool online browser without a

    hitch. Yes, problem solved.

    Jon

  • Need help with the data storage store, local array and network connections

    Need help with my ESXi 4.1 installation

    My hardware:

    I built a server with an Asus P6T whitebox, i7 920, 12 Gig RAM, NIC, Intel Pro1000 PT Quad, 3ware 9650SE-12ML with 8 1.5 TB SATA green in a raid 6 array gives me about 8 + TB with a spare drive all housed within a NORCO RPC-4220 4U Rackmount Server chassis.  I also have a 500 GB SATA drive which will hold the ESXi and virtual machines.

    The network includes a firewall, Netgear Prosafe FVS336G, GS724Tv of Netgear ProSafe 24 port Gigabit Managed Switch on a dhcp cable modem internet service provider.

    I also have 2 old NetGear SC101T NAS disks (4to) I want to connect to the system how some - at a later date have... data on them and want to transfer to the new storage array. I always looking into the question of whether they will work with ESXi 4.1, or I might have to only access it through Windows XP.

    My Situation:

    I have already installed ESXi 4.1 and vsphere client with no problems and it is connected to a dhcp cable internet service.  I've set up host via a dynamic DNS service name give me a static hostname on the internet.  I installed three machines to virtual OS successfully at the moment and now want to first start by creating a multimedia storage server which will use some of this new 8 TB array, then separate data storage for use with a web server small overhead storage and a backup.  It is a domestic installation.

    Help with the data store and network:

    I was doing some reading, because I'm new to this, and it looks like I'll probably want to set up my table via ESXi as a nfs disk format.  Now, the data store is usually in another physical box from what I understand, but I put my readers and ESXi all in the same box.  I'm not sure that the best way to put in place with grouped network cards, but I want to make this work.

    I understand that in ESXi 4.1 using iSCSi LUN must be less than 2 TB, but nfs - I should be able to add a bigger partition then 2 TB (for my multimedia) in nfs, right? or should I still add it separately as a separate 2 TB drives and then extend them to get the biggest space.

    Any suggestions or direct resources showing examples on how to actually add some parts of the table as data warehouses separate nfs.  I know that to go to the configuration tab, and then select Add to storage, and then select nfs. I have not my picture, but it's here that I don't know what to do because ESXi 4.1 system already has an address, should I put the same thing to the new data store array also (will it work?), and what should I use for the name of the folder and the store of data... just do something to the top.  I thought to later install Openfiler (for a multimedia storage using this table server) as a virtual machine, use the table with esxi so that I can access the same storage space with widows and linux-based systems.

    I also know I have to find a way to better use my quad nic card... put in place of virtual switches, grouping, etc HELP?

    Any direction, assistance, similar facilities to sample, suggestions or resources that would help would be great. I did a lot of hunting, but still a little confused on how to best to put in place.

    You must think of VMDK files of large databases with records of random size guest go read some data (a DLL or an INI file), maybe write some data back, then go read other data. Some files are tiny, but certain DLLs are several megabytes. It's random i/o all and heavy on the search time. IO Opsys is small random operations that are often sequential (go read data, write data, go read other data,...) so that deadlines are critical to the overall performance. That's why people say OPS are / s of reference and forget the MBs flow. The only time where you bulk transfers are when you read media (ISO files).

    Well, now forget all this. Actually the disk activity will depend on the specific applications (database? mail server? machines compiler?), but the above is true for boots, and whenever applications are idle. You should see the profile to know.

    RAID 10 is faster (and often more reliable) than RAID 5 or RAID-6 except in certain specific cases. In General RAID 10 is ideal for many random writes, since the calculation of parity for RAID-5 and - 6 adds to the overall latency between command and response - latency is cumulative if a little slow here and a little slow it adds up to a lot of overall slow synchronous especially with e/s on a network. OTOH RAID-5 and -6 can produce faster readings due to the number of heads, so you can use it for virtual machines that transfer bulk. Test. You may find that you need several different types subdashboards for best results.

    You said 3ware, they have some good grades on their site, but don't believe it. With my 9650 that I found myself with only a couple of their recommendations-, I put the (simple) table for allocation size 256 k, nr_requests at 2 x the queue_depth and use the planner date limit. I had the habit for the Ext4 file system formatted with stride and stripe-width synced to the table and used the options large_files with fewer inodes (do not use the huge_files option unless you plan to have single VMDK files in the terabyte range). Use a cache of great reading in advance.

    Virtual machines use VMDK files in all cases except raw iSCSI LUN that they treat native disks. VMDK is easier to manage - you can make a backup by copying the file, you can move it to a PC and load it into another flavour of VMware, etc. There could be some features iSCSI to your San as a transparent migration but nothing for me. NFS has less chatter of Protocol if latency lower times to complete an operation. NFS is good to read and write a block of data, that's all it boils down to.

    UPS is good, but it won't help if something inside the machine explodes (UPS does nothing if the PC power supply goes down). If the RAID card has an option for a battery backup module, so it can contain some writings in memory and may end up the disk i/o after replacing the power supply. 3ware also limits the types of caching available if help is not installed, and you get just the right numbers with the module.

  • Need help with image fusion

    Hello

    Before I get to my question, I want to give you a glimpse of the project I'm working on and the aspects that I need help. For a school project, a customer, 94Fifty asked us to create an advertisement that depicts their basketball and could be used in advertising online and in magazines. The 94Fifty of basketball is the world's first "smart ball." It can count how many times you dribbling, the arc of your shot, release time it takes for you shoot, etc. To use the ball, you need an Apple product that can download the application 94Fifty on the App Store, so that this project is done as a collaboration with the company 94Fifty and Apple.

    For my ad, to really capture the idea of being the first smart ball, 94Fifty ball I wanted to mix an image of the texture of the ball of 94Fifty, with the shape and details of a brain, with the slogan being, "A ball that is as smart as you." I have my design buried on, but I'm not sure how to combine the image of the brain with ball should I use layers? How can I remove the pink color of the brain and replace it with the ball while keeping the shape of the brain and the lines creased the brain? Any help and technical that you can give would be greatly appreciated.

    Here are two pictures that I'm trying to mix.

    8376271918_cf0b1b5c4f_o.jpg94fifty ball.png

    I would also try and keep the logo of 94Fifty which is on the ball in the mixed picture.

    Please do not confuse this for to ask me someone to do it for me, it's the exact opposite of what I want, I just need help with what to do.

    Here is a fairly simple method:

    First of all, level of basketball for the type to be horizontal. (Also correct the values of white light - burn at the top left and bottom top right.)

    Mask on white background of the brain and turn the image to 0% of saturation.

    Put the brain on basketball on its own layer. Make the overlay blend mode.

    Using free transform, reshape the brain is greater (rounder), like the basketball, with a visible margin around the edge of the ball.

    -Now, you have a brain in a basketball, but the brain is a bit too subtle.

    Duplicate the layer of brain as many times as you need to get the good contrast (I've duped the layer of brain three times, for a total of four layers of brain).

    You will probably find that you need to use the levels adjustment layers or curves on each layer of the brain, for finer value adjustments. Make sure that each adjustment layer affects only the layer directly below.

  • Installation of the elements 11 on Mac. Need help with installation error "Setup wants to make changes.

    Installation of items 11 Mac 10.8.2. Need help with Setup error: installation wants to make changes. Type your password to allow this. "After entering the Adobe password, nothing happens.  Locked for more than installation.  Any ideas?  Phone support Adobe couldn't help.

    Just prior to leaving changes (installation in this case) is done on the Mac OS application password & it must be the password for Mac system. This password is the native guest of the system clean & accept the password only. Please make sure that it's the right password (all/admin rights) and the game should work.

  • Need help with query SQL Inline views + Group

    Hello gurus,

    I would really appreciate your time and effort on this application. I have the following data set.

    Reference_No---Check_Number---Check_Date---description---Invoice_Number---Invoice_Type---Paid_Amount---Vendor_Number
    1234567 11223 - 05/07/2008 -paid for cleaning- 44345563-I-* 20.00 *---19
    1234567 11223 - 05/07/2008 - 44345563 -a--10,00---19 ofbad quality adjustment
    7654321 11223 - 05/07/2008 - setting the last billing cycle - 23543556 - A - 50.00 - 19
    4653456 11223 - 05/07/2008 - paid for cleaning - 35654765 - I - 30, 00-19

    Please ignore '-' added for clarity

    I'm writing a paid_amount based on Reference_No, Check_Number, Payment_Date, Invoice_Number, aggregate query Invoice_Type, Vendor_Number and display description with Invoice_type 'I' when there are multiple records with the same Reference_No, Check_Number, Payment_Date, Invoice_Type, Invoice_Number, Vendor_Number. When there are no more records I want to display the respective Description.

    The query should return the following data set

    Reference_No---Check_Number---Check_Date---description---Invoice_Number---Invoice_Type---Paid_Amount---Vendor_Number
    1234567 11223 - 05/07/2008 -paid for cleaning- 44345563-I-* 10.00 *---19
    7654321 11223 - 05/07/2008 - setting the last billing cycle - 23543556 - A - 50.00 - 19
    4653456 11223 - 05/07/2008 - paid for cleaning - 35654765 - I - 30, 00-19
    Here's my query. I'm a little lost.

    Select b., A.sequence_id, A.check_date, A.check_number, A.invoice_number, A.amount, A.vendor_number
    de)
    Select sequence_id, check_number, check_date, invoice_number, sum (paid_amount) sum, vendor_number
    of the INVOICE
    Sequence_id group check_date, check_number, invoice_number, vendor_number
    ) A, B OF INVOICE
    where A.sequence_id = B.sequence_id


    Thank you
    Nick

    It seems that this is a duplicate thread - correct me if I am wrong in this case->

    Need help with query SQL Inline views + Group

    Kind regards.

    LOULOU.

  • Need help with installation on Photosmart C7280 all-in-one

    I had my printer is installed and has been using the printer for 3 wireless laptops in my house.  Now, I can't even find my backup drive, so I have need help with downloading the software to use my printer and also get to use wireless.   I don't know what happened, but the fax for this printer is listed, but not the printer itself.   Help, please!

    Click here to download the software for your printer:

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?product=3204785 & LC = on & CC = US & DLC = in & lang = to & CC = US

    has chosen the appropriate operating system that corresponds to your computer and download the full software features.

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

  • Need help with the installation of an adapter of Palit GeForce 9500GT Super chart - 512 MB in a M2N68 (narrated

    Need help with the installation of an adapter of graphics Super Palit GeForce 9500GT - 512 MB - DDR2 SDRAM in a M2N68 motherboard (narra6). Should I disable the onboard graphics in the bios? When the card is installed, no VGA work outs and the PC does not start. Checked and recontroler implementation of the card in the PCI slot. PC is a desktop HP G5200uk PC. Windows 7 operating system.

    Hello

    The link below is a guige to install a video card in your Pc.  In particular, it seems that you will have to perhaps specify the location of the new card in the bios and save this change before you install the new card - see step 4 in the guide on the link below.  If your new card fits into the PCI Express x 16 slot, you will need to define PCI Express in the bios and save the changes.

    http://support.HP.com/us-en/document/c01700855

    Kind regards

    DP - K

Maybe you are looking for