External links in access

Hi guys
I`m trying to create a sort of social networking site and i
want its members to be able to add an image, and to save space
would like them to upload the image to a free image host and then
add the link to there profile.
I`m using access at the moment and trying to add he external
link to the database and show it.
Is there a way to do this?

Hi guys
I`m trying to create a sort of social networking site and i
want its members to be able to add an image, and to save space
would like them to upload the image to a free image host and then
add the link to there profile.
I`m using access at the moment and trying to add he external
link to the database and show it.
Is there a way to do this?

Similar Messages

  • How to force external links to open in new browser window/tab?

    Greetings. I'm here because searching elsewhere kept coming up with references to javascript. I've created an interactive PDF with both internal and external links. It works just fine when viewed in either Acrobat or Reader. However, it is being downloaded to users' browsers and when they access the external URLs, the new sites replace the existing page in the same window.
    Is there a simple way for me to include an action in the PDF prior to distribution that will force it to open external URLs in a new browser window or tab?
    And for the record, I barely know how to spell Javascript, much less how to write or implement it. So if there is a simple solution, I hope you can also help walk me through the steps to implement it.
    Thanks a ton.

    There are two issues here:
    - How to do it using JS
    - How to do it in a non-Adobe browser plugin
    The first is pretty straight forward. You use a code like this, replacing the dummy URL with your own:
    app.launchURL("http://www.example.com", true);
    The second issue is more problematic, and in fact there isn't really a solution to it. If the plugin used supports this method then it will work, if not, then you're out of luck. Unfortunately, outside of the Adobe software I don't think that any other plugin supports it.

  • Is there a limit for external links in TOC using RoboHelp 9.2?

    Hi,
    This is my first time posting to the Adobe forums. Here is my problem.
    I have been maintaining help projects using RoboHelp 9.2 for quite some time now to generate WebHelp. I now have four large projects that are linked through a URL in each project's TOC.  Example: I have projects A B C D. In A's TOC, I include a link to B C D default topics. In B's TOC, I include a link to A C D default topics. And so on ... The fourth project (D) is new.
    The problem I've encountered is with the image appearing in the TOC next to the external link entry for project D in the generated WebHelp.  The image showing up for project D is different from the other two, even though the properties for that page are exactly the same as the other two.  This happens in all three remaining projects (A B C). Even when I change the image (from the image index), the same image (i.e. the standard image for a topic page) appears regardless.
    What should appear in all cases is image 13.gif.
    (I'll have to figure out later why 19.gif is selected in the properties dialog, whereas 13.gif is actually showing up in WebHelp. Doh.)
    Any ideas?
    thanks,
    denise

    karl219 wrote:
    1-Time machine seems to be coming up often in the discussions.If my backup is on my external hard drive, why would space be taken up on my macbook hard drive?
    Read the first extract for the definition of backup snapshots and how they are handled by the OS.
    2-Shoud I delete older backups? If for example, all I need from Time Machine is the latest backup done today, can I get rid of the 2+ yeras of backups, or do they not take up that much space?
    No.  Time Machine should be on a separate HDD and will take care of deleting backups when necessary on that drive.
    3-Back to the issue, considering I don't have access to a an apple store for the next few months, what is my best plan of action?
    I would consider installing a larger internal HDD.  Capacities to 1 TB are now available.
    4-I am considering buying a new macbook 15inch, and get more space, however, I'm scared that the same problem will happen again. Is this common on all macs? Will using Time Machine to "Restore" my backups bring along the issues as well?
    All Macs using Time Machine will experience the same conditions.  The problem is that many users do not under stand what 'Other' is and that leads to confusion.  There are many essential OS files in that category that should not be touched as well as some user files.  The issue is not to reduce 'Other' as such, but reduce the total amount of data on the HDD if space is becoming a premium.
    Please read these two extracts:
    http://pondini.org/OSX/LionStorage.html
    http://pondini.org/OSX/DiskSpace.html
    Ciao.

  • External link in a PDF

    How can I access an external link from a PDF?

    Here's a screen shot of Preview opening a part of my iPhone User Guide with a section highlighted.  If you can't highlight a section, check "Tools > Rectangular Selection" in Preview's menu and try that.

  • External Links in KM Repository

    Hi,
    How to create external links in KM repository in Web Dynpro Java application?
    Thanks
    Sundar

    Hi,
    Creating Links
    When you create a link, you can specify whether it is internal or external. You create a link as follows:
    IResource link = parent.createLink(u2033linku2033, u2033/documents/fileu2033,LinkType.INTERNAL, null);
    Identifying the Link Type
    It is useful to know the link type because it gives an indication of the operations that are possible on the link target. The repository framework distinguishes between internal and external links. Internal links refer to resources that are integrated in the repository framework, whereas external links refer to objects that are not integrated in the repository framework, for example, documents stored on a web site. If a link is internal, you can access the target as a resource that offers the operations associated with repository framework resources. If a link is external, you can only access the target as a URL and not as a resource object. As a consequence, most of the operations associated with resources are not available.
    Determining the link type is therefore often a prerequisite for handling a link target effectively.
    The code extract shows how you can find out what type of link is involved.
    if( LinkType.INTERNAL.equals(resource.getLinkType()) ) {
    // resource is an internal link to another resource
        IResource target = resource.getTargetResource();
        if( target == null ) {
            // link is broken, because target does not exist anymore as a resource,
            // so use the RID of the internal linku2019s target instead.
            URL targetURL = resource.getTargetURL();
    } else if( LinkType.EXTERNAL.equals(resource.getLinkType()) ) {
    // resource is an external link to an URL
    URL target = resource.getTargetURL();
    } else { // if( LinkType.NONE.equals(resource.getLinkType()) )
    // resource is not a link
    The repository framework also distinguishes between internal links that are static and dynamic. Dynamic links follow their target after the execution of operations like copy and move, whereas static links do not. When you create a link, the repository framework decides whether it will be static or dynamic.
    For more information: SAP NETWEAVER DEVELOPER'S GUIDE 2004S. Page .20
    Patricio.

  • Incorrect call to external link

    Hello experts,
    Business is requiring and external link in a development, so users will click on it and it should take them to a web page in their intranet site. Even when our developer is assigning the correct link, SRM is changing the URL.
    example:
    The URL we want to access http://www.mycompany.com/sites/intranet.htm
    but when we click on it, the system send us to: http://<SRM server web address>/sites/intranet.htm
    Complete error says:
    Service cannot be reached
    What has happened?
    URL http://<SRM server web address>/sites/intranet.htm call was terminated because the corresponding service is not available.
    Please advice on how to solve this issue. Thanks!
    Regards,
    Gilberto Gallardo.

    Hi Gilberto,
    What is this development where the URL is changed, you mention that SRM changes the URL when it is accessed.
    Is this custom development using standard SRM functions to read the text/URL contents?
    Perhaps you can explain some more about the Development and it's use in your SRM client?
    Regards
    Jason

  • How can I remove the eleven external links at the foot of the opening screen?

    There are elevn external links at the foot of the startup screen. Some of these are to gaming or gambling sites and some are 'advertisments' for madasafish, my ISP. How can I get rid of these?

    You can disable some browser.taskbar.*enable prefs on the about:config page.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • Safari Not Opening External Links

    When I click on any external link, eg: from Mail, Dashboard, a link icon on my Desktop, etc, Safari comes to the front, but does not open the link. Also when I try to "Reopen All Windows From Last Session", after reopening it, nothing happens. If I have a window open, I can drag a link off my desktop, drop it on the window, and the link will open.
    I have tried resetting the cache per this link:
    http://discussions.apple.com/thread.jspa?messageID=8777756&#8777756
    Also running Macjanitor, and repairing permissions. None of these worked. Any suggestions?

    That worked, thank you so much. Although I am a bit embarrassed that I didn't think to do that in the first place.
    I also want to explain what caused it, and what happened after I reopened safari. The problem started after I installed Verizon Access to use with Verizon's wireless broadband; it crashed Safari, but at the time I didn't notice any anomalies upon restarting Safari. It took a couple days to realize that Safari wasn't opening any external links.
    When I went to the preferences folder to remove the safari preference, there were two: one was "com.apple.Safari.plist" and the other was "com.apple.Safari.plist.saved". I put them both on the Desktop and reopened Safari.
    I don't have a Home Page selected, I prefer just a blank window when I open Safari, but it opened a Verizon page instead. So I went to Safari's Preferences and removed it. Restarted the browser, but it was back. It took a couple tries, but now Safari opens with an empty window again, and everything else is back to normal.
    What's odd is that the Verizon page didn't show up as the home page until I removed the .plist files from the Library.

  • External Links on website not working

    I am currently using Firefox 3.6.3. The problem is when users access my website and try clicking on external links. Often the browser will stall or act as though nothing was clicked. I have noticed that the performance of the browser varies day to day. The issue has been tested on IE with none of the issues that occurred on Firefox. On the bright side Internal links are working perfectly.
    == URL of affected sites ==
    http://www.yumyucky.com

    I'm sorry, but you are able to fix it without messing up the layout. You just need to have a better understanding of CSS and HTML. My eleven-year-old gets similarly frustrated when she can't figure out how to write a paragraph in her Language Arts class in school because what the teacher wants doesn't come naturally to her yet. But she's in school to learn and you are here to learn as well.
    Dump the apDiv 1 through 9.
    Remember that a div can contain another div.
    You can position divs by using margin-left, margin-top, margin-right and so on.
    Divs are rectangular spaces (that may expand with content) that hold stuff.
    One way to plan these things is to do it on a piece of paper and place divs inside of divs until you have a layout. Come up with a name for each div and make your CSS do what you're trying to do.
    If you are using floats, style them. Include margins and so on in classes like this (for a picture in your website):
    .floatLeft {
              float: left;
              margin-right: 8px;
    .floatRight {
              float: right;
              margin-left: 8px;
    Additionally, if you are using floats in a div, you may need to clear the floats below them, to go from, say, a two-column look to a one-column look:
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
              clear:both;
              height:0;
              font-size: 1px;
              line-height: 0px;
    The HTML for a float thusly styled would be:
    <img src="path/image.jpg" alt="description of the picture" class="floatLeft" />
    If you make a div class="floatLeft", you may need to clear the float, whereupon you do this in HTML:
    <br class="clearfloat" />
    That line break will take up no room and will clear you back to a one-column situation.

  • Disable warning dialogs for external links in PDF?

    Greetings. I'm at the final stages of an interactive PDF and during the review cycle, the client is noticing warning boxes each time they open a link to an external web address. I'm fairly sure that if you are using a purchased Acrobat instead of the free reader, you have the option on the first external link to allow access for all links. But, if you are using the free reader, every time you activate a different external link, you must "allow" it to open (is this true?). Those messages are annoying the client (in spite of the wisdom of the security). Is there anything I can do on the creation side to disable those warnings?
    The document is being created using InDesign CS6 in OSX-10.9.5.
    Thanks!
    Tim

    The warnings can be disabled by configuring their security user preferences, which are the same in Acrobat and Reader. In Reader 11, look at:
    Edit > Preferences > Trust Manager > Internet Access from PDF Files outside the web browser > Change Settings

  • Excel links to Access DB Hosted on SharePoint?

    Hello-
    I manage a site for intercompany financial reporting, and I am attempting to automate our monthly reporting. Specifically, I want to use Access to automatically report data to specific excel spreadsheets hosted in secure files on our SharePoint for
    data visualization and analysis. The criteria for the system seem to make it unfeasible as far as I know, and that is why I am asking the question of how to do this here.  
    Objectives:
    1. Link an Access database located on the sharepoint site itself to numerous satellite excel spreadsheets. Hosting from my PC or a shared team drive isn't an option, as not everyone will be able to automatically "Refresh" data if its located there.
    Ive been able to link excel to databases on hard drives but not those on the SharePoint.
    2. Excel spreadsheets should refresh automatically, without any input from the site admins or end users. All I want my team to have to do is upload a new Access file at the month's end. That access file will have the same structure and queries every month,
    just updated with new data monthly.
    3. Data transfer should be one way. We want to be able to report out data but we do not want others to be able to alter it in such a way that it impacts the Access DB.
    In summary, we want to upload one Access DB and allow the queries to provide inputs for a number of reports so that those who need the information can open an excel file and view the most recent data without having to refresh it or us having to
    allow them editing privileges. Your thoughts are apprecciated.

    Hi Stags3648,
    First, if I understand correctly, you want to connect to an Access Data from an Excel file. Both the Access Data and Excel are stored in SharePoint library. If I have misunderstood anything, please don't hesitate to let me know.
    For your questions:
    1. We can connect to Acces file(in SharePoint) from Excel using the URL path. e.g.
    http://site/Shared%20Documents/, and then select the Access Database file.
    2. In order to force the Excel file to be refreshed, there is no out of box(OOF) solution.
    The possible workaround is using customized code to open the Excel file, refresh the data, and then save to SharePoint library again.
    3. If we just connect from Excel to Access, the end-users won't be able to change any data from Excel to Access by default.
    Excel is a good for data visualization and analysis. But why not using SQL Server Reporting Service(SSRS)? While using SSRS, end-users can be only able to view report, the reports can be refreshed automatically.
    Thanks,
    Jinchun Chen
    Jinchun Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff AT microsoft.com(Please replace AT with @)

  • Can't Find ODBC drivers to link MS Access 2013 and MySQL

    Can't Find ODBC drivers to link MS Access 2013 and MySQL.
    Is one available?
    Thanks,
    Larry

    Could to associate the problem at Office 2013?
    I just installed the ODBC Driver; The data source machine was available; When selected I had received the message. When it was selected I had received the message:
    "ODBC -- falha na chamada.
    [Microsoft][ODBC Driver Manager] O DSN especificado contém uma incompatibilidade de arquiteturas entre o Driver e o Aplicativo (#0)"
    In english, could to say: "ODBC -- fail on call.
    ... The specified DSN contains a architectural incompatibility between Driver and App (#0)"
    I don't know yet the reason for this. Anyone knows?

  • Allow external traffic to access internal computers

    We have an ASA 5505 running version 8.4. We are having problems allowing external traffic to access computers behind the firewall. Our current config is:
    ASA Version 8.4(3)
    hostname ciscoasa
    domain-name default.domain.invalid
    names
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 10.2.1.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address 152.18.75.132 255.255.255.240
    boot system disk0:/asa843-k8.bin
    ftp mode passive
    dns server-group DefaultDNS
    domain-name default.domain.invalid
    object network a-152.18.75.133
    host 152.18.75.133
    object network a-10.2.1.2
    host 10.2.1.2
    object-group network ext-servers
    network-object host 142.21.53.249
    network-object host 142.21.53.251
    network-object host 142.21.53.195
    object-group network ecomm_servers
    network-object 142.21.53.236 255.255.255.255
    object-group network internal_subnet
    network-object 10.2.1.0 255.255.255.0
    access-list extended extended permit ip any any
    access-list extended extended permit icmp any any
    access-list extended extended permit ip any object-group ext-servers
    access-list acl_out extended permit tcp any object-group ecomm_servers eq https
    access-list outside_in extended permit ip any host 10.2.1.2
    pager lines 24
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    icmp unreachable rate-limit 1 burst-size 1
    icmp permit any echo-reply inside
    icmp permit 10.2.1.0 255.255.255.0 inside
    icmp permit any echo-reply outside
    icmp permit any outside
    asdm image disk0:/asdm-523.bin
    no asdm history enable
    arp timeout 14400
    nat (inside,outside) source static a-10.2.1.2 a-152.18.75.133
    route outside 0.0.0.0 0.0.0.0 152.18.75.129 1
    timeout xlate 3:00:00
    timeout pat-xlate 0:00:30
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    user-identity default-domain LOCAL
    http server enable
    http 10.2.1.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    telnet timeout 5
    ssh 10.2.1.2 255.255.255.255 inside
    ssh 122.31.53.0 255.255.255.0 outside
    ssh 122.28.75.128 255.255.255.240 outside
    ssh timeout 30
    console timeout 0
    dhcpd auto_config outside
    dhcpd address 10.2.1.2-10.2.1.254 inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect icmp
      inspect ip-options
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    call-home
    profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    Cryptochecksum:c7d7009a051cb0647b402f4acb9a3915
    : end
    ciscoasa(config)# sh nat
    Manual NAT Policies (Section 1)
    1 (inside) to (outside) source static a-10.2.1.2 a-152.18.75.133
        translate_hits = 1, untranslate_hits = 112
    ciscoasa(config)# sh nat
    Manual NAT Policies (Section 1)
    1 (inside) to (outside) source static a-10.2.1.2 a-152.18.75.133
        translate_hits = 1, untranslate_hits = 113
    ciscoasa(config)#

    Okay I will bite.
    Assuming you have
    a.  dynamic pat rule for lan users-devices to reach the internet
    (missing ???????????????
    (should look like a nat rule that makes two entries when you make the one rule)
    (with router set at defaults it may make this rule for you already in place)
    -object bit  
    object network obj_any_inside
    subnet 0.0.0.0 0.0.0.0
    and rule bit
    object network obj_any_inside
    nat (inside,outside) dynamic interface
    b.  route rule - tells asa next hop is IP gateway address
    route outside 0.0.0.0 0.0.0.0 152.18.75.129 1
    c.  Nat rule for port forwarding- Using objects it creates two entries (lets say i call it natforward4server)
    object bit
    object network natforward4server
    host 10.2.1.2
    Nat bit
    object network natforward4server
    nat (inside,outside) static interface service tcp 443 443
    d. Nat for translated ort.
    If you had wanted to translate a port, lets say you have external users that can only use port 80 but need to access https
    object bitobject network natfortransl4server
    host 10.2.1.2
    Nat bit
    object network natfortransl4server
    nat (inside,outside) static interface service tcp 443 80

  • External links suddenly open in a new window instead of a tab

    I am using Nightly (20.0a1) on WIndows 8, I use the program Teamspeak 3 and it used to be that whenever I clicked on a link it would just open in a new tab in the Nightly window that was open, but now it opens a completely new Nightly window. I have the box ticked in settings, I've gone through all of the about:config things I've seen online and nothing works, I really have no idea what to do. I just did something with envoirenmental variables which didn't help (meant that it opened a whole new instance of Nightly whenever I clicked on an external link) so I deleted the variable. Anyone got any suggestions? If it is relevant, before this problem started I dragged a tab from one window of Nightly to another (think it might've been the cause of this), and yes, I've tried dragging tabs around from window to window to fix this and it didn't work.

    Thanks, but I already had it set to that, I've heard of many people with this problem and tried literally all fo the about:config fixes that I could find but none worked, I think it is some sort of assosiation problem with hyperlinked text with windows but I really don't know. Anyone who can help me please do, this is getting annoying. Keep in mind that I have Windows 8 when making suggestions also.

  • Please Bookmark Links to Access Unifier Environment

    Unifier Customers:
    Since the decommission of www.skire.com, there has been confusion on how to access the links to your hosted Unifier environment. We are sorry for the inconvenience and are emailing you today to ask that you bookmark these links to access your Unifier environment(s).
    Unifier Production Server - https://ues.skire.com
    uStage Staging Server - https://ustage.skire.com
    uDesigner Access - https://udesigner.skire.com
    Additionally, you have access to these links on the Primavera Applications page of www.oracle.com. Scroll down on the Primavera Applications page and look to the right side navigation bar to see the links in the Unifier Access LOGIN section. Also, scroll down further on the same page (center of the page) to see the links in the Primavera Unifier section of the Overview tab.
    Please contact Oracle Support with any questions or concerns.
    Regards,
    Oracle Support

    Please follow the steps below carefully to download Photoshop Elements 10 :
    1. Navigate to Photoshop Elements 11 Downloads page : http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=us
    2. Sign in with your Adobe ID.
    3. Copy and paste the following links on the address bar one at a time and hit enter :
    Windows :
    http://trials3.adobe.com/AdobeProducts/PSE/10/win32/PhotoshopElements_10_LS15.7z
    http://trials3.adobe.com/AdobeProducts/PSE/10/win32/PhotoshopElements_10_LS15.exe
    Mac :
    http://trials3.adobe.com/AdobeProducts/PSE/10/osx10/PhotoshopElements_10_WWEFDJ.dmg
    4. Save the files.
    5. Run the .exe if on Windows else the .dmg file if on MAC to initiate the installation.

Maybe you are looking for

  • Hello ,, i have a macbook air and forget it's password

    I have a macbook air ,, and forget it's password ,, i was reset the password but when i open my device a got an alert that ask me the keychain password could support me please

  • Latest Flash faulty in all browsers...?

    Hi. I'm encountering a problem with Flash failing to display various objects. It's particularly noticeable with videos (through YouTube, Vimeo, etc.) but also happens with animated banner ads etc. 5-10 seconds after appearing, the object in question

  • How to use a function in a Where Clause?

    Hi, I've got a doubt. If MY_FUNCT is a function that returns a boolean, can I use it in a where clause for writing a query like this?: select ... from table a where ... and MY_FUNC (a.field) = true Thanks! Edited by: Mark1970 on 2-lug-2010 3.27

  • How do I load Reader X Comments Plug-in so I can use highlight text tool?

    It's on my toolbar, but when I select it nothing happens- no highlight

  • Approval audit data in OIM

    Hello, There are few old requests in OIM (1 years old)=> database table data indicates request was "assignedto A and B approved" ... (how to gather information why was that? may be, if B was a proxy for A during that time?) Thanks,