Cach đóng gói fiel c windows form

Trang : 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

vBulletin® Version 4.2.2, Copyright © 2022 vBulletin Solutions, Inc. All rights reserved. Administer by Kevin Hoang

Trang : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 [47] 48 49 50 51 52 53 54

vBulletin® Version 4.2.2, Copyright © 2022 vBulletin Solutions, Inc. All rights reserved. Administer by Kevin Hoang

Xin chào các bạn, bài viết hôm nay mình sẽ hướng dẫn các bạn đóng gói phần mềm thành file cài đặt installer sử dụng script PowerShell.

Sau khi các bạn viết xong phần mềm trên Winform, các bạn cần phải đóng gói phần mềm thành file cài đặt.

Bình thường, các bạn sẽ sử dụng phần mềm: Advance Installer, One Click Install hay Installshield...

Trong bài viết này mình sẽ hướng dẫn các bạn đóng gói ứng dụng tool nhỏ cài đặt sử dụng script PowerShell.

Lợi ích của việc đóng gói này là file cài đặt của bạn khoảng 300MB (nếu bạn nào code bằng Devexpress thì sẽ thấy dung lượng rất nhiều).

Khi cài đặt build thì file Exe chúng ta chỉ còn khoảng tầm 300KB, giúp chúng ta dễ dàng chia sẽ.

Nhược điểm: Muốn cài đặt phải có mạng internet.

Các bạn có thể mở chương trình Powershell ISE, để code script

Cach đóng gói fiel c windows form

Các bước đóng gói phần mềm SVG Collection của mình.

Bước 1: Nén File ứng dụng ở thư mục Release lên hosting web của các bạn

Và khi chạy Script cài đặt chúng ta sẽ thực hiện các bước công việc sau:

Bước 2: Download file từ hosting name VD: https://laptrinhvb.net/svg_csharp.rar 

Bước 3: Giải nén file rar vào thư mục chúng ta chỉ định

Bước 4: Xóa File rar chúng ta đã tải về

Bước 5: Chạy mở ứng dụng lên

Bước 6: Tạo shortcut phần mềm trước Desktop.

Script mình viết cũng đơn giản các bạn chỉ cần vào chỉnh sửa các thông số lại là xong nhé.

Sau khi Viết Script PowerShell xong, chúng ta sẽ sử dụng PS2EXE => chuyển file script thành file EXE

Video demo ứng dụng tạo sau khi tạo file cài đặt thành công:


Source code full script PowerShell setup:

[console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
$host.UI.RawUI.WindowTitle = "Cài đặt phần mềm Powershell - https://laptrinhvb.net"
Add-Type -AssemblyName System.Windows.Forms
$browser = New-Object System.Windows.Forms.FolderBrowserDialog
$browser.Description = "Bạn Hãy chọn thư mục cài đặt phần mềm"
$null = $browser.ShowDialog()
$temp = $browser.SelectedPath
Write-Output $temp
$url = "https://laptrinhvb.net/svg_csharp.rar"
$output = $temp + "svg_csharp.rar"
$start_time = Get-Date

#Import-Module BitsTransfer
#Start-BitsTransfer -Source $url -Destination $output
#OR
#Start-BitsTransfer -Source $url -Destination $output -Asynchronous

Function Get-Webfile ($url)
{    
    $dest = $output
    Write-Host "Đang tải $url`n" -ForegroundColor DarkGreen;
    $uri=New-Object "System.Uri" "$url"
    $request=[System.Net.HttpWebRequest]::Create($uri)
    $request.set_Timeout(5000)
    $response=$request.GetResponse()
    $totalLength=[System.Math]::Floor($response.get_ContentLength()/1024)
    $length=$response.get_ContentLength()
    $responseStream=$response.GetResponseStream()
    $destStream=New-Object -TypeName System.IO.FileStream -ArgumentList $dest, Create
    $buffer=New-Object byte[] 10KB
    $count=$responseStream.Read($buffer,0,$buffer.length)
    $downloadedBytes=$count
    while ($count -gt 0)
        {
        [System.Console]::CursorLeft = 0
        [System.Console]::Write("Đang tải phần mềm {0}K of {1}K ({2}%)", [System.Math]::Floor($downloadedBytes/1024), $totalLength, [System.Math]::Round(($downloadedBytes / $length) * 100,0))
        $destStream.Write($buffer, 0, $count)
        $count=$responseStream.Read($buffer,0,$buffer.length)
        $downloadedBytes+=$count
        }
    Write-Host ""
    Write-Host "`nDownload of `"$dest`" finished." -ForegroundColor DarkGreen;
    $destStream.Flush()
    $destStream.Close()
    $destStream.Dispose()
    $responseStream.Dispose()
}

Get-Webfile $url


Write-Output "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)"

Set-Location $temp

Function Extract-WinRarFiles
{    
      
      [cmdletbinding()]
    
    Param 
    (
        [Parameter(HelpMessage='Enter the local path to the unrar.exe program')]
            [ValidateNotNullOrEmpty()]
            [ValidateScript({ Test-Path -Path $_ })] 
            [Alias('UREP')] 
            $UnRarExePath = "$env:ProgramFilesWinRARUnRAR.exe",
            
        [Parameter(Mandatory = $true, 
            HelpMessage='Enter the local file path where the WinRar files are located that you would like to extract')]
            [ValidateNotNullOrEmpty()]
            [ValidateScript({ Test-Path -Path $_ })]
            [Alias('URSP')]   
            $UnRarSourcePath,
        
        [Parameter(Mandatory = $true, 
            HelpMessage='Enter the local file path location you wish to extract the content to')]
            [ValidateNotNullOrEmpty()]
            [ValidateScript({ Test-Path -Path $_ })]
            [Alias('URTP')]   
            $UnRarTargetPath,

        [Parameter(HelpMessage='Use this parameter to open the directory the extracted files are located in')]
            [ValidateNotNullOrEmpty()]
            [Alias('OTL')]   
            [switch]$OpenTargetLocation, 

        [Parameter(HelpMessage='Use this parameter to delete the original RAR files to help save disk space')]
            [ValidateNotNullOrEmpty()]
            [Alias('DSRF')]   
            [switch]$DeleteSourceRarFiles
    ) 

    Begin
    {
        $NewLine = "`r`n"
        
        $RarFilePaths = (Get-ChildItem -Path $UnRarSourcePath -Recurse | Where-Object -FilterScript { $_.extension -eq '.rar' }).FullName

        $RarFileSourceCount = $RarFilePaths.Count     
    }

    Process
    {
        $NewLine

        Write-Output -Verbose "Total RAR File Count: $RarFileSourceCount"

        $NewLine

        Write-Output -Verbose "Beginning extraction, please wait..."

        Start-Sleep -Seconds 2

        Foreach ($FilePath in $RarFilePaths)
        {
            &$UnRarExePath x -y $FilePath $UnRarTargetPath
        }

        $RarFileTargetCount = (Get-ChildItem -Path $UnRarTargetPath).Count

        If ($RarFileTargetCount -eq $RarFileSourceCount)
        {
            Clear-Host

            $NewLine

            Write-Output -Verbose "$RarFileTargetCount RAR files have been extracted"

            $NewLine
        }
        
        Else
        {
            $NewLine
            
            Write-Warning -Message "$RarFileTargetCount out of $RarFileSourceCount have been extracted"

            $NewLine
        }  
    }

    End
    {
        Switch ($PSBoundParameters.Keys)
        {
            { $_ -contains 'OpenTargetLocation' }
            {
                $NewLine

                Write-Output -Verbose 'Opening RAR target location...'

                Start-Sleep -Seconds 5
                
                Invoke-Item -Path $UnRarTargetPath
            }

            { $_ -contains 'DeleteSourceRarFiles' }
            {
                $NewLine

                Write-Output -Verbose 'Deleting source RAR files and the directory...'

                Start-Sleep -Seconds 5
                
                Remove-Item -Path $UnRarSourcePath -Recurse -Force
            }
        }
    }
}




Set-Location $temp
$appPath = $temp + "SGV Collection.exe"

 Extract-WinRarFiles -UnRarSourcePath $output -UnRarTargetPath $temp -DeleteSourceRarFiles
 Write-Output "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)"
 Remove-Item *.tmp -recurse -force
 Start-Process -FilePath $appPath
 
 $WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$HomeDesktopSGV Collection.lnk")
$Shortcut.TargetPath = $appPath
$Shortcut.Save()
write-host "Setup finish..."
write-host "Press any key to exist..."
#[void][System.Console]::ReadKey($true)

Sau khi tạo script xong để biên dịch File script thành File EXE các bạn vào đường dẫn github PS2EXE sau để xem chi tiết tạo file setup.

https://github.com/MScholtes/PS2EXE

Bước 1: Các bạn mở chương trình PowerShell lên

Bước 2: Gõ lệnh tải PS2EXE về

PS C:> Install-Module ps2exe

Bước 3: Lệnh đóng gói, các bạn chỉ chọn đường dẫn file script và file xuất exe

Invoke-ps2exe .source.ps1 .	arget.exe

Khi build File Exe, nếu các bạn muốn chỉnh sửa các tham số Assembly hay icon của ứng dụng, khi build các bạn làm theo cú pháp bên dưới:

ps2exe [-inputFile] '' [[-outputFile] ''] [-prepareDebug]
       [-x86|-x64] [-lcid ] [-STA|-MTA] [-noConsole] [-UNICODEEncoding]
       [-credentialGUI] [-iconFile ''] [-title ''] [-description '<description>']
       [-company '<company>'] [-product '<product>'] [-copyright '<copyright>'] [-trademark '<trademark>']
       [-version '<version>'] [-configFile] [-noOutput] [-noError] [-noVisualStyles] [-requireAdmin]
       [-supportOS] [-virtualize] [-longPaths]</code></pre><p>Thanks for
watching!</p><p>DOWNLOAD SOURCE</p><p><h5> NGUYỄN THẢO</h5><p><p><span><span><strong>Founder</strong></span> <span>at LaptrinhVB.net</span></span></p><p><span><span><strong><span>★★★★★</span></strong></span></span></p><p><span>♥ Tình yêu thương chẳng hề hư mất bao giờ. (Cr 13,4)</span></p><p><span>=========================================================================</span>
</p><p><span>My skills includes .NET(C#, VB.NET), DevExpress, Java, Android, PHP,</span></p><div style="width:100%; margin:20px auto; display:block">
<ins class="adsbygoogle"
     style="display:block; text-align:center;"
     data-ad-layout="in-article"
     data-ad-format="fluid" 
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="8587332220"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div></p><p><span> Python, Sqlserver,</span><span> Mysql, Reactjs,</span><span> Dart, Flutter, API services and lot more...</span></p><p><span>Phone/Zalo/Telegram/WhatsApp: <span><strong>+84.933.913.122</strong></span></span></p><p><span>Email: <span></span></span></p><p><span>Facebook: <span>https://fb.com/Lewandowski28031988</span></span></p><p><span>Youtube Channel: https://www.youtube.com/c/CTutorialsTips</span></p><h3><span><span><div class="imgBox"><img alt="Cach đóng gói fiel c windows form" data-orgimg="https://sg.cdnki.com/cach-dong-goi-fiel-c-windows-form---aHR0cHM6Ly9sYXB0cmluaHZiLm5ldC91cGxvYWRzL3NvdXJjZS9iZWVyLnBuZw==.webp" ></img></div> <span> </span></span></span><span></span></h3><p><strong><span>Buy me a cup of beer</span></strong></p><p><span><div class="imgBox"><img alt="Cach đóng gói fiel c windows form" src="/dist/images/loading.svg" data-orgimg="https://sg.cdnki.com/cach-dong-goi-fiel-c-windows-form---aHR0cHM6Ly9sYXB0cmluaHZiLm5ldC91cGxvYWRzL3NvdXJjZS9tb21vX250LnBuZw==.webp"></img></div>        <div class="imgBox"><img alt="Cach đóng gói fiel c windows form" data-orgimg="https://sg.cdnki.com/cach-dong-goi-fiel-c-windows-form---aHR0cHM6Ly9sYXB0cmluaHZiLm5ldC91cGxvYWRzL3NvdXJjZS9EQVRBQkFTRS96YWxvcGF5X2ltYWdlLnBuZw==.webp" ></img></div><div class="imgBox"><img alt="Cach đóng gói fiel c windows form" data-orgimg="https://sg.cdnki.com/cach-dong-goi-fiel-c-windows-form---aHR0cHM6Ly9sYXB0cmluaHZiLm5ldC91cGxvYWRzL3NvdXJjZS9wYXlwYWwucG5n.webp" ></img></div></span></p><p><span><div class="imgBox"><img alt="Cach đóng gói fiel c windows form" data-orgimg="https://sg.cdnki.com/cach-dong-goi-fiel-c-windows-form---aHR0cHM6Ly9sYXB0cmluaHZiLm5ldC91cGxvYWRzL3NvdXJjZS9EQVRBQkFTRS9idXlfYV9jb2ZmZWUucG5n.webp" ></img></div></span></p><p><span>=========================================================================</span></p><p><p><span><div class="imgBox"><img alt="Cach đóng gói fiel c windows form" data-orgimg="https://sg.cdnki.com/cach-dong-goi-fiel-c-windows-form---aHR0cHM6Ly9sYXB0cmluaHZiLm5ldC91cGxvYWRzL3VzZXJzLzI5N2ZiYzcyNjE0YjA4OGZmM2FlNjM4NjkyYjU3ZjhkLnBuZw==.webp" ></img></div></span></p><p><span>Đăng bởi: <b>Thảo Meo - Lượt xem: 3241</b></span>
<span>14:26:28, 19/03/2021<span>C#</span> <span><span></span>  In bài viết</span></span></p><div class='paramage'></div> <div class="contenBreak"></div></p></div>
                                    <div class="readmore_content_exists"><button id="readmore_content"><span class="arrow"><span></span></span>Đọc tiếp</button></div>
                                </td></tr></table>
																

															 <script async src="/dist/js/lazyhtml.min.js" crossorigin="anonymous"></script>
							 <div class="lazyhtml" data-lazyhtml>
								<script type="text/lazyhtml">
									<div class="youtubeVideo"><h3>Video liên quan</h3>
            <iframe width="560" height="315" src="https://www.youtube.com/embed/Y4xngc7jNl4?controls=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe>
									</div>
								</script>
							  </div>
														
							<div class="mt-3">
								<div class="tags">
																  <a href="https://thuonline.com/tags/Visual Studio Installer" class="tag-link">Visual Studio Installer</a>
																  <a href="https://thuonline.com/tags/Ms Visual Studio" class="tag-link">Ms Visual Studio</a>
																</div>
							</div>
							
							
							<div class="post-tools">
                                    <button data-postid="cach-dong-goi-fiel-c-windows-form" class="btn btn-answerModalBox"><img class="mr-1" alt="Cach đóng gói fiel c windows form" src="/dist/images/svg/messages_16.svg">Reply</button>
                                    <button data-postid="cach-dong-goi-fiel-c-windows-form" data-vote="up"  class="btn btn-doVote"><img class="mr-1" alt="Cach đóng gói fiel c windows form"  src="/dist/images/svg/face-smile_16.svg">0</button>
                                    <button data-postid="cach-dong-goi-fiel-c-windows-form" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Cach đóng gói fiel c windows form"  src="/dist/images/svg/poo_16.svg">0</button>
                                    <button class="btn"><img class="mr-1" alt="Cach đóng gói fiel c windows form"  src="/dist/images/svg/facebook_16.svg"> Chia sẻ</button>
                            </div> 	
							
                            </div><!-- end question-post-body -->
                        </div><!-- end question-post-body-wrap -->
                    </div><!-- end question -->
                    
                    <div id="answers_cach-dong-goi-fiel-c-windows-form" class="answers"> </div><!-- end answer-wrap -->
					
					<div class="entryFooter">
							<div class="footerLinkAds"><div style="width:100%; margin:0 auto;">
<ins class="adsbygoogle"
     style="display:block"
     data-ad-format="autorelaxed"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="8199996671"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>							
							<div class="footerRelated"><div class="postRelatedWidget">
<h2>Bài Viết Liên Quan</h2>


<div class="questions-snippet layoutNews border-top border-top-gray">
  <div class="max-width:840px">					
<ins class="adsbygoogle"
     style="display:block"
     data-ad-format="fluid"
     data-ad-layout-key="-fb-44+c1-1p-ns"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="7655066491"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/quan-sat-vu-tru-qua-kinh-thien-van-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/sXwTuX-84rM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBx4D4plwEh6-wbDcXoj-aprwlxtA" alt="Quan sát vũ trụ qua kính thiên văn năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/quan-sat-vu-tru-qua-kinh-thien-van-nam-2024">Quan sát vũ trụ qua kính thiên văn năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khoa Học" class="tag-link">Khoa Học</a>
                                        <a href="/tags/Vũ trụ" class="tag-link">Vũ trụ</a>
                                        <a href="/tags/Kính thiên văn" class="tag-link">Kính thiên văn</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bai-tap-would-you-mind-lop-8-co-dap-an-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/ZamPgQ3R828/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLC8FhsIYKJ1QcGc53tMuM-XRMGvgQ" alt="Bài tập would you mind lớp 8 có đáp án năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bai-tap-would-you-mind-lop-8-co-dap-an-nam-2024">Bài tập would you mind lớp 8 có đáp án năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Would you like" class="tag-link">Would you like</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/ben-duoc-bao-hiem-tieng-anh-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/_Tq5fLpT_sI/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4OgAK4CIoCDAgAEAEYWyBbKFswDw==&rs=AOn4CLAVmosGYeIgp_l5t5_i5K2X_cYqHw" alt="Bên được bảo hiểm tiếng anh là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/ben-duoc-bao-hiem-tieng-anh-la-gi-nam-2024">Bên được bảo hiểm tiếng anh là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Tiếng anh" class="tag-link">Tiếng anh</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/top-nhung-quan-banh-canh-cua-ngon-nhat-sai-gon-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/M1uE8H9nHyU/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCGMIoH1lu-6LA_JzofCZkqhd1VMQ" alt="Top những quán bánh canh cua ngon nhat sài gòn năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/top-nhung-quan-banh-canh-cua-ngon-nhat-sai-gon-nam-2024">Top những quán bánh canh cua ngon nhat sài gòn năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Món Ngon" class="tag-link">Món Ngon</a>
                                        <a href="/tags/Bánh" class="tag-link">Bánh</a>
                                        <a href="/tags/Top List" class="tag-link">Top List</a>
                                        <a href="/tags/Top" class="tag-link">Top</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/ban-buon-la-gi-trong-luat-viet-nam-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/96moxYfxBfo/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYZSBaKFEwDw==&rs=AOn4CLCcmlFNXJ3aifQ_9IZD_Ub9dsskMQ" alt="Bán buôn là gì trong luật việt nam năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/ban-buon-la-gi-trong-luat-viet-nam-nam-2024">Bán buôn là gì trong luật việt nam năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Buôn là gì" class="tag-link">Buôn là gì</a>
                                        <a href="/tags/Ngành bán lẻ" class="tag-link">Ngành bán lẻ</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/giai-bai-tap-toan-lop-5-trang-4-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/tV6F8hptmeY/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLAXcb5OykD0lcaBb_sXxaVOwoTOtQ" alt="Giải bài tập toán lớp 5 trang 4 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/giai-bai-tap-toan-lop-5-trang-4-nam-2024">Giải bài tập toán lớp 5 trang 4 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Hơn" class="tag-link">Hơn</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bai-tap-toan-tai-chinh-chiet-khau-thuong-phieu-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/7R7FBqtI9aM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCkvGALpFZb-R5nqACMjZnP7SmYCA" alt="Bài tập toán tài chính chiết khấu thương phiếu năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bai-tap-toan-tai-chinh-chiet-khau-thuong-phieu-nam-2024">Bài tập toán tài chính chiết khấu thương phiếu năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/giai-bai-tap-toan-10-sgk-hinh-hoc-chuong-2-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/5SYk-eiSofk/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCd0Pm1SgyqJ09YT1_xjQmHEZ8-kw" alt="Giải bài tập toán 10 sgk hình học chương 2 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/giai-bai-tap-toan-10-sgk-hinh-hoc-chuong-2-nam-2024">Giải bài tập toán 10 sgk hình học chương 2 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Học" class="tag-link">Học</a>
                                        <a href="/tags/Đại số 10" class="tag-link">Đại số 10</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/ba-tan-vlog-o-huyen-nao-bac-giang-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/zqfW5q-JeBQ/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLCUg6e8gzY710MJUVDW5kZE-QBVCg" alt="Bà tân vlog ở huyện nào bắc giang năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/ba-tan-vlog-o-huyen-nao-bac-giang-nam-2024">Bà tân vlog ở huyện nào bắc giang năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/h-2a-h-2b-h-1b-perm-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/YCa9nFmZ0h8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCoZCo9UzEN482fr1E6-e0jo-aiSw" alt="H-2a h-2b h-1b perm là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/h-2a-h-2b-h-1b-perm-la-gi-nam-2024">H-2a h-2b h-1b perm là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/visa h-2b" class="tag-link">visa h-2b</a>
                                        <a href="/tags/H1B lottery" class="tag-link">H1B lottery</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	 <div class="max-width:840px">					
<ins class="adsbygoogle"
     style="display:block"
     data-ad-format="fluid"
     data-ad-layout-key="-fb-44+c1-1p-ns"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="7655066491"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/dj-viet-nam-co-nam-top-the-gioi-ko-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/3_FrtB3FUiE/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAGBd4g-gi1w8uzgt0tdJOefosdvw" alt="Dj viet nam co nam top the gioi ko năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/dj-viet-nam-co-nam-top-the-gioi-ko-nam-2024">Dj viet nam co nam top the gioi ko năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Top List" class="tag-link">Top List</a>
                                        <a href="/tags/Top" class="tag-link">Top</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/giai-bai-tap-triet-2-phan-hoc-thuyet-gia-tri-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/a3NW6wm5_yk/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLD0Ky7grfdTl3I8lIF6rRuhYm0_xg" alt="Giải bài tập triết 2 phần học thuyết giá trị năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/giai-bai-tap-triet-2-phan-hoc-thuyet-gia-tri-nam-2024">Giải bài tập triết 2 phần học thuyết giá trị năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Học" class="tag-link">Học</a>
                                        <a href="/tags/Cryto" class="tag-link">Cryto</a>
                                        <a href="/tags/Giá " class="tag-link">Giá </a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/huou-la-loai-thu-an-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/bMHiy_E9wpY/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDYEaRIz9VDA7X6oN8oJzIrr5UBqg" alt="Hươu là loài thú ăn gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/huou-la-loai-thu-an-gi-nam-2024">Hươu là loài thú ăn gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bai-tap-tinh-huong-luat-so-huu-tri-tue-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/9h_fhEARKaE/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAc-Cjj68tBpCUrcb9pX3F6GHlM8A" alt="Bài tập tình huống luật sở hữu trí tuệ năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bai-tap-tinh-huong-luat-so-huu-tri-tue-nam-2024">Bài tập tình huống luật sở hữu trí tuệ năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/nhiet-do-duoi-10-do-tieng-anh-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/pZq-bGwT1P8/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4AZQDgALQBYoCDAgAEAEYZSBdKFEwDw==&rs=AOn4CLA80WQcUapX8Tp9m5sdSqFNRe9YAg" alt="Nhiệt độ dưới 10 độ tiếng anh là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/nhiet-do-duoi-10-do-tieng-anh-la-gi-nam-2024">Nhiệt độ dưới 10 độ tiếng anh là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Tiếng anh" class="tag-link">Tiếng anh</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/cac-bai-van-hay-ta-nguoi-lop-5-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/YqEqakb_jyU/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLB6W31MCCwigOa5lMJtqmKXeLvVig" alt="Các bài văn hay tả người lớp 5 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/cac-bai-van-hay-ta-nguoi-lop-5-nam-2024">Các bài văn hay tả người lớp 5 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/lam-chinh-tri-cua-xa-hoi-chu-nghia-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/nG6vMWVpO4U/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBJxckD_nmU5_RoYvE5S70u6jCqeg" alt="Làm chính trị của xã hội chủ nghĩa là gì năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/lam-chinh-tri-cua-xa-hoi-chu-nghia-la-gi-nam-2024">Làm chính trị của xã hội chủ nghĩa là gì năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/là ai" class="tag-link">là ai</a>
                                        <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a>
                                        <a href="/tags/Là gì" class="tag-link">Là gì</a>
                                        <a href="/tags/Ngôn ngữ" class="tag-link">Ngôn ngữ</a>
                                        <a href="/tags/Nghĩa là gì" class="tag-link">Nghĩa là gì</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bai-tap-on-vat-li-hoc-ki-2-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/rEKhEEJDNE8/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBDEx3H92Tck-m5Sm7VU2_eOKvyaw" alt="Bài tập ôn vật lí học kì 2 năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bai-tap-on-vat-li-hoc-ki-2-nam-2024">Bài tập ôn vật lí học kì 2 năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a>
                                        <a href="/tags/Học" class="tag-link">Học</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/trung-btaam-hanh-chinh-cong-thang-binh-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/Ex38DDpKpFA/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBvigvU3Z6hzG45SX8zwXebsOzdcw" alt="Trung btaam hành chính công thăng bình năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/trung-btaam-hanh-chinh-cong-thang-binh-nam-2024">Trung btaam hành chính công thăng bình năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	<div class="media media-card  rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray">
    <div class="media-image">
       <a href="/bai-tap-tu-dien-lop-11-co-dap-an-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px"  data-orgimg="https://i.ytimg.com/vi/-1-nRLDec_E/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYXSBlKB0wDw==&rs=AOn4CLAEYFUsWbrkCZ0fOROsf-nPqRrXIw" alt="Bài tập tụ điện lớp 11 có đáp án năm 2024"></a>
    </div>
    <div class="media-body">
        <h5 class="mb-2 fw-medium"><a href="/bai-tap-tu-dien-lop-11-co-dap-an-nam-2024">Bài tập tụ điện lớp 11 có đáp án năm 2024</a></h5>
        <p class="mb-2 truncate lh-20 fs-15"></p>
        <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0">
            <div class="tags">
                                    <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a>
                                        <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a>
                                        <a href="/tags/Bài tập" class="tag-link">Bài tập</a>
                                        <a href="/tags/Tụ điện là" class="tag-link">Tụ điện là</a>
                                </div>

        </div>
    </div>
</div><!-- end media -->
	

</div>
</div></div>
					</div>
                   
                </div>    
                </div><!-- end question-main-bar -->
            </div><!-- end col-lg-9 -->
            <div class="postContentRight">
                <div class="sidebar">
					<div class="ad-card">
    <h4 class="text-gray text-uppercase fs-13 pb-3 text-center">Quảng Cáo</h4>
    <div class="mb-4 mx-auto" style="text-align:center">
      <ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-4987931798153631"
     data-ad-slot="8742637402"
     data-ad-format="auto"
     data-full-width-responsive="true">
	 </ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
    </div>
</div>
                    <div class="card card-item">
    <div class="card-body">
        <h3 class="fs-17 pb-3">Có thể bạn quan tâm</h3>
        <div class="divider"><span></span></div>
        <div class="sidebar-questions pt-3">
                        <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/nganh-thiet-ke-ben-nuoc-ngoai-goi-la-gi-nam-2024">Ngành thiết kế bên nước ngoài gọi là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/EnterprisingDepletion" class="author">EnterprisingDepletion</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bai-van-tieng-anh-ta-ve-ngoi-nha-mo-uoc-nam-2024">Bài văn tiếng anh tả về ngôi nhà mơ ước năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/FeatheryAssociation" class="author">FeatheryAssociation</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/noi-am-va-nuot-am-trong-tieng-anh-la-gi-nam-2024">Nối âm và nuốt âm trong tiếng anh là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/CentralizedLineup" class="author">CentralizedLineup</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/18-trung-roi-xanh-dinh-duong-bang-cach-nao-nam-2024">18 trùng roi xanh dinh dưỡng bằng cách nào năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/UnsympatheticNucleus" class="author">UnsympatheticNucleus</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/fix-loi-dau-cach-cong-thuc-trong-excel-nam-2024">Fix lỗi dấu cách công thức trong excel năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/TroublingRapport" class="author">TroublingRapport</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/cho-noi-la-loai-hinh-du-lich-gi-nam-2024">Chợ nổi là loại hình du lịch gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/ManicuredHomer" class="author">ManicuredHomer</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/php-la-viet-tat-cua-tu-gi-nam-2024">Php là viết tắt của từ gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/UnjustifiedPlurality" class="author">UnjustifiedPlurality</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bai-tap-giao-duc-cong-dan-9-bai-13-nam-2024">Bài tập giáo dục công dân 9 bai 13 năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/PitilessColors" class="author">PitilessColors</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bai-tap-mo-rong-ve-thu-tu-ke-nam-2024">Bài tập mở rộng về thứ tự kế năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/SpinningPatchwork" class="author">SpinningPatchwork</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				
                <div class="media-body">
                    <h5><a href="https://thuonline.com/chi-phi-bao-hiem-cong-trinh-tinh-nhu-nao-nam-2024">Chi phí bảo hiểm công trình tính như nào năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/StrenuousSimplicity" class="author">StrenuousSimplicity</a>
                    </small>
                </div>
            </div><!-- end media -->
			        </div><!-- end sidebar-questions -->
    </div>
</div><!-- end card -->
                    <div class="card card-item cardTopList">
    <div class="card-body">
        <h3 class="fs-17 pb-3">Toplist được quan tâm</h3>
        <div class="divider"><span></span></div>
        <div class="sidebar-questions pt-3">

                        <div class="media media-card media--card media--card-2">
				<div class="topListNum">#1</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-3-ban-dang-ky-thuc-hien-trach-nhiem-neu-guong-cua-can-bo-dang-vien-nam-2022-2023">Top 3 bản đăng ký thực hiện trách nhiệm nêu gương của cán bộ, đảng viên năm 2022 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#2</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-10-loi-chuc-mung-sinh-nhat-con-trai-3-tuoi-2023">Top 10 lời chúc mừng sinh nhật con trai 3 tuổi 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#3</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-8-tu-ghep-trong-bai-viet-nam-que-huong-ta-2023">Top 8 từ ghép trong bài việt nam quê hương ta 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#4</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-17-r-la-gi-trong-vat-ly-10-2023">Top 17 r la gì trong vật lý 10 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#5</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-6-cach-tra-loi-nhieu-cau-hoi-cung-luc-tren-instagram-2023">Top 6 cách trả lời nhiều câu hỏi cùng lúc trên instagram 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#6</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-8-sua-tuoi-tach-beo-khong-duong-vinamilk-2023">Top 8 sữa tươi tách béo không đường vinamilk 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#7</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-8-cuong-do-dong-dien-khong-doi-duoc-xac-dinh-bang-cong-thuc-nao-sau-day-2023">Top 8 cường độ dòng điện không đổi được xác định bằng công thức nào sau đây 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#8</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-8-y-nghia-cua-cau-gan-vang-da-sat-2023">Top 8 ý nghĩa của câu gan vàng dạ sắt 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
				<div class="topListNum">#9</div>
                <div class="media-body">
                    <h5><a href="https://thuonline.com/toplist-top-8-mau-banh-sinh-nhat-cho-be-trai-3-tuoi-2023">Top 8 mẫu bánh sinh nhật cho be trai 3 tuổi 2023</a></h5>
                    <small class="meta text-right">6 tháng trước</small>
                </div>
            </div><!-- end media -->
			            
        </div><!-- end sidebar-questions -->
    </div>
</div><!-- end card -->
					<div class="ad-card">
    <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4>
    <div class="mb-4 mx-auto">
      <ins class="adsbygoogle"
     style="display:inline-block;width:300px;height:600px"
     data-ad-client="ca-pub-"
     data-ad-slot=""
     data-ad-format="auto"
     data-full-width-responsive="true"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
    </div>
</div>
                    
<div class="card card-item">
    <div class="card-body">
        <h3 class="fs-17 pb-3">Xem Nhiều</h3>
        <div class="divider"><span></span></div>
        <div class="sidebar-questions pt-3">

                        <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bai-tap-nguyen-ham-tich-phan-co-loi-giai-nam-2024">Bài tập nguyên hàm tích phân có lời giải năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/AstoundingMahogany" class="author">AstoundingMahogany</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bo-de-on-tap-hoc-ky-1-toan-lop-3-nam-2024">Bộ đề ôn tập học kỳ 1 toán lớp 3 năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/UnresolvedBattling" class="author">UnresolvedBattling</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bang-lai-xe-co-thoi-han-tieng-anh-la-gi-nam-2024">Bằng lái xe có thời hạn tiếng anh là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/HaltingConsul" class="author">HaltingConsul</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/so-lieu-thu-cap-la-gi-nam-2024">Số liệu thứ cấp là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/RustedAggression" class="author">RustedAggression</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/bai-tap-he-so-huu-dung-co-loi-giai-nam-2024">Bài tập hệ số hữu dụng có lời giải năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/PhonyDeparture" class="author">PhonyDeparture</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/loi-google-chrome-khong-bat-link-idm-sinhvienit-nam-2024">Lỗi google chrome không bắt link idm sinhvienit năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 tuần trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/LeafyAttraction" class="author">LeafyAttraction</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/phuong-trinh-vo-nghiem-co-tap-nghiem-la-gi-nam-2024">Phương trình vô nghiệm có tập nghiệm là gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">5 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/SmellyEndangerment" class="author">SmellyEndangerment</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/dau-bung-trai-ngang-ron-la-benh-gi-nam-2024">Đau bụng trái ngang rốn là bệnh gì năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">3 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/BoyishObserver" class="author">BoyishObserver</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/ta-bai-van-con-mua-lop-5-ngan-nam-2024">Tả bài văn cơn mưa lớp 5 ngắn năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">1 ngày trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/VeiledTracing" class="author">VeiledTracing</a>
                    </small>
                </div>
            </div><!-- end media -->
			            <div class="media media-card media--card media--card-2">
                <div class="media-body">
                    <h5><a href="https://thuonline.com/cac-bai-toan-ve-hinh-lang-tru-dung-nam-2024">Các bài toán về hình lăng trụ đứng năm 2024</a></h5>
                    <small class="meta">
                        <span class="pr-1">13 giờ trước</span>
                        <span class="pr-1">. bởi</span>
                        <a href="https://thuonline.com/author/ExtremeProvocation" class="author">ExtremeProvocation</a>
                    </small>
                </div>
            </div><!-- end media -->
			            
        </div><!-- end sidebar-questions -->
    </div>
</div><!-- end card -->					<div class="ad-card">
    <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4>
    <div class="mb-4 mx-auto" style=" text-align: center">
<div id='div-gpt-ad-1657246837997-0' style='min-width: 300px; min-height: 600px;'>
  <script>
    googletag.cmd.push(function() { googletag.display('div-gpt-ad-1657246837997-0'); });
  </script>
</div>
	  
    </div>
</div>
                    										
					
			
                   
                </div><!-- end sidebar -->
            </div><!-- end col-lg-3 -->
        </div><!-- end row -->
    </div><!-- end container -->
</section><!-- end question-area -->

<!-- ================================
         END QUESTION AREA
================================= -->
<script>var questionId ='cach-dong-goi-fiel-c-windows-form'</script>
<script>var postTime ='2022-11-06T21:40:32.954Z'</script>
<script>var siteDomain ='thuonline.com'</script>
<script type="text/javascript" src="https://thuonline.com/dist/js/pages/comment.js"></script>

<!-- ================================
         END FOOTER AREA
================================= -->
<section class="footer-area pt-80px bg-dark position-relative">
    <span class="vertical-bar-shape vertical-bar-shape-1"></span>
    <span class="vertical-bar-shape vertical-bar-shape-2"></span>
    <span class="vertical-bar-shape vertical-bar-shape-3"></span>
    <span class="vertical-bar-shape vertical-bar-shape-4"></span>
    <div class="container">
        <div class="row">
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Chúng tôi</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="/about.html">Giới thiệu</a></li>
                        <li><a href="/contact.html">Liên hệ</a></li>
                        <li><a href="/contact.html">Tuyển dụng</a></li>
                        <li><a href="/contact.html">Quảng cáo</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Điều khoản</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="/privacy-statement.html">Điều khoản hoạt động</a></li>
                        <li><a href="/terms-and-conditions.html">Điều kiện tham gia</a></li>
                        <li><a href="/privacy-statement.html">Quy định cookie</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Trợ giúp</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="/contact.html">Hướng dẫn</a></li>
                        <li><a href="/contact.html">Loại bỏ câu hỏi</a></li>
                        <li><a href="/contact.html">Liên hệ</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
            <div class="col-lg-3 responsive-column-half">
                <div class="footer-item">
                    <h3 class="fs-18 fw-bold pb-2 text-white">Mạng xã hội</h3>
                    <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white">
                        <li><a href="#"><i class="fab fa-facebook-f mr-1"></i> Facebook</a></li>
                        <li><a href="#"><i class="fab fa-twitter mr-1"></i> Twitter</a></li>
                        <li><a href="#"><i class="fab fa-linkedin mr-1"></i> LinkedIn</a></li>
                        <li><a href="#"><i class="fab fa-instagram mr-1"></i> Instagram</a></li>
                    </ul>
                </div><!-- end footer-item -->
            </div><!-- end col-lg-3 -->
        </div><!-- end row -->
    </div><!-- end container -->
    <hr class="border-top-gray my-5">
    <div class="container">
        <div class="row align-items-center pb-4 copyright-wrap">
           
            <div class="col-6">
               <a href="//www.dmca.com/Protection/Status.aspx?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120am.png?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953"  width="123px" height="21px" alt="DMCA.com Protection Status" /></a>  <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script>
            </div>
			<!-- end col-lg-6 --><div class="col-6">
				
                <div class="copyright-desc text-right fs-14">
					<div>Bản quyền © 2021 <a href="https://thuonline.com">Blog của Thư</a> Inc.</div>
				</div>
            </div><!-- end col-lg-6 -->
        </div><!-- end row -->
    </div><!-- end container -->
</section><!-- end footer-area -->

<!-- ================================
          END FOOTER AREA
================================= --><script>
  $( document ).ready(function() {
    setTimeout(showMoreButton, 3000);
    function showMoreButton(){
      let minheight = 1000;
      minheight = parseInt($("#entryContent").innerHeight())/3;
      $("#entryContent").css('min-height', minheight).css('max-height', minheight).css('overflow', 'hidden');
      $("#readmore_content").click(function(){
        $("#entryContent").css('min-height', '').css('max-height', '').css('overflow', '');
        $(".readmore_content_exists").css('display', 'none');
      })
    }
});
</script>

<!-- template js files -->
<!-- start back to top -->
<div id="back-to-top" data-toggle="tooltip" data-placement="top" title="Lên đầu trang">
    <img alt="" src="/dist/images/svg/arrow-up_20.svg">
</div>
<!-- end back to top -->
<script src="https://thuonline.com/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://thuonline.com/dist/js/moment.js"></script>
<script src="https://thuonline.com/dist/js/read-more.min.js"></script>
<script src="https://thuonline.com/dist/js/main.js?v=6"></script>
<!-- Google Tag Manager (noscript) -->

<script type="text/javascript">
    (function(c,l,a,r,i,t,y){
        c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
        t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
        y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
    })(window, document, "clarity", "script", "jxuz46z39u");
</script>

</body>
</html>