Local News: Los Angeles, CA 

 | 

Sign Up

 | 

Sign In

Having problems with Model Sim License

Posted in the Xilinx Forum

Read

25 Comments

More Xilinx Discussions »

Comments

Showing posts 1 - 20 of25
< prev page
|
Go to last page| Jump to page:
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

Orange, 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

Shah Alam, 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
Feb 27, 2010
 
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.)
najma

London, UK

|
Report Abuse
|
Judge it!
|
#20
Mar 23, 2010
 
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.
thanks
najma

London, UK

|
Report Abuse
|
Judge it!
|
#21
Mar 23, 2010
 
thanks i did the same as u said and along with that i adjusted properties admin rights to the software

Tell me when this thread is updated:
(Registration is not required)

Add to my Tracker

Send me an email

Showing posts 1 - 20 of25
< prev page
|
Go to last page| Jump to page:
Type in your comments below
Name
(appears on your post)
Comments
Characters left: 4000
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
virtex 5 xc5vlx110t (Mar '11) Mar '11 ina 1
System generator (Feb '11) Feb '11 akilan 1
regarding verilog (Feb '11) Feb '11 rama 1
phase detection in digital phase lock loop (Oct '10) Oct '10 sunitta 1
Configuration FPGA Through XCF32P (Aug '10) Aug '10 Abdul Latheef A K 1
Testing a NGC IP in XPS? (Jul '10) Jul '10 Alejandro Cristo 1
FPGA error not ready (Jun '10) Jun '10 Ramir 1

Daily Horoscope for June 2

Leo

This is one of those days when money slips through your fingers in no time at all unless you're very vigilant about your spending habits. Unfortunately, it will be difficult to stop yourself splashing out whenever the fancy takes you, whether or not you can afford it. You're especially drawn to tempting little treats and luxurious indulgences.

Get your Horoscope »