Hi Andi,
I am sorry but I do not seem to fully understand your scenario.
Could you please attach a sample test case so we can take a closer look ?
Thanks in advance !
Best regards
Frank
Hi Levie,
your workaround works for the base example that i provide.
I have a more complex situation and i investigated further.
I attached to you another example, when there is a column with “Frozen = true” the fill property not working well.
I really appreciate your help
Thanks
Hi Frank,
thank you!
What about the second problem ?
Thanks
Levie,
I’m using 2.0.28, that was released about 1 week or so, and extentions are from may 8, shouldn’t it be included, or only version after 2.0.28?
Hi Luca,
Thank you, will stick with 4.6 or 4.8 for the next 10 years!!, seems that 5.0 will be a mess for me!
Hello,
Yes it’s working local I only have to add > Handles Upload1.Uploaded on the first line.
Creating a directory was already working, but I couldn’t upload files 🙂 thank you so much
I will test later on the server (I have to check where I have to create the share folder), but I guess this will not give any issues.
I will test first the convertor, if I need something in the future.
Private Sub upload1_Uploaded(sender As Object, e As UploadedEventArgs) Handles Upload1.Uploaded
LoadFile(e.Files)
For i As Integer = 0 To e.Files.Count – 1
MessageBox.Show(“Uploaded “ & e.Files(i).FileName)
Next
End Sub
Private Sub LoadFile(files As HttpFileCollection)
If files Is Nothing Then Return
If files.Count = 0 Then
Else
Dim fileStream = File.Create(AppDomain.CurrentDomain.BaseDirectory & “\shared\” + files(0).FileName)
files(0).InputStream.Seek(0, SeekOrigin.Begin)
files(0).InputStream.CopyTo(fileStream)
fileStream.Close()
End If
End Sub
Hi Jorge,
It’s fixed in the latest version.
You can pull the fixed extension from GitHub (and it will be available in future releases): https://github.com/iceteagroup/wisej-extensions?files=1
Thanks for reporting!
Best regards,
Levie
It should be OK.
The big change will be .NET 5 (which is now called .NET Core 3).
Hi Jorge,
It looks like setting ImageSource isn’t working.
Can you set Image property instead of ImageSource in the ImageListEntry[] Array?
I’ll get back to you about ImageSource.
Best regards,
Levie
Hi Bjorn,
It would be something like this (modeled from:https://github.com/iceteagroup/wisej-examples/blob/2.0/UploadFiles/UploadFiles/Window1.cs):
Private Sub upload1_Uploaded(sender As Object, e As UploadedEventArgs)
LoadFile(e.Files)
For i As Integer = 0 To e.Files.Count - 1
MessageBox.Show("Uploaded " & e.Files(i).FileName)
Next
End Sub
Private Sub LoadFile(files As HttpFileCollection)
If files Is Nothing Then Return
If files.Count = 0 Then
Else
Dim fileStream = File.Create(AppDomain.CurrentDomain.BaseDirectory & "\shared\" + files(0).FileName)
files(0).InputStream.Seek(0, SeekOrigin.Begin)
files(0).InputStream.CopyTo(fileStream)
fileStream.Close()
End If
End Sub
You just need to make sure the “shared” folder exists in the correct directory. Use Directory.CreateDirectory() to create if it doesn’t exist.
To convert C# to VB.NET (maybe not perfect, but definitely very helpful! We’re working on VB samples):
Let me know if this works for you.
Best regards,
Levie
Useful Links:
https://github.com/iceteagroup/wisej-examples/blob/2.0/UploadFiles/UploadFiles/Window1.cs
Hi,
I apologize for the delayed response!
I’m attaching a sample theme that should perform your desired behavior.
Take note of the “textbox”: {} definition.
You should modify the theme by changing the “default” state:
“default”: {
“styles”: {
“radius”: 4,
“style”: [ “solid”, “solid”, “solid”, “solid” ],
“css”: “”
},
and the “focused” state:
“focused”: {
“styles”: {
“color”: “focusFrame”,
“css”: “{\”box-shadow\”:\”inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(102,175,233,0.60)\”}”
}
},
Please let me know if this works for your case,
Best regards,
Levie
Is there a location where can I found vb.net examples for wisej functions?
there are probably nice/new functions that I don’t know or aware of.
Hi Huynh,
you can try adding a ToolBarButton with Style “Separator” and SizeMode “Fill”
between your 2 existing ToolbarButtons.
Hope that helps.
Best regards
Frank
Hi,
A note on this, the tab order is only wrong in old browsers, like firefox 56x, newer firefox, chrome, etc, works ok,
Sorry for the noise.
Thank you for your answer.
The way to use a Combobox to show plain text was one I have tried but didn’t get what I want. I would like to have only one DataSource for the DataGridView, just because this DataSource got all values I need. I got all my references and all my data that is respond to the plain data that is shown in the DataGridView. And because I wanted to use DataBinding I wondered if there is no way to get second Level data.
I thought about an option in the designer to set a DataBinding like. “DataPropertyName: tbl_Preisarten.Preisart”
Maybe the added picture will help. You see an object of our table with all references and we also get all data from the other tables.
Kind regards
.
Hi,
you can find a possible solution here:
https://wisej.com/support/question/wait-cursor
Best regards
Frank
Hi Edmond,
It’s working fine for me in the latest build. Are you still having issues?
Let me know.
Best regards,
Levie
Hi Glenn,
You might find it useful to check out the sample in https://wisej.com/support/question/issue-with-bindingsource-addingnew-event
The sample initializes the values of a newly added row.
Let me know if this works for you.
Best,
Levie
Closing the issue because: “The printing is done by the web server. It’s not related to Wisej.”
