Local News: Cloverdale, CA 

 | 

Sign Up

 | 

Sign In

Advertisement

Having problems with Model Sim License

Posted in the Xilinx Forum

Read

18 Comments

Comments

Showing posts 1 - 18 of18
Sid

San Antonio, TX

|
Report Abuse
|
Judge it!
|
#1
Mar 14, 2007
 
Pulling my hair out here, Model Sim keeps telling me that my license is not valid. Giving me a Evaluation Error 105 whenever I try to open it. Tried to get help nobody has any. Please if anyone can help
Jula

Austin, TX

|
Report Abuse
|
Judge it!
|
#2
Mar 26, 2007
 
Did you install ModelSim on Windows Vista?
Alan

Toronto, Canada

|
Report Abuse
|
Judge it!
|
#4
Apr 5, 2007
 
If anyone knows how to install Modelsim in Windows Vista please..let me know!!!
suchi

Boise, ID

|
Report Abuse
|
Judge it!
|
#5
Apr 5, 2007
 
hey its my problem too installing modelsim on windows vista..plz tell me the solution.
Thanks
suchi
Chris

Ottawa, Canada

|
Report Abuse
|
Judge it!
|
#6
Apr 20, 2007
 
I got modelsim to work on vista. Originally when going through the license wizard it said that the license was ok, but when I started the program it gave me an error 105 saying my evaluation license had expired. I got it to work but running modelsim.exe in compatibility mode with windows xp sp2. To do this right click on modelsim.exe, select, properties, select the compatibility tab, and check the "run this program in compatibility mode for:".

This allows me to run modelsim_xe with a usb dongle. I also have got modelsim_se running on a network license without using the compatibility mode.
ravi narula

Bangalore, India

|
Report Abuse
|
Judge it!
|
#7
Oct 11, 2007
 
please give me a immediate solution for installing
modelsim.after installation i got an error like " dongle is not connected to this host and license is not matched to this host". pleaseeeeeee helppppppp
vijayakumar

Bangalore, India

|
Report Abuse
|
Judge it!
|
#8
Oct 11, 2007
 
i want to download kandhasamy trailor .please give the website
Russ

Osseo, MN

|
Report Abuse
|
Judge it!
|
#9
Oct 12, 2007
 
I had similar problem with Modelsim XE on Vista, I found Xilinx Answer record #14919 that describes deleting two files from the Windows Directory. This worked for me
sreejit

Bangalore, India

|
Report Abuse
|
Judge it!
|
#10
Nov 24, 2007
 
DElete the following two files are installed in the "c:\winnt" directory (this does not apply to Windows XP systems, see below):
- mti_enc
- mti_enc2
On Windows XP Systems, the file location is the "C:\WINDOWS" directory.
Also, ensure that you have write permissions to the following directories:
c:\WINNT and c:\WINNT\TEMP or
c:\WINDOWS and c:\WINDOWS\TEMP (if using Windows XP)
mudasir

Madras, India

|
Report Abuse
|
Judge it!
|
#11
Jan 30, 2008
 
i m installing modelsim cracked version on vista..it gets installed fine and also i copy license.dat to c:/flexlm directory before running the modelsim.....but it still shows the problem of fatal license error...can anyone suggest me the solution to this problem.......plz
Khai Le

Westminster, CA

|
Report Abuse
|
Judge it!
|
#12
Feb 4, 2008
 
Chris wrote:
I got modelsim to work on vista. Originally when going through the license wizard it said that the license was ok, but when I started the program it gave me an error 105 saying my evaluation license had expired. I got it to work but running modelsim.exe in compatibility mode with windows xp sp2. To do this right click on modelsim.exe, select, properties, select the compatibility tab, and check the "run this program in compatibility mode for:".
This allows me to run modelsim_xe with a usb dongle. I also have got modelsim_se running on a network license without using the compatibility mode.
Thank you, It work for me
Paul

Moscow, Russia

|
Report Abuse
|
Judge it!
|
#13
Nov 17, 2008
 
Hi! I've installed ModelSim SE 6.3f on Vista. Licence wizard crashes sometimes when I'm trying to browse licence file, sometimes just after start. I tried to launch wizard in XP SP2 compatibility mode, this didn't help. Launching wizard with administrator permissions have no effect too.
mr gas

Ipoh, Malaysia

|
Report Abuse
|
Judge it!
|
#14
Sep 18, 2009
 
i have problem my programming.. i have do simulation my coding in modelsim, its ok.. but the problem is when try run my programming in xilinx.. the xilinx can't complete their analyze... the error occur b'coz i use real number.. plz i need ur help right now...

library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

entity SPWM is
port ( Clk : in std_logic;
Reset : in std_logic;
switch : in std_logic_vector ( 3 downto 0);
SPWMOut : out std_logic);
end SPWM;

architecture SPWM_arch of SPWM is

component Rwave is
port ( Clk : in std_logic;
Reset : in std_logic;
ModIndex : in integer range 0 to 15;
RwaveOut : out real range 0.0 to 1030.0 );
end component;

