Steve,
it´s unclear to me what you´re trying to achieve and what issues you ran into.
Is your application running successfully when started locally, inside Visual Studio?
Where do you want to deploy to?
Have you followed all steps from our documentation?
Please provide screenshots of any error or message you encounter.
Best regards
Frank
I have just tried deploying but I am getting errors when compiling.
It originally said something about a framework missing.
Any advise.
Best Regards,
Steve.
Hi Steve,
you can either use web.config or default.json to store your connection strings:
https://docs.wisej.com/docs/concepts/configuration
For default.json there was just a recent post explaining how:
https://wisej.com/support/question/connect-to-sqlserver-and-read-connectionstrings-in-net-6-0
Best regards
Frank
Alexander,
please provide a compilable test case that helps us to reproduce the issues you have found.
Best regards
Frank
Shady,
our Wisej Mobile Integration extensions creates hybrid applications. It does not make native applications.
If you intend to create a native apk with Android Studio and Java refer to Android Studio documentation, it´s not a Wisej issue.
Best regards
Frank
Hi Paul,
in my Wisej .Net 6.0 Project I put the connection strings in Default.json like this:
{
...
},
"settings": {
"dbConnectionLiveString": "Server=xxx;Database=xxx;user id=xxx;password=xxx;",
"dbConnectionTestString": "Server=xxx;Database=yyy;user id=xxx;password=xxx;"
}
}
Without further ado you can access the strings via Wisej.Web,Application class:
var dbConnectionString = Application.Configuration.Settings.dbConnectionLiveString;
Cheers, Gerhard
I public by via FileFolder and OneDrive.
In App Service tool Code editor I see, in App Service have files: Default.html and Default.json files.
Hi Ainras,
If you used the VS publishing tools to deploy to Azure App Services then you’re probably missing the Default.json and Default.html files.
You’ll have to upload them to your service share via FTP.
HTH,
Alaa
Hi Shady,
Thanks for reaching out!
We’ve received your request and will reach out soon.
Thanks for your patience!
Best,
Levie
Hi Branko
Today was relased WisejNet 3.0.11 and also the fix on RibbonBar extension that resolve the issue that you comment us, thanks
Here let a little sample and a video gif of it
HTH
Hi
I attach the report sample in Net6
When you compile it an you can see an error, but this are for net48 and can go ahead.
Also can see the output in the pic attached
HTH
Paul
Dear friends, once again I’m back seeking for your support. Alaa, thank you for your support but it seems my labor is in vain. It seems the reportviewer only loads the report under the asPxWebDocumentViewerWrapper1_LoadComplete!
I’ve tried to call the Update method in the ASPxWebDocumentViewerWrapper Class under the under the OpenReport Method but the behavior of unending loops still occurs.
I’ve reattached the sample project with a database file in the bin folder. Its a VistaDb File and the connection string can be changed in the WebConfig file. I hope you shall be able to reference several required DevExpress Libraries as I cannot attach them here because of the file size limitations.
I’m eagerly waiting for your support.
Thank you
Dear Nagabo,
I believe that there’s a mistake in my answers.
ASP.NET wrapped controls cannot be used directly in Wisej events, everything that uses an ASP.NET control has to be done inside the control’s event:load, preload, etc…
So you can either:
A- Put your code inside the wrapped ASP.NET life cycle events
B- Use a JavaScript based control.
Sadly, we can’t change how those type of controls work.
For more info you can go to this link here: https://docs.microsoft.com/en-us/previous-versions/aspnet/ms178472(v=vs.100)
HTH,
Alaa
Dear Alaa,
Thank you for your support.
Thanks
Hi Nicholas
Sorry for the late answer
Sadly, browsers don’t let you browser a user’s computer and
the OpenFileDialog maps drive units on server, not user pc.
But for do your goal, there are three options
1) upload files using the Upload control or drag and drop a file (see docs online) and process it on server
2) user the https://www.nuget.org/packages/Wisej-3-ClientFileSystem extension which uses the browser’s file access api
The client file access api is documented on the mozilla web site.
3) contact sales for custom support, if our goal is more complex and is outside of our free support scope.
HTH
Paul
Hi Ngabo,
The sample you provided won’t work for us because it’s missing the DB file.
You can try adding a asPxWebDocumentViewerWrapper1.Update() or asPxWebDocumentViewerWrapper1.Refresh() to update or refresh your Report Viewer.
And for the “two tabs” issue, I couldn’t reproduce it, perhaps you’re using Application.Navigate() somewhere within your app?
HTH,
Alaa
Hi Nicholas,
I just wanted to also point out that with this here you’re going to create a Control for each individual cell.
if the grid has 1000 rows it creates a 1000 controls. if it’s just meant to display custom content in a grid cell then the answer in one of your previous posts (https://wisej.com/support/question/display-progrgress-percentage-in-datagridview-column) is the right thing to do.
//
Hi Nicholas,
You can achieve your goal using :
'1
Dim progressBar As New ProgressBar
progressBar.Value = 10
progressBar.Dock = DockStyle.Fill
dataGridView1.Rows(0)(3).Control = prog
or
'2
dataGridView1.Rows(0)(3).Control = New ProgressBar With {.Value = 10, .Dock = DockStyle.Fill}
HTH,
Alaa
Hi Michael,
You can click the Close button on that window, from there you’ll have the option to deactivate your license and re-activate it with a new license key.
HTH,
Alaa
