Failed to open document in QlikView - qlikview

I have problem with opening a QlikView report.
I did a document in QlikView and then I closed it, now when I try open it again this message appeared:
" DOCUMENT X.qvw failed load"
enter image description here
Does anyone know what cause such a problem and what I can do to open my file ?

Try this.
Open QlikView Application -> Help -> About QlikView -> Left side bottom you will see QlikView logo, right click on the logo, a new window will open.
Here find the variable called "ApplicationRescue" click on that, set the value 1 and click on set.
Close qlikview and then try to open your corrupted qlikview application.

This happen when you do not have a QV licence and you tried to open the QVW file in another computer. If this is your scenario, it's not possible to do that.

If your running this on a server, move it to Local and try to open it with a different DocCal (if available).
It might be that your missing the original config file if it's moved location for example.

Related

Error when trying to open the "My project" tab in vb

Hi there im currently trying to swap my startup form from TillSystem.vb to Form1.vb however when I try to enter My Project to do this through the menu it appears with the error below
any help on how to fix this would be appreciated many thanks
Because there are errors in the design file. In the Solution Explorer click on the Show All Files button and open the TillSystem.Designer.vb file.
Check this file line by line, if you are not sure which line is wrong, comment out and try again till you find the problem.

How do I open a file with a specific application rather than its default application?

I am trying to open files using a specified executable; just like as if you were to right mouse click on a file then scroll to "Open with"
I tried what kaymaf said and reviewed the docs, but I cannot seem to get this to work.
Dim FI As New FileInfo(GetFileNameFromListViewItem(ListViewCollection.SelectedItems(0)))
Dim GetExif As Process = System.Diagnostics.Process.Start("C:\Users\*username*\Downloads\exiftool.exe", FI.FullName)
This just ends up open the executable and rather than opening the file with the executable.
You would like to open a file with your program using the Windows context menu; and do you want to get an entry in that menu? If that is not correct, the answer can be deleted.
I found this in a German forum, and they refer to this site:
This is the translated text:
One possibility would be that you register your file extension and your program in the system to open this file extension. As soon as the system knows everything, you only need to right-click on the file(s) and in the context menu, in addition to the standard entries, another menu item for opening these files is displayed. If you select this menu item, your program will start automatically if it has not yet started, and you can read out / determine the path to this file or several files in your program and process it accordingly. How it all works is described here: ookii.org/Blog/opening_files_via_idroptarget_in_net
On this page there is also a sample for download (start text files with your own program via an additional entry in the context menu / display paths to the files). It is not a VB, but it should be translatable without any problems. Corresponding information on the page and the comments should be observed.

How to Save PyCharm Embedded Terminal Tabs?

Is there a way to save the Embedded Tabs so each time you open PyCharm you don't have to reconfigure the tab names? It seems like such a simple issue to have but I am unable to find any information on it. This is the documentation on JetBrains Site for Embedded Tabs but it mentions nothing about saving them to the default layout. Each time you open the IDE you are required to click the plus sign and rename the tab.
I have tried exporting settings and re-importing them with no luck at all. It has nothing to do with them theme from what I can tell.
There is an issue about saving terminal tabs between sessions, please vote :)

PHPStorm: Disable Auto Opening of File transfer tool window

I'm using PHPStorm 10, every first save after the opening PHPStorm the File transfer tool windows show up, telling me that the file is being auto uploaded.
I've tried all type of settings, without good results: the file transfer window keep showing up at the first save. How can i disable this behavior?
This is the tool window:
File Transfer tool window
Open Tools > Deployment > Options and change Operations logging to "Errors only".
There is no such option in Settings/Preferences.
Just close the window (minimize it) and it will not show up again for this session (only notifications, which you can disable if so desired via Settings/Preferences | Appearance & Behavior | Notifications -- look for "Web deployment" entries).
If you change the View Mode to Undock and drag the inner edge of the File Transfer window outside the viewport, it will effectively be disabled. This is not very elegant and I hope JetBrains gives us a setting to disable this soon.
To see the File Transfer window again, right-click on File Transfer and select another view option such as Dock Pinned.
As of PHPStorm 2019.1.2. Thanks to Erenor's comment for the inspiration.
Edit: Ástþór's answer does work provided none of the transfers are throwing errors. Due to the way a server is set up on one of my projects, it always gives a benign error, which makes the File Transfer window pop up.

"There is no editor available for ../Form1.vb" error?