component Cwave is
port ( Clk2 : in std_logic;
Reset : in std_logic;
ModIndex : in integer range 0 to 15;
RwaveClk : out std_logic;
CwaveOut : out real range 0.0 to 1030.0 );
end component;

component WaveComp is
port ( Reference : in real range 0.0 to 1030.0;
Carrier : in real range 0.0 to 1030.0;
CompOut : out std_logic );
end component;

component Clockdivider is
port ( clk : in std_logic;
reset : in std_logic;
Clk1 : out std_logic;
Clk2 : out std_logic );
end component;

component inputport IS
port ( switch : in std_logic_vector ( 3 downto 0);
out_port : out integer range 0 to 15 );
end component;

signal Clk1sig : std_logic;
signal Clk2sig : std_logic;
signal RwaveClksig : std_logic;
signal Referencesig, Carriersig : real range 0.0 to 1030.0; --<---problem occur in this statemen
signal ModIndexsig : integer range 0 to 15;

begin

U1 : Rwave port map ( Clk => Clk1sig,
Reset => Reset,
ModIndex => ModIndexsig,
RwaveOut => Referencesig );

U2 : Cwave port map ( Clk2 => Clk2sig,
Reset => Reset,
ModIndex => ModIndexsig,
RwaveClk => RwaveClksig,
CwaveOut => Carriersig);

U3 : WaveComp port map ( Reference => Referencesig,
Carrier => Carriersig,
CompOut => SPWMOut);

U4 : Clockdivider port map (Clk => Clk,
Reset => Reset,
Clk1 => Clk1sig,
Clk2 => Clk2sig);

U5 : inputport port map (switch => switch,
out_port => ModIndexsig);

end SPWM_arch;
bharani

Madras, India

|
Report Abuse
|
Judge it!
|
#15
Sep 20, 2009
 
I had same problems fatal license error...

please check your system clock time/date
in task bar
rasha

Cairo, Egypt

|
Report Abuse
|
Judge it!
|
#16
Sep 22, 2009
 
i have a problem installing modelsim on windows vista , trying to browse the lisence file from wizard, a message appeared that the "license wizard has stopped working" ,i tried the comptability mode but no effect.
Goutham

Bangalore, India

|
Report Abuse
|
Judge it!
|
#17
Feb 12, 2010
 
DElete the following two files are installed in the "c:\winnt" directory (this does not apply to Windows XP systems, see below):
- mti_enc
- mti_enc2
On Windows XP Systems, the file location is the "C:\WINDOWS" directory.
Also, ensure that you have write permissions to the following directories:
c:\WINNT and c:\WINNT\TEMP or
c:\WINDOWS and c:\WINDOWS\TEMP "

Thanks a lot dude. it worked just fine.. thank u very much

Goutham
Bangalore
Goutham

Bangalore, India

|
Report Abuse
|
Judge it!
|
#18
Feb 12, 2010
 
sreejit wrote:
DElete the following two files are installed in the "c:\winnt" directory (this does not apply to Windows XP systems, see below):
- mti_enc
- mti_enc2
On Windows XP Systems, the file location is the "C:\WINDOWS" directory.
Also, ensure that you have write permissions to the following directories:
c:\WINNT and c:\WINNT\TEMP or
c:\WINDOWS and c:\WINDOWS\TEMP (if using Windows XP)
This works like heven. thanks dude

sorry for the previous post. i'm new to topix
Kadmiel

Kingston, Jamaica

|
Report Abuse
|
Judge it!
|
#19
Saturday Feb 27
 
Alan wrote:
If anyone knows how to install Modelsim in Windows Vista please..let me know!!!
All I did was right click the .exe, go to properties & select "run as administrator" and it worked for me!(vista i.e.)
Tell me when this thread is updated!
(registration is not required)
Showing posts 1 - 18 of18
Type in your comments to post to the forum
Name
(appears on your post)
Comments
Type the numbers you see in the image on the right:

Please note by clicking on "Post Comment" you acknowledge that you have read the Terms of Service and the comment you are posting is in compliance with such terms. Be polite. Inappropriate posts may be removed by the moderator. Send us your feedback.

Other Recent Xilinx Discussions

Search the Xilinx Forum:
Topic Updated Last By Comments
how do i process an image using system generato... Mar 11 Prasanth 2
"Synthesis" failed Feb 26 Vidyut 2
Problem in intialising the block RAM generated ... Dec '09 sandeep 1
Problem installing Xilinx 10.1i on fedora 9 (Oct '08) Nov '09 xilinx setup 2
connecting two PLB buses into MPMC (Jul '09) Jul '09 hamed razmkhah 1
Migration from EDK 9.1i to 10.1i when OPB is used (Apr '09) Apr '09 SRR 1
problem with digital fir low pass filter (Apr '09) Apr '09 aravind 1

Daily Horoscope for March 20

Scorpio

Tonight is a great time for you, as your energy and personal magnetism are really pumped up! Be prepared for some fun and also some stimulating conversations.

Get your Horoscope »