UGREEN VG101 VGA Male to Male Cable 3M - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN VG101 VGA Male to Male Cable 3M

SKU: VG101-11631
R 129.00 R 189.00
You save R 60.00 (32%)
In Stock
You save R 60.00 (32% off)

Quick Specs

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Quick Specs

  • Transmits high-resolution video signals with clarity.
  • Extends your display reach up to 3 meters for flexible setup.
  • Features gold-plated connectors for optimal signal transfer.
  • Works seamlessly with various devices supporting VGA output.
  • Durable build ensures longevity and consistent performance.

Experience Reliable Connectivity

UGreen's VGA Male to Male Cable offers a dependable solution for connecting your devices, ensuring a stable and clear video signal. Designed for simplicity and efficiency, it's an essential accessory for your home or office. Get a high quality UGreen VGA cable today!

Achieve High-Resolution Display Quality

Supporting resolutions up to 1920 x 1200 (WUXGA), this VGA cable delivers crisp and detailed images, enhancing your viewing experience. Whether presenting, gaming, or browsing, expect quality visuals with our UGreen VGA cable.

Enjoy Flexible Connectivity Options

The 3-meter VGA cable length provides ample reach, allowing you to connect devices without being restricted by space. Set up your workspace or entertainment system exactly as needed, without compromising signal quality with this UGreen cable.

Benefit from Superior Signal Transmission

Gold-plated connectors resist corrosion and reduce signal loss, ensuring optimal performance and longevity. Enjoy consistent and reliable video quality, even with extended use with our UGreen VGA cable. This VGA cable 3m ensures optimal connection.

Broaden Device Compatibility

This VGA cable 3m is compatible with a wide range of devices, including computers, TVs, monitors, projectors, and DVD players. Connect your devices with ease, simplifying your setup and maximizing your equipment's potential with a UGreen VGA cable.

Built to Last

Designed with durability, the UGreen VGA cable is made from high-quality materials, ensuring it can withstand daily use. Invest in a cable that offers performance and longevity, providing excellent value. A UGreen VGA cable is a long-term investment.

FEATURES:

  • Transmit high-resolution video, supporting resolutions up to 1920 x 1200 (WUXGA).
  • Extend your reach with a 3-meter VGA cable, providing flexible connectivity options.
  • Optimize signal transfer using gold-plated connectors that resist corrosion.
  • Connect various devices, including computers, monitors, projectors, and TVs.
  • Rely on a durable cable construction, designed for long-lasting performance.

SPECIFICATIONS:

  • Interface: VGA (Male), VGA (Male
  • Cable Length: 3M
  • Colour: Black
  • Connectors: Gold-plated
  • Resolution Support: 800 x 600 (SVGA), 1024 x 768 (XGA), 1600 x 1200 (UXGA), 1080P (Full HD), 1920 x 1200 (WUXGA), or higher
  • Compatibility: Computer, TV, Monitor, Set-top Box, Projector, or DVD player with compatible VGA connector only

WHAT'S IN THE BOX:

  • UGreen VG101 VGA Male to Male Cable 3M x1

Why UGreen?

UGreen is known for producing high-quality, reliable cables and accessories, ensuring seamless connectivity and optimal performance. If you need a VGA cable 3m, UGreen has you covered! With a focus on innovation and customer satisfaction, UGreen products offer excellent value and durability, making them a smart choice for your connectivity needs in South Africa. Trust UGreen to deliver consistent and dependable solutions for your digital lifestyle.

Brand Ugreen
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

-35%
UGREEN Mini DisplayPort Male to 4K@30Hz HDMI Cable 1.5m - Black
Ugreen

UGREEN Mini DisplayPort Male to 4K@30Hz HDMI Cable 1.5m - Black

R 189.00 R 289.00

Save R 100.00

In Stock

-35%
UGREEN HD104-10109 HDMI 4K Cable Male to Male Black 5m - Black
Ugreen

UGREEN HD104-10109 HDMI 4K Cable Male to Male Black 5m - Black

R 129.00 R 199.00

Save R 70.00

In Stock

-33%
UGREEN HD101-10170 HDMI 4K Ferrite Core Cable Male to Male 10m - Black
Ugreen

UGREEN HD101-10170 HDMI 4K Ferrite Core Cable Male to Male 10m - Black

R 399.00 R 599.00

Save R 200.00

In Stock

-34%
UGREEN DP114 8K DisplayPort Male to Male Braided Cable 3m
Ugreen

UGREEN DP114 8K DisplayPort Male to Male Braided Cable 3m

R 209.00 R 319.00

Save R 110.00

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!