Questions tagged [janus]

Janus Systems is a vendor of Windows Forms controls for .NET, ASP.NET Server Controls for .NET and ActiveX Controls.

Janus Systems has been developing database applications using Microsoft Products and Technologies since 1994. They produce Windows Forms controls for .NET, ASP.NET Server Controls for .NET and ActiveX Controls.

The name Janus does also refer to Janus a general purpose WebRTC Gateway developed by Meetecho (https://janus.conf.meetecho.com/)

206 questions
0
votes
1 answer

Event keeps firing

I have a Janus GridEx on cell updating I am checking for some condition and raise a message if the condition is met, what happens is that if the user pressed enter using the keyboard then the dialog will close and the enter press is passed to…
Hasan Shouman
  • 2,162
  • 1
  • 20
  • 26
0
votes
1 answer

How to find out if any row at any level or group in Janus Grid is expanded or not?

I am trying to implement Collapse All / Expand ALL button on a Janus Grid in C# but there is no point in showing Collapse ALL when there is nothing to collapse! So i need a way to find out if there is any row at some level is NOT expanded so that i…
hunter986
  • 1
  • 2
0
votes
2 answers

How can i change the edit mode of a cell in my Gridex Janus Table

I'm trying to create a Janus gridex which every cell has different edit mode. For instance, one cell will be comboBox edit mode and the second one will be free text How can it be done? Thanks in advance, Oz.
Oz Radiano
  • 779
  • 2
  • 11
  • 30
0
votes
2 answers

Cannot select specific row on Janus GridEX

So I'm accessing a DB through a stored procedure and am able to pull the data I wanted into a popup box. The problem now is that no matter what row I click on, the SAME data keeps populating my fields. How the heck can I choose a particular row, and…
Gmac
  • 169
  • 2
  • 14
0
votes
1 answer

Exception occurred creating type 'Janus.Windows.GridEX.EditControls.EditBox

I have a windows application and in that i have used Janus control. when building the code using Licence file its throwing a error- Exception- Properties\licenses.licx(1, 0): error LC0004: Exception occurred creating type…
0
votes
1 answer

i use this janus Code but my Export File is 0 byte

i use this Code but my Export File is 0 byte saveFileDialog1.ShowDialog(); if (saveFileDialog1.FileName != "") { System.IO.FileStream st = new System.IO.FileStream(saveFileDialog1.FileName, System.IO.FileMode.Create); …
behzad
  • 1
0
votes
0 answers

The invoked member is not supported in a dynamic assembly in janus

I'm Using a Janus v2 trail in my project. When run the project, I get this exception: The invoked member is not supported in a dynamic assembly in this line: this.btnInvoice = new Janus.Windows.EditControls.UIButton(); Can you help me with this?
Hamed Rahmani
  • 41
  • 1
  • 4
  • 10
0
votes
1 answer

how can i use TotalRow to show summary in Janus gridex?

I have a ultragrid in janus with this code UltraGridColumn col = new UltraGridColumn(); ultraGrid1.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True; col.Caption = "column1"; col.DataMember =…
Hamed Rahmani
  • 41
  • 1
  • 4
  • 10
0
votes
2 answers

Copy one or more rows in grid janus and paste it

I want to copy one or multiple rows in janus grid 3 and paste it into grid . my grid is bound
0
votes
2 answers

Janus Gridex Winforms control right click menu

I am looking for some help where I can get a menu option on right clicking a row on Janus WinForms Gridex control to trigger some code. Any one has some ideas ? Basically I want to include options like Edit / Delete / Process on each row's right…
Jinith
  • 439
  • 6
  • 16
0
votes
1 answer

set divider between two columns in janous grid

I have a janous grid , and i need put divider between two columns or set thick line between columns. how to do it?
Iraj
  • 1,492
  • 5
  • 18
  • 42
0
votes
1 answer

Janus GridEX - Stored Procedure Recordset - How to edit Some Columns

I think all I need is to somehow unbind the stored procedure recordset to the Janus GridEX, but having a difficult time figuring out how. Programming language is VBA. My grid populates as I want - no problem there. But this code will not allow me…
cb seo
  • 103
  • 12
0
votes
1 answer

Check duplicate GridEX rows with Linq does'nt work

I have two Janus GridEXs. When an specific button is clicked, I want to add rows of first grid to another grid; but I want to check that already these rows do'nt exist in the second grid, so I used this code block with linq: DataTable…
Katy
  • 286
  • 2
  • 18
0
votes
1 answer

Janus GridEX TooltipText is ignored for cells outside of default view range?

I have a Janus.Windows.GridEX.GridEX 3.5 control with up to 1000 rows. I am setting tooltips on all the cells after the data is bound: grid.CellToolTip = CellToolTip.UseCellToolTipText; grid.SetDataBinding(myDataSet.MyTable,…
Marek
  • 10,307
  • 8
  • 70
  • 106
0
votes
1 answer

Delete all Rows in Janus Grid

I'm using Janus Grid, and I want to delete all rows in a Janus grid. foreach (Janus.Windows.GridEX.GridEXRow row in gridK.GetRows()) { gridK.Delete(); } Or any function to clear all…
user2800704
  • 57
  • 1
  • 3
  • 10
1 2 3
13
14