[ECH]JamHighlight
[ECH]JamHighlight
CC#
Created by [ECH]JamHighlight on 3/25/2025 in #help
FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient, Version=0.0.0.0, Cult
Ok so if you encounter this issue future viewers, you are mostly likely using a sql connection package that is not compatible with your net project.
12 replies
CC#
Created by [ECH]JamHighlight on 3/25/2025 in #help
FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient, Version=0.0.0.0, Cult
No description
12 replies
CC#
Created by [ECH]JamHighlight on 3/25/2025 in #help
FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient, Version=0.0.0.0, Cult
Ok so it appears to be compatiability issues.
12 replies
CC#
Created by [ECH]JamHighlight on 3/25/2025 in #help
FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient, Version=0.0.0.0, Cult
Alr thx
12 replies
CC#
Created by [ECH]JamHighlight on 3/25/2025 in #help
FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient, Version=0.0.0.0, Cult
Hm when I saw it on sparknotes I didnt see anyone disapproving
12 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
async void callweatherapi()
{
string apiKey = "kanyecooked";
string city = Citysearch.Text;
string apiUrl = $"https://api.openweathermap.org/data/2.5/weather?q={city}&appid={apiKey}&units=metric";
using (HttpClient client = new HttpClient())
{
if (client == null)
{
Debug.WriteLine("No client");
}
else

{
try
{
HttpResponseMessage response = await client.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string json = await client.GetStringAsync(apiUrl);
if (json != null)
{
JObject weatherdata = JObject.Parse(json);
tempinfo.Text = weatherdata["main"]["temp"].ToString();
windspeedinfo.Text = weatherdata["wind"]["speed"].ToString();
humidityinfo.Text = weatherdata["main"]["humidity"].ToString();
cityinfo.Text = city;
countryinfo.Text = weatherdata["sys"]["country"].ToString();

Debug.WriteLine($"json {json}");

}
else
{
Debug.WriteLine("empty");
}
}
catch (Exception ex)
{
Console.WriteLine("Did not work" + ex.Message);
}

}
}
}
async void callweatherapi()
{
string apiKey = "kanyecooked";
string city = Citysearch.Text;
string apiUrl = $"https://api.openweathermap.org/data/2.5/weather?q={city}&appid={apiKey}&units=metric";
using (HttpClient client = new HttpClient())
{
if (client == null)
{
Debug.WriteLine("No client");
}
else

{
try
{
HttpResponseMessage response = await client.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string json = await client.GetStringAsync(apiUrl);
if (json != null)
{
JObject weatherdata = JObject.Parse(json);
tempinfo.Text = weatherdata["main"]["temp"].ToString();
windspeedinfo.Text = weatherdata["wind"]["speed"].ToString();
humidityinfo.Text = weatherdata["main"]["humidity"].ToString();
cityinfo.Text = city;
countryinfo.Text = weatherdata["sys"]["country"].ToString();

Debug.WriteLine($"json {json}");

}
else
{
Debug.WriteLine("empty");
}
}
catch (Exception ex)
{
Console.WriteLine("Did not work" + ex.Message);
}

}
}
}
Completed for those who may need in the future.
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
try
{
HttpResponseMessage response = await client.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string json = await client.GetStringAsync(apiUrl);
if (json != null)
{
JObject weatherdata = JObject.Parse(json);
tempinfo.Text = weatherdata["main"]["temp"].ToString();
Debug.WriteLine($"json {json}");

}
try
{
HttpResponseMessage response = await client.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string json = await client.GetStringAsync(apiUrl);
if (json != null)
{
JObject weatherdata = JObject.Parse(json);
tempinfo.Text = weatherdata["main"]["temp"].ToString();
Debug.WriteLine($"json {json}");

}
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
I just had lines that weren't needed
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
I got it working
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
Alr
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
U right u right
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
could that of been causing the issue?
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
I saw a post saying u cannot update ui from a background thread
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
I just have to find a way to convert it now
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
What I want the weather details just not formated
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
try
{
HttpResponseMessage response = await client.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string json = await client.GetStringAsync(apiUrl);
if (json != null)
{
Debug.WriteLine($"json {json}");
}
else
{
Debug.WriteLine("empty");
}
}
try
{
HttpResponseMessage response = await client.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string json = await client.GetStringAsync(apiUrl);
if (json != null)
{
Debug.WriteLine($"json {json}");
}
else
{
Debug.WriteLine("empty");
}
}
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
So its working things are going wrong when I try to convert it
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
Ok
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
It just keeps throwing me the exception
36 replies
CC#
Created by [ECH]JamHighlight on 3/18/2025 in #help
✅ Exception being thrown when attempting to use Weather api
Im sure this discord is full of kind individuals who arent weird
36 replies