I was happily using VB.NET, saved, and, well, there was a blackout.
Probably lucky? Well, now I open my project just fine, double click the Form1.vb and.... "There is no editor available for ../Form1.vb, make sure the application for the file type (.vb) is installed."
.......... Did something go wrong with my project? Is it dead?
Windows 7, Visual Basic 2010 Express.
What should I do?
The same thing just occurred to me but I couldn't get it fixed trying the previous answers. For some reason, one of my references Microsoft.Office.Core had a yellow exclamation point on it.
Simple Solution
Solution Explorer
Expand References
Right click on the item with "Yellow Triangle w/ "!" point"
Select "Remove"
Open the "Build" Menu at the top
Select Rebuild "filename"
Once this was done, I could open my forms correctly.
It's difficult to imagine what you're seeing. I've seen plenty of cases where the design view won't open for whatever reason, but I've never been unable to view the code for the form.
First thing to try is navigating to your project folder in Windows Explorer, right-clicking on the Form1.vb file, and trying to open it in Notepad. This is pretty much the ultimate test. If you can open it in Notepad, your work is salvageable. If not, the file is corrupted and your best bet is to start over. I suppose if you really feel that you have a lot invested, you could try various file recovery techniques, but considering it's a single form file, I seriously doubt it's worth the time or expense.
If that succeeds, and you can open the file in Notepad, select all the code and copy it to the clipboard. Now go back into Visual Studio, and add a new Form to your project. Delete everything in the new form's code file and paste the salvaged code from your original form back in. You still won't be able to open the form in the designer though, and you'll likely be missing references to all of your controls. Ignore all those squiggly underlines for now.
To fix that, you need to go back to Windows Explorer, and find a file named Form1.Designer.vb. This is the partial class that the designer saves information into; it contains declarations for all of your controls and the properties you set for those controls at design time. Just as before, right-click on this file and open it in Notepad. Select everything and copy it to the clipboard. Now go back to Visual Studio, and click on the "Show All Files" button at the top of the Solution Explorer (hover over them to read the ToolTips). You'll see a bunch of extra junk show up, but what you're primarily interested in are the drop-down arrows that just appeared to the side of every Form class. Expand the new form you added in the previous step, and find it's .Designer file. Delete everything that's in there now, and paste in the code from your salvaged form's .Designer file.
You now have an exact copy of your old form in your project. You can delete that old, corrupted form file, because you're no longer using it. You'll also probably want to change the name of the new file itself by right-clicking on it in the Solution Explorer—right now, it's named Form1 just like your old form, because it's an exact copy of that form. The code says it's name is Form1 and couldn't care less about your file name. Clean and rebuild your project, and if things go your way, everything should be back to normal.
Windows 7/ Vista:
Try right clicking the .vb file and selecting the "Previous versions" tab. When the list has loaded (if it has) select the most recent file from the list and select "Restore". Now reload your project, try doing this with all of the form files, e.g. "Form1.resx" and "Form1.designer.vb" and "Form1.vb" and then reload the project.
It implies that the file is corrupted.Replace an uncorrupted copy of that file in the corresponding directory and then try.
I had the same problem and it was from a bad reference to Excel caused by copying the project from a Win7 machine to a Win8 machine probably.
Open the solution explorer and expand the references You will see two references with the yellow exclamation mark icon beside them indicating a problem - Microsoft.Office.Core - Microsoft.Office.Interop.Excel Right click on both these icons and click remove Your form should load now, if not, save the project, close it then reopen it.
i have this problem too . when i restart Visual Studio the form create successfully and show it's designer.
I've created the Form with a different version of VS, other than 2012 (eg VS 2010, VS 2013, VS 2015; I've used VS 2015). Save the Form in the solution, open the solution with VS 2012 and include the form in the solution. It worked for me.
To fix the problem you need :
1) NotePad++
And you should follow this simple steps :
1) Close Visual Studio .
2) Go to the Backup Folder of your VS version usually in : "C:\Users(your user name)\Documents\Visual Studio (year)\Backup Files\your project or application name" .
3) Open the last Backup file of your corrupted file , usually the name format is : "Recovered-month.-day-year-time.(Your File Name).cs" with NotePad++ , and copy the source code .
4) Go to your corrupted file in the project folder and open it with NotePad++ , Edit => Select All => Past the source code and Save .
5) Go to windows start list and search for : "Visual Studio Tools" folder , open it and double click on : "Developer Command Prompt for VS(year)" .
6) Write this two codes in the Developer Command Prompt : "devenv.exe /setup" and then "devenv /resetskippkgs" .
7) Open your project .
Note : if this didn't work for you try to do the steps before in this arrangement :
1) => 2) => 3) => 4) => 7) => 1) => 5) => 6) => 7)
and your problem will be fixed .
It works 100% for me , i hope this will helps you
Try changing the security permissions on the form affected. Right click the file, go to properties then security and change the access ability to everyone.