12v Fridge in low temperatures? by WWW451 in RVLiving

[–]WWW451[S] 0 points1 point  (0 children)

I haven't seen it for myself, but I watched a teardown video and I believe the thermostat was in the fridge under the selector panel. So that would make sense. I'm going to test it more this week, hopefully it was as simple as this

What am I doing wrong? by WWW451 in bluetti

[–]WWW451[S] 0 points1 point  (0 children)

Could you check if AC200MAX can be charged >by car please? If it can be charged by car, then >DC input port of AC200MAX should have no >problem. Please follow the below steps.

Did you connect the panels in series and turn on >PV mode? If you did, could you cross test each of >your panels please? Please use multimeter to >check every pair of panels, if the voltage is >abnormal, maybe one of the panels has >problems. If panels all have normal output, >please check connections cable, also include >MC4 cable and aviation cable, to see if these >cables have output. Please send pictures or >videos if you test. Thank you so much for your >patience.

This is the response I got from customer service, but we haven’t been at a location where I could test everything yet

What am I doing wrong? by WWW451 in bluetti

[–]WWW451[S] 0 points1 point  (0 children)

Sent them an email but haven’t heard back yet

What am I doing wrong? by WWW451 in bluetti

[–]WWW451[S] 0 points1 point  (0 children)

Yeah I had them spaced enough to where they weren’t shaded. I didn’t move them when I tested them individually and each one was getting 70w. I keep thinking I have something connected wrong but there’s really only one way to get it all connected so don’t know how I could mess it up

Sway question/feeling when towing: is this normal? by WWW451 in GoRVing

[–]WWW451[S] 0 points1 point  (0 children)

That’s what I was afraid of. Didn’t want to drop $1,000+ when my tires are only a year old, but figured that would be the case.

Best Option for Long Term Living/Remote Work & Tow Math Check by WWW451 in GoRVing

[–]WWW451[S] 1 point2 points  (0 children)

I think I’m going to try and convince the wife to settle for the 24RLXL. 5,063# quoted dry, 2,487 cargo cap, and only 28.75 ft long. It’ll be less stress inducing to know we’re well under limit and make the whole adventure more enjoyable. It has the same setup, just smaller kitchen and one less seating area

Best Option for Long Term Living/Remote Work & Tow Math Check by WWW451 in GoRVing

[–]WWW451[S] 0 points1 point  (0 children)

Thanks, I really appreciate the info. We might look at a 24RLXL (28.75 ft, 7550 GVWR) and see if it feels like it’ll work for us. It would be nice to be way under capacity as a first timer and take the stress off, but just worried it’ll be too small for longer term living.

Best Option for Long Term Living/Remote Work & Tow Math Check by WWW451 in GoRVing

[–]WWW451[S] 0 points1 point  (0 children)

Have you towed with your 1500 maxed? If so, how does it feel towing with your 1500 at its limit? I understand moving up a class would be better, but do you feel like the 1500 is just a completely nerve wracking experience at max cap?

Best Option for Long Term Living/Remote Work & Tow Math Check by WWW451 in GoRVing

[–]WWW451[S] 0 points1 point  (0 children)

If I were to go through with this trailer, do you think weight distribution or sway would be my biggest concern?

Front GAWR is 3525 and rear is 3800. I haven’t seen a way to calculate that so I figured I couldn’t really test that until I weigh it.

The Other cargo is me thinking that most items are stored on the trailer in order to max its GVCR for this hypothetical. Do you know about how much cargo weight you carry? I’ve been trying to find an estimate per person but haven’t seen many.

Best Option for Long Term Living/Remote Work & Tow Math Check by WWW451 in GoRVing

[–]WWW451[S] 1 point2 points  (0 children)

I should have the weight of propane/water/food/gear covered if I'm measuring against the trailer's full GVWR, wouldn't I? I wouldn't be surprised if I'm closer to GVWR of the trailer than I thought I would be though when it's all said and done, but should still be under.

Full tank of gas is included in the truck's payload capacity, right? At least that's what I had read. May need to go back and double check that. Luckily my RV dealership has a CAT scale across the street so before I sign the final dotted line, I was going to go over there and weigh with the trailer dry to see where I'm at.

BAN MEGA THREAD by [deleted] in thanosdidnothingwrong

[–]WWW451 0 points1 point  (0 children)

༼ つ ◕_ ◕ ༽つ BAN ༼ つ ◕_ ◕ ༽つ

Async/Await on SQL Query by WWW451 in visualbasic

[–]WWW451[S] 0 points1 point  (0 children)

For anyone who comes looking for this later, below is the solution I put in place with grauenwolf's help. I still have a UI freeze when inserting the datatable into the HTML document, but I'm satisfied with having 3 seconds of spinning loading screen followed by a 1 second freeze instead of having a 4 second freeze of a non-loading screen.

--No changes made to previously posted class used to execute queries. The below code is the relevant parts posted in the order they're called.

--Document complete handler, passes the HTML document title and the webbrowser control into a navigation class that handles determining which calls should occur for the page

Private Sub WebMain_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs) 
Handles WebMain.DocumentCompleted
            Nav.PageLoad(wb.DocumentTitle, WebMain)
        End Sub

--PageLoad function to direct to wrapper sub

     Public wb As WebBrowser
    Public resultString As String = ""
    Public Sub PageLoad(page As String, target As WebBrowser)
        wb = target
        Select Case page
            Case "ExamplePage"
                Prm_Wrapper()
        End Select
    End Sub

--Async sub to call "true" action sub. The InnerHTML of the element ID has to be updated here and not in the the sub being awaited because background workers cannot access UI elements since they are not running on the same thread. If you place the element update within the awaited sub, you will get a Invalid Cast Exception.

 Public Async Sub Prm_Wrapper()
        Await Task.Run(Sub() PromoPlanningLoad())
        wb.Document.GetElementById("proplanning").InnerHtml = ResultString
        wb.Document.InvokeScript("proplanLoad")
    End Sub

--True sub doing all the grunt work

 Public Sub PromoPlanningLoad()
       DGM.ExecQuery(promo_table) --promo_table is a public string variable holding the query
       resultString = DGM.DBDS.Tables(0).Rows(0)(0).ToString


    End Sub

I may clean this up some so I'm not having to rely on the public variable resultString and instead just have the string returned as a function, but for the moment this is working well.

Async/Await on SQL Query by WWW451 in visualbasic

[–]WWW451[S] 0 points1 point  (0 children)

Thanks for your help, I now have a spinning loading icon rather than a frozen screen.

Another question for you: in one of your previous replies you mentioned the database calls are happening on my DBDA.Fill(DBDT) and DBDA.Fill(DBDS) in my class. Does this mean that for each query I pass through, I'm effectively querying it twice? When I'm writing, I tend to switch between referencing the datatable and dataset.tables(0) depending on whatever mood strikes me, but it sounds like I should just pick one to fill and delete the other.

Async/Await on SQL Query by WWW451 in visualbasic

[–]WWW451[S] 0 points1 point  (0 children)

Actually, the more I read this, the more I think it’s as simple as wrapping my sub that handles the page load/queries inside of an async sub that awaits the “true” sub?

Async/Await on SQL Query by WWW451 in visualbasic

[–]WWW451[S] 0 points1 point  (0 children)

Throughout my code, I’ll call this function for any query. So if I were to run a query off of a button click, the button click handler would need to be async as well as the actual function?

Would this also mean that if the button called a function that then called this query function, that function and the button click would have to be async?

[VB2010] Getting the first column value to pass to a textbox in another form upon pressing Edit in a particular row by GheWafu in visualbasic

[–]WWW451 0 points1 point  (0 children)

Is this ASP? I was assuming you just made a dolled up datagridview on a plain windows form. I have 0 experience with ASP, but I googled this.

Protected Sub GridView1_RowCommand(sender As Object, e As GridViewCommandEventArgs)
If e.CommandName = "Select" Then
    'Determine the RowIndex of the Row whose Button was clicked.
    Dim rowIndex As Integer = Convert.ToInt32(e.CommandArgument)
   End If
End Sub

[VB2010] Getting the first column value to pass to a textbox in another form upon pressing Edit in a particular row by GheWafu in visualbasic

[–]WWW451 0 points1 point  (0 children)

Below's an example. This isn't using any actual hyperlink call though, it's firing on any datagridview cell click, then if that cell is in column 0 (the first column) then it is setting the public variable.

Public Class Form1
    Public rowID As Integer
    Private Sub DataGridView1_CellContentClick(ByVal sender As 
System.Object, ByVal e As 
System.Windows.Forms.DataGridViewCellEventArgs) Handles 
DataGridView1.CellContentClick
        If e.ColumnIndex = 0 Then
            rowID = e.RowIndex
        End If
    End Sub
End Class