• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

C++ Update logs from website into game launcher

Joriku

Working in the mines, need something?
Joined
Jul 16, 2016
Messages
1,085
Solutions
15
Reaction score
379
Location
Sweden
YouTube
Joriku
Hi,
I am trying to get an update-log box into my current game-launcher which is built with c++.
I've been stuck for a little trying to figure this out, google search after search.
It's currently inside XAML

Lua:
<Grid>
        <Image Stretch="UniformToFill" Source="images/LauncherBackground.png"/>
        <TextBlock Name="VersionText" VerticalAlignment="Bottom" HorizontalAlignment="Right" FontSize="20" Foreground="White" Margin="0, 0, 5, 0"/>
        <Button Name="PlayButton" Content="Checking For Updates" Click="PlayButton_Click" Height="60" FontSize="28" FontWeight="Bold" Foreground="#DDFFFFFF" Margin="0, 0, 0, 15" VerticalAlignment="Bottom" HorizontalAlignment="Center" MinWidth="150" Background="#FFFF9700" Padding="10,1,10,1"/>
        <Grid>
            <TextBlock Margin="23,176,747,119" Background="#FFFF9700"/>
            <TextBlock Height="53" FontSize="36" FontWeight="Bold" Foreground="#DDFFFFFF" Margin="55,117,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" MinWidth="150" Background="#FF46099E" Padding="10,1,10,1" Text="Update Logs" FontFamily="Segoe Script" FontStyle="Normal" RenderTransformOrigin="0.484,1.239"/>
        </Grid>
        <TextBox Height = "246" 
         HorizontalAlignment = "Left" 
         Margin = "33,184,0,0" 
         Name = "textBox1"  
         VerticalAlignment = "Top" 
         Width = "290" Background="#FF2C2B2B" />
    </Grid>
9567d0f1c2df66ce5a3c0cefa41840b3.jpg


Trying to get it..
62679b264bc68f64259e7c34474f28ae.png
 
Back
Top