# What is Wijmo and why am I being asked to create a license?

**URL:** https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602
**Category:** VS Code
**Tags:** dataframes, vscode
**Created:** [March 8, 2022, 5:57pm UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602 "2022-03-08T17:57:30Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Soldalma](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/soldalma/32/29388_2.png) [@Soldalma](https://discourse.julialang.org/u/Soldalma)
#### Post date: [March 8, 2022, 5:57pm UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/1 "2022-03-08T17:57:30Z")

</div>

I use the Open Preview context menu item in the VSCode Explorer to look at the contents of DataFrames saved in CSV format. Everything was working fine until this morning. Now when I click on Open Preview the dataframe contents are shown but a window pops up with this:

```julia
create a license us.sales@grapecity.com

```

There is also a Close button. If I click on it the pop-up window closes but a semi-transparent window appears with the following:

```julia
Wijmo Evaluation Version (5.20201.664)

```

I searched on Google and Wijmo seems to be a product of grapecity, related to Javascript. I do not program Javascript and do not have a compiler or interpreter for Javascript.

Would anyone know why is this happening and how to eliminate this message, which covers part of the dataframe contents?

---

<div class="post-metadata">

### Author: ![goerch](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/goerch/32/29122_2.png) [@goerch](https://discourse.julialang.org/u/goerch)
#### Post date: [March 8, 2022, 8:01pm UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/2 "2022-03-08T20:01:54Z")

</div>

Wat? [Wijmo](https://www.grapecity.com/de/wijmo) seems to build JavaScript UI components. These could be referenced either in your application or in a VS Code extension or in one of the Julia libraries. Why is it that you think `DataFrames` or `CSV` is involved? I’d rather suspect some UI display (in a VS Code extension) is involved.

---

<div class="post-metadata">

### Author: ![Soldalma](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/soldalma/32/29388_2.png) [@Soldalma](https://discourse.julialang.org/u/Soldalma)
#### Post date: [March 9, 2022, 12:28am UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/3 "2022-03-09T00:28:01Z")

</div>

I understand. But as I explained, with some difficulty without having recourse to images, the pop up only appears inside the spreadsheet-like window that appears when one right-clicks on a saved .CSV file in Explorer and then chooses Open Preview from the context menu. My guess is whoever programmed the Open Preview feature (which is very nice) used Javascripr and Wijmo.

---

<div class="post-metadata">

### Author: ![jling](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jling/32/212909_2.png) [@jling](https://discourse.julialang.org/u/jling)
#### Post date: [March 9, 2022, 1:43am UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/4 "2022-03-09T01:43:58Z")

</div>

> [@Soldalma](#):
>
> I do not program Javascript and do not have a compiler or interpreter for Javascript.

then you should uninstall VSCode, because VSCode is basically a chrome browser (electron → chromium → chrome) and thus has a JS compiler (V8), and the whole VSCode technology is built on Javascript

---

<div class="post-metadata">

### Author: ![ToucheSir](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/touchesir/32/14411_2.png) [@ToucheSir](https://discourse.julialang.org/u/ToucheSir)
#### Post date: [March 9, 2022, 4:30am UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/5 "2022-03-09T04:30:57Z")

</div>

A GitHub search turned up [license expired · Issue #170 · jjuback/gc-excelviewer · GitHub](https://github.com/jjuback/gc-excelviewer/issues/170), so this is probably from a completely different VSCode extension. Note that after this step:

> [@Soldalma](#):
>
> the contents of DataFrames saved in CSV format

The Julia extension is no longer involved because the saved file is just a generic CSV.

---

<div class="post-metadata">

### Author: ![pfitzseb](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/pfitzseb/32/45566_2.png) [@pfitzseb](https://discourse.julialang.org/u/pfitzseb)
#### Post date: [March 9, 2022, 8:42am UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/6 "2022-03-09T08:42:39Z")

</div>

FWIW, you can view the table from the Julia workspace before saving it to disk (or after, as long as your Julia session is still alive).

---

<div class="post-metadata">

### Author: ![Soldalma](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/soldalma/32/29388_2.png) [@Soldalma](https://discourse.julialang.org/u/Soldalma)
#### Post date: [March 10, 2022, 3:07pm UTC](https://discourse.julialang.org/t/what-is-wijmo-and-why-am-i-being-asked-to-create-a-license/77602/7 "2022-03-10T15:07:14Z")

</div>

Thanks. I will try that.
