All Answers

0 votes

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

0 votes

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

 

0 votes

Hi Frank,

thank you!

 

What about the second problem ?

Thanks

0 votes
In reply to: Custom Wallpaper

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?

0 votes

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!

0 votes

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

0 votes
In reply to: Custom Wallpaper

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

0 votes

It should be OK.

The big change will be .NET 5 (which is now called .NET Core 3).

  • Luca answered Jun 5, 2019 - 1:55 am
0 votes
In reply to: Custom Wallpaper

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

0 votes

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):

http://converter.telerik.com/

Let me know if this works for you.

Best regards,

Levie

 

Useful Links:

https://docs.microsoft.com/en-us/dotnet/api/system.io.directory.createdirectory?view=netframework-4.8

https://github.com/iceteagroup/wisej-examples/blob/2.0/UploadFiles/UploadFiles/Window1.cs

0 votes
In reply to: Change Css

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

0 votes

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.

  • BJORN DE KEYSER answered Jun 4, 2019 - 8:51 pm
  • last active Jun 4, 2019 - 9:59 pm
0 votes

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

0 votes

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.

0 votes

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

0 votes

.

0 votes
In reply to: Cursor in wisej

Hi,

you can find a possible solution here:

https://wisej.com/support/question/wait-cursor

Best regards
Frank

0 votes

Hi Edmond,

It’s working fine for me in the latest build.  Are you still having issues?

Let me know.

Best regards,

Levie

0 votes

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

0 votes

Closing the issue because: “The printing is done by the web server. It’s not related to Wisej.”

Showing 5861 - 5880 of 11k results