Discussions
Activity
Best Of...
Sign In
·
Register
Home
›
NAV/Navision Classic Client
Howdy, Stranger!
It looks like you're new here. Sign in or register to get started.
Sign In
Register
Quick Links
Categories
Recent Discussions
Activity
Best Of...
Unanswered
Categories
All Categories
73
General
73
Announcements
66.7K
Microsoft Dynamics NAV
18.7K
NAV Three Tier
38.4K
NAV/Navision Classic Client
3.6K
Navision Attain
2.4K
Navision Financials
115
Navision DOS
854
Navision e-Commerce
1K
NAV Tips & Tricks
772
NAV Dutch speaking only
615
NAV Courses, Exams & Certification
2K
Microsoft Dynamics-Other
1.5K
Dynamics AX
317
Dynamics CRM
109
Dynamics GP
10
Dynamics SL
1.5K
Other
993
SQL General
384
SQL Performance
34
SQL Tips & Tricks
34
Design Patterns (General & Best Practices)
Architectural Patterns
10
Design Patterns
5
Implementation Patterns
53
3rd Party Products, Services & Events
1.6K
General
1.1K
General Chat
1.6K
Website
79
Testing
1.2K
Download section
23
How Tos section
259
Feedback
12
NAV TechDays 2013 Sessions
13
NAV TechDays 2012 Sessions
Hyperlink (Open in new window)
geri79
Member
Posts:
105
2006-01-17
edited 2006-01-17
in
NAV/Navision Classic Client
Hi,
is there a possibility to tell the hyperlink function to open the url in a new IE window?
ty
geri
geri
0
Comments
ara3n
Member
Posts:
9,257
2006-01-17
when I use hyperlink in navision, it opens the link in new window every time.
Ahmed Rashed Amini
Independent Consultant/Developer
blog:
https://dynamicsuser.net/nav/b/ara3n
0
geri79
Member
Posts:
105
2006-01-17
Hi,
for the first time it does. when i click the same link again, i opens in the same window. Can I set a parameter to force a new window every time?
ty
geri
0
ara3n
Member
Posts:
9,257
2006-01-17
that's a feature of explorer. If the address allready exists, a window is allready open to that address it doesn't open a new window. So as long as you change the address, a new window will open.
Ahmed Rashed Amini
Independent Consultant/Developer
blog:
https://dynamicsuser.net/nav/b/ara3n
0
ara3n
Member
Posts:
9,257
2006-01-17
You can add some code your code to add # to the end of the address this will create a new window every time
some thing like this
hyperlink('
http://www.google.com/#')
;
hyperlink('
http://www.google.com/##)
;
hyperlink('
http://www.google.com/###')
;
hyperlink('
http://www.google.com/####')
;
write you code something like this
mytext := '#'
loop howmany times you've clicked
mytext := mytext + mytext;
hyperlink('
http://www.google.com/'+mytext)
;
Ahmed Rashed Amini
Independent Consultant/Developer
blog:
https://dynamicsuser.net/nav/b/ara3n
0
geri79
Member
Posts:
105
2006-01-17
Yes that works. Thanks a lot!
geri
0
Sign In
or
Register
to comment.
Comments
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
for the first time it does. when i click the same link again, i opens in the same window. Can I set a parameter to force a new window every time?
ty
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
some thing like this
hyperlink('http://www.google.com/#');
hyperlink('http://www.google.com/##);
hyperlink('http://www.google.com/###');
hyperlink('http://www.google.com/####');
write you code something like this
mytext := '#'
loop howmany times you've clicked
mytext := mytext + mytext;
hyperlink('http://www.google.com/'+mytext);
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n