Click here to Skip to main content
15,920,005 members

Comments by Grid-Code (Top 8 by date)

Grid-Code 29-Oct-21 9:05am View    
Hi Richard

Much appreciate your input and understand the functionality, Reload a more viable method to ensure memory is not been chewed up in the backend of application.
Grid-Code 23-Oct-21 2:31am View    
Hi RickZeeland

Appreciate the c# Snip
So New Datatable disposes the Prior one - Brilliant
Grid-Code 18-Mar-21 10:58am View    
Hi Gerry

Server application already developed, aiming to have it to also be able to run on Azure - Separate sessions for clients.
Dropbox of one drive could work if i was the host, but this is an engineering design package - file sizes huge - at times 1.5 GB - retail to external end users, similar in concept to Autodesk Vault.
Did really think of Dropbox , One drive for a while - but then also committed to that if retailed?
Maybe a way could be to make the end user download an executable file that can retrieve the Bytes() - compile and then save it - The simplest way :)

Appreciate the answer
Best regards
Richard

Grid-Code 18-Mar-21 10:51am View    
Hi Richard

My Thoughts we pretty much the same that i would have to develop a service that runs on the server, then intercepts the mail sent link , compiles the file then streams it back as a download.
Will have to research and hopefully find a general method.

Best Regards
Richard
Grid-Code 19-Aug-20 4:58am View    
Hi Gerry Schmitz

Private Sub PBx_DragOver(sender As Object, e As DragEventArgs) Handles PBx.DragOver
PBx_ImgIns = New Point(CInt((CSng(Me.PBx.Image.Width) / Me.PBx.Width) * e.X), CInt((CSng(Me.PBx.Image.Height) / Me.PBx.Height) * e.Y))
Console.WriteLine("x : " & PBx_ImgIns.x & " y : " & PBx_ImgIns.y)
End Sub

The above gives e.X & e.Y , but incorrect what i had read up on is that e = Screen Point Location - and not the PBx(PictureBox) Even though PBx.DragOver e not related to PBx Control?
** Trying too get the image pixel point - mouse position
Thanks for the Tip above
Cheers Richard