نتایج جستجو برای: venous thromboembolism

تعداد نتایج: 78258  

Journal: :Stroke 2013
Alexander G G Turpie Russell D Hull Sebastian M Schellong Victor F Tapson Manuel Monreal Meyer-Michel Samama Min Chen Roger D Yusen

BACKGROUND AND PURPOSE The optimal duration of venous thromboembolism prophylaxis in acute stroke patients is unknown. This subanalysis of the Extended Prophylaxis for Venous ThromboEmbolism in Acutely Ill Medical Patients With Prolonged Immobilization (EXCLAIM) study investigated extended-duration thromboprophylaxis with enoxaparin, compared with placebo following standard-duration enoxaparin,...

Journal: :Haematologica 2003
Meyer Michel Samama Ola E Dahl Daniel J Quinlan Patrick Mismetti Nadia Rosencher

BACKGROUND AND OBJECTIVES Venous thromboembolism is a frequent and serious disorder influenced by numerous factors. As the first step in creating a tool to assess an individual patient's risk of venous thromboembolism, we carried out a literature review in order to quantify risk factors for venous thromboembolism. EVIDENCE AND INFORMATION SOURCES Risk factors were identified as being either p...

Journal: :Thrombosis and haemostasis 1998
S Eichinger A Stümpflen M Hirschl C Bialonczyk K Herkner M Stain B Schneider I Pabinger K Lechner P A Kyrle

Hyperhomocysteinemia is a risk factor of venous thromboembolism. The risk of recurrence in patients with hyperhomocysteinemia is unknown, and the optimal therapy for these patients after acute venous thromboembolism is uncertain. In a multicenter study, 264 patients with an objectively documented single episode of idiopathic venous thromboembolism were prospectively followed after discontinuati...

Journal: :Menopause 2011
François Laliberté Katherine Dea Mei Sheng Duh Kristijan H Kahler Melanie Rolli Patrick Lefebvre

OBJECTIVE The aim of this study was to quantify the magnitude of risk reduction for venous thromboembolism events associated with an estradiol transdermal system relative to oral estrogen-only hormone therapy agents. METHODS A claims analysis was conducted using the Thomson Reuters MarketScan database from January 2002 to October 2009. Participants 35 years or older who were newly using an es...

Journal: :Haematologica 2007
Alain Leizorovicz

BACKGROUND AND OBJECTIVES The rate of post-operative asymptomatic deep-vein thrombosis in Asian patients remains uncertain. The aim of this study was to estimate the rate of venous thromboembolism, including asymptomatic deep-vein thrombosis, undergoing hip or knee surgery and not receiving pharmacological thromboprophylaxis. DESIGN AND METHODS This was a prospective observational study of a ...

2011
C Sinescu M Hostiuc D Bartos

During the past decade idiopathic venous thromboembolism has become a separate entity, a chronic illness which has required prolonged anticoagulation and other prevention strategies to avoid recurrences. This article reviews recent developments regarding unprovoked venous thromboembolism and its relation with thrombophilia. In the beginning, the latest definition of idiopathic venous thromboemb...

Journal: :فیض 0
بتول پورقیصری batool pourgheysari pathology and hematology department, shahrekord university of medical sciences, shahrekord, i. r. iran.شهرکرد، دانشگاه علوم پزشکی شهرکرد، گروه پاتولوژی عفت فرخی efat farrokhi مجتبی ساعدی mojtaba saedi

background: inherited thrombophilic gene polymorphisms have been related to the pathogenesis of venous thromboembolism and its outcomes. considering the scarcity of data on the frequency of the thrombophilic gene polymorphisms in iranian populations, the aim of this study was to assess such polymorphisms in healthy individuals. materials and methods: this cross-sectional study was performed on ...

Journal: :Cleveland Clinic journal of medicine 2017
Patrick Rendon Allison E Burnett Jessica Zimmerberg-Helms Taylor Goot Michael B Streiff

Diagnostic algorithms for venous thromboembolism exist, but most do not provide detailed guidance as to which patients, if any, may benefit from screening for thrombophilia. This article provides an overview of the optimized diagnosis of venous thromboembolism, with a focus on the appropriate use of thrombophilia screening.

2009
KS Tan AR Rashid CT Tan

Background: There are extensive studies indicating that deep venous thrombosis and pulmonary embolism contributes to significant morbidity and mortality after acute ischaemic stroke in the West, with established guidelines for prophylaxis. The situation is less clear in Asia. Accordingly, a literature search was performed to review the available evidence. Methods: A search was performed with al...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->