by Janus Systems - Product Type: Component / .NET WinForms / .NET Class / 100% Managed Code
Hallo,
I want to add an extra property to Appointment called "Location". Is there a way to do that?
see below from sample application of janus.I want to add such line to the code ( this.txtLocation = appointment.Location).
Notice thet field Location does not exist in ScheduleAppointment class . Some how I need to edit or override this class.
Appreciate any help.
Dave,
private Janus.Windows.Schedule.ScheduleAppointment Appointment
{
get
{
return appointment;
}
set
{
if (appointment != value)
{
appointment = value;
if (appointment != null)
{
this.duration = appointment.Duration;
this.txtDescription.Text = appointment.Description;
this.txtSubject.Text = appointment.Text;
this.txtLocation = appointment.Location <-------------------------------------------- this is what I need to add.
this.chkReminder.Checked = appointment.Reminder.Enabled;
this.chkAllDayEvent.Checked = appointment.AllDayEvent;
this.SetTimePanel();
this.FillReminderCombo();
this.FillOwnersCombo();
initialized = false;
DateTime date = appointment.StartTime;
this.jsccStartDate.Value = date.Date;
this.jsccEndDate.Value = date.Add(this.duration).Date;
this.jsccStartTime.Value = date;
this.jsccEndTime.Value = date.Add(this.duration);
this.SetWarningText();
initialized = true;
}
}
}
}
Reply
I have a schedulePrintDocument associated with my printpreview object.I can't set the layoutpages property to twoPages.How can i do?.Thanks a lot.
Reply
I'm using janus version 3 i want to place Janus Ribbon Control in Arabic Form,i set RightToLeft property to ribbon control put the Control Box still in the left corner how can change it to right corner?.
any one can help me?
Reply
i have a license of Janus Controls Suite .NET V3, but in price list not exist the price for upgrade from v3 to v3.5
can send me the upgrade price?
tnx very much.
Reply
Hello,
I have two questions...
How to retain the state of expanded rows / collpased in GridEx in window application (C#) after executing refetch method?
Also the refresh method of the Grid does not fetch the new added rows or delete the rows which are deleted in the datasource.
Thanks for your help
Mahesh
Reply
RE: Janus WinForms Controls Suite alyaspogi99 [Philippines] 20-May-2008 02:09:10
Test
Reply
Are there any tools available in the Janus suite to synchronize Janus schedules to outlook?
Reply
RE: Synchronize Janus Schedules with Micro... research [The Netherlands] 27-Aug-2008 07:55:52
At this moment I am working on sunch project.What you can do is to add Outlook assembly to your project and start sending appointments to Outlook calendar.
Add this assembly to your project.
using Outlook = Microsoft.Office.Interop.Outlook;
Reply
Are there any tools available in the Janus suite to synchronize Janus schedules to outlook?
Reply
i have a problem with Janus checkedcombobox .
in the example i have downloaded Janus.NorthwindDemo2003(VB.NET).sln when you try to add a new product with product cat selected from the combo box . you get an error .
the product is saved but not the product cat.
any suggestion?????
abbi
Reply
How to
Reply
hello. i'm using 3.5 version. i don't know how to work with ribbon and i want a clue about it. i make buttons and drop down menus but i don't know how to add a command into those buttons. i can't double click and put a messagebox inside them. anyone knows how to? thanx.
Reply
I was using Janus WinForms Controls Suite v3.0 and it wporked perfectly on Windows XP. I then got a new pc with Windows Vista Home Premium and my Janus WinForms Controls Suite 3.0 wont even load. what could be the problem and is there a solution to it.
raymond
Reply
RE: Janus WinForms Controls Suite raheelfarooq_pk [Pakistan] 10-Mar-2008 14:55:54
janus winform toolbar is not showing in the visual studio 2005
i am using windows vista home premium
pplz plz help
rply me here at yahoo if possible
raheelfarooq_pk@yahoo.com
Reply
Hello.
I'm using a Janus GridEX control to display "paged" data that I retrieve from the server one page at a time as the user clicks page forward/back buttons. I'm using the GridEX control in unbound mode.
So, I'd like to know if there's any way to intercept the GridEX sort functionality? That is, I'd love to keep the control responsible for drawing the sort direction triangle in the header and keeping track if the sort direction, but I want it to tell me when this has changed and not to sort rows. Because of the paging, the sort must happen on the server.
Is this possible? How do I do it?
Thanks,
Eric
Reply
I am using vb6 and have installed the enterprise edition. I have also installed service pack5. I installed the janus winforms controls v3. I have also visual studio 2005 on the same pc. I checkouted out the code and opened up the project (vb6) when I try and use the form that has the janus grid on it I get the error regarding no license found. I have tried uninstalling the janus controls and reinstalling but no luck Any suggestions? I am using XP pro
Reply
Hi,
I'm using the winForms controls suite v2.0. Currently i have upgrade my laptop to Windows Vista and i found that the current installation file which i have is not compatible with windows Vista. What can i do to download the new version of WinForms or i need o purchase a new developer license?
Thanks,
Best Regards,
TIm Yong
Reply
RE: Janus WinForms Controls Suite latigh [Ghana] 08-Jan-2008 10:48:39
I am installing Janus v2 on Vista and i getting the error code 2869
Reply
I am using Janus GridEX v2.0 in my application developed in C#, but I can not remove the Row from the GridEX.
I use the following cod, but it not work.
this.GridEX1.Delete();
alitle help...
many thank
Reply
RE: Janus GridEX v2.0 marcopoloae [Egypt] 01-Sep-2007 09:09:00
hi
ReplyRE: RE: Janus GridEX v2.0 seang_sophorn [Cambodia] 22-Oct-2007 04:08:09
My problem have been solved. :-)
thank
Reply
RE: Janus GridEX v2.0 nguyenhuedhbk [Viet Nam] 29-Oct-2007 03:35:06
nguyen hue
Reply
Hi All,
i am using GridEx v3.0, i need to add process image(circular) in the cell of Grid which changes color with respect condition in the other column so how to do it please help me?
Thank you in advance
Reply
i have a combo inside the grid , when i select an combo element, the value doesn't go to the cell grid , the cell grid stays empty
Setup ---
grelha.Adicionar_Coluna("Tipo_Trafego", "Tipo_Trafego", "Tipo_Trafego", true, 200, false);
grelha.RootTable.Columns["Tipo_Trafego"].EditType = EditType.MultiColumnCombo;
grelha.Adicionar_DropDown("cmbTipo_Trafego", "Tipo_Trafego", 180);
GridEXDropDown cmbTipo_Trafego = grelha.DropDowns["cmbTipo_Trafego"];
grelha.RootTable.Columns["Tipo_Trafego"].DropDown = cmbTipo_Trafego;
private void grid_classifica_SelectionChanged(object sender, EventArgs e)
{
if (grid_classifica.Enabled == true)
{
if (grid_classifica.GetRow() != null)
{
if (grid_classifica.GetRow().RowType == RowType.Record)
ctrl.Fill_Modelos(this.grid_classifica, idAcordo);
}
}
}
private void grid_classifica_CellUpdated(object sender, Janus.Windows.GridEX.ColumnActionEventArgs e)
{
if (grid_classifica.Enabled == true)
{
if (e.Column.Key == "Tipo_Trafego")
ctrl.Fill_Modelos(this.grid_classifica, idAcordo);
}
}
Reply
grelha.Adicionar_Coluna("Tipo_Trafego", "Tipo_Trafego", "Tipo_Trafego", true, 150, false);
grelha.RootTable.Columns["Tipo_Trafego"].EditType = EditType.MultiColumnCombo;
grelha.Adicionar_DropDown("cmbHub", "Tipo_Trafego", dt_tiptrafego_interno, dt_tiptrafego_interno.Columns[1].ToString(), dt_tiptrafego_interno.Columns[1].ToString(), 130);
GridEXDropDown cmbHub = grelha.DropDowns["cmbHub"];
grelha.RootTable.Columns["Tipo_Trafego"].DropDown = cmbHub;
grelha.DropDowns["cmbHub"].RetrieveStructure();
grelha.EsconderColunas_DropDown("cmbHub");
i am adding a combo to the grid. The problem is when an element of the combo is selected doesn´t go to the grid cell, it stays in the combo and when i change to another object, it disappears and the cell in the grid stays empty.
Reply
I want to setup my licenced Janus Winforms Control Suit 2.0 but I get the error: "The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2869"
My OS is Vista and I have .NET Framework 1.1 & 2.0 installed on my PC.
Reply
RE: Setup error 2869 dbaser [Korea, Republic Of] 05-Jun-2007 03:18:04
I same your things and develop enviornment(vista, .net framework).
Would you got answers?
May I get information?
ReplyRE: RE: Setup error 2869 f.giovagnoli [Italy] 20-Sep-2007 16:47:24
Hello,
I had the same problem.
The solution is lunch the msi installer by command prompt with administrative rights (run as administrator).
for example the command is "msiexec /i c:\janus.msi"
ReplyRE: RE: RE: Setup error 2869 a.stiedl [Germany] 05-Jan-2008 10:29:41
I have the very same problem, but I AM running the installation with admin rights already...
any ideas???
Thanks,
ANJA
Reply
RE: Setup error 2869 emiaj_r [Mexico] 06-Jun-2008 23:54:16
tengo instalado el Paper Port de Xerox, pero se est{a trabando y decidimos instalarlo nuevamente. Sinembargo, no es posible ni siuiera desinstalarlo y me aparece el siguiente error:
Error Interno 2869. Setup error
. Que puedo hacer para que me permita desinstalar el Paper port e instalarlo nuevamente?
Sludos.
Reply
I have tested the GridEX control on Vista.
Mouse Wheel does not work to scroll the rows.
Should this issue solved by Microfoft or Janus?
Reply
RE: Mouse Wheel not work on Vista nobuyuki [United Kingdom] 21-Feb-2007 18:31:44
Sorry, it was mouse (dell new mouse) problem.
GridEX working okay.
Reply
Hi,
I want to have checkbox in the GrideX control so that when i check the check box it should select the row. Please help
Regards,
Rash
Reply
Hi,
we are using janus system controls scheduler, calender and timeline.
our application is developed it in the VB.NET.
Now we are moving existing functionality of the vb.net classes and controls to the asp.net version 1.1, which means same User interface and events we want to use in the web.
Is it possible??
Can u help me in this regard.
Advance Thanks,
Manohar
Reply
I want to use the timeline control, but I am getting the data for this by using a Stored procedure and
reader = SprocCommand.ExecuteReader()
Dim myTable As DataTable = New DataTable()
myTable.Load(reader)
fulldataset.Tables.Add(myTable)
how do I get this information into the Timeline control
Many thanks
Allan
Reply
Etant débutant dans l'utilisation des .Net, je voudrais savoir comment utiliser des composants avec Windev?
Je dois gérer un planning avec Drag and Drop et mise à jour d'un fichier de ressources.
Merci de votre aide.
jfr
Reply
How to upgrading proyects from v2 to v3.
Thank´s in advance.
Reply
Hi there,
I am working on a windows application using janus winforms version 2. The previous developer had used janus winforms to develop this windows application. It was developed ina different machine. The previous developer had used an licenced version of the janus winforms. But when i build the project in my computer , i get a popup that i am using the trial versioon of the janus winforms. I do have the serial number of teh licenecd version of janus winforms but i am unable to implement it in my project. I even have a register key for the janus winforms. It would be great if anyone could help me on how do i implement the licenced version of janus winforms in my development project . The product description says "Vendor/Product/Item: Janus Systems SA/Janus Systems WinForms Controls for .NET Suite/Janus WinForms Controls Suite v2.0 for .NET Single (1) User Full License" .
Thnaks a lot
cheers
Reply
Hi
I used Janus MultiColumnCombo in gridex and set its displaymember and valuemember properties correctly.But in some places it shows values insteed of displaymember for the desired field in the cell. Can anyone help me ?
Reply
How to view help files of janus control
Reply
hi
i use the UIcommandManager of Janus for create commandbar(toolbar)
and this commandbar have RIGHTTOLEFT property,
but when i set it to yes ,
my commands(items in toolbar) don't place in RIGHTTOLEFT side,
in .net2(vs2005) this property placed items in RIGHTTOLEFT side,
but in janus ????????????????????????
what can i do?
my email:
p00932004@yahoo.com
Reply
RE: Janus WinForms Controls Suite(RIGHT-TO... nileshmacwan [India] 15-Sep-2006 19:59:36
Hi Dear
Why dont you use dock property it will allow u to postion any where in box
Reply
hi
i use the UIcommandManager of Janus for create commandbar(toolbar)
and this commandbar have RIGHTTOLEFT property,
but when i set it to yes ,
my commands(items in toolbar) don't place in RIGHTTOLEFT side,
in .net2(vs2005) this property placed items in RIGHTTOLEFT side,
but in janus ????????????????????????
what can i do?
Reply
Hello,
does the suite work correctly under Windows Vista 32 and 64 Bit versions?
Is there any offical statement from Janus or ComponentSource?
Is Janus testing the suite under Windows Vista?
Thanks for any helpful answer
Rainer
Reply
Is there a way to get the size of the edit portion of a MultiColumnCombo, when the style is Office2003 or VS2005? I know in the default style of MultiColumnCombo, the button width is SystemInformation.VerticalScrollBarWidth, but when using these styles, the button is smaller. Thanks!
Reply
RE: Janus WinForms Controls Suite scott.mcclure [USA] 08-Jun-2006 15:10:34
Nevermind, I figured it out 5 minutes after I posted. My mistake! Great product BTW.
Reply
hi,
Just wondering how to select a row [checked ] at runtime
Reply
When I want to start the Janus Help Files, I get following error: "Cannot find one or more components. Please reinstall the application."
Of course I did reinstall Janus Windows Suite, but without success.
Can somebody help me.
Reply
RE: Janus WinForms Controls Suite mapsyserick [Argentina] 10-May-2006 21:04:31
I am having the same problem.
did you could solve it??
Thank you.
Mariano.
Reply
RE: Janus WinForms Controls Suite mark [USA] 08-May-2007 20:02:09
Same problem here ... anyone found a solution yet?
Reply
I'm trying to get the current cell to drop down a list of filtered values as soon as the user selects the cell for editing. This allows the user to see a list of related values. For instance, if they type, "Business," they could see "Business Managers," "Business Owners," "Business Analysts," etc.
When I try to put the code:
private void m_gridEX_EditingCell(object sender, Janus.Windows.GridEX.EditingCellEventArgs e)
{
e.Column.GridEX.CurrentCellDroppedDown = true;
}
I get a stack overflow error as soon as I select a cell.
Is there anyway to do this?
Thanks,
Adam
Reply
Bonjour, ayant récemment acheté des licences JANUS WINFORM V2, je souhaite savoir les modalités de déploiements de ces composants sur d'autres plates formes que Win XP, comme Win2K, Win98 etc.... En effet sur ces systèmes la l'application construite avec des controles JANUS m'affiche a chaque utilisation de ceux ci un message comme quoi je suis encore en trial version.
Merci pour votre réponse.
Jean-Noel
Reply
RE : Janus WinForms Controls Suite jnb [France] 07-Nov-2005 08:14:28
A ton hasard, je rajoute mon E-Mail : jnb@guillaume-informatique.com....*
Cordialement
Jean-Noel
Reply
Hi ,
i'm using the CommandBar and from time to time it seems to "forget" the configuration .
envaironment DOT.NET BETA 2.
does anyone know about that problem ?
Thanks
Amit
Reply
Im getting the following error while adding a CommandBar to CommandManager at runtime:
The commands in the CommandCollection must have a BaseCommand located in UICommandManager.
What should i do?
Reply
G Morning, I'm looking for a .NET toolkit that contains an LED panel / indicator lights for Windows Forms.
Reply
Hi,
I would like to know is there any way to control the vertical position of the bars in TimeLine control? I would like to place one bar in each row
thanks
Regards,
Angel
Reply
We are looking at this control and others for a better datagrid. We need to be able to add buttons to each row at run-time. Is this possible?
Reply
Hi, does Janus Controls Suite contain a charting tool?
Reply
Does the GridEx control in the WinForms suite have the ability to page data? I have to deal with some large datasets (100K+ records).
Thank you!
Reply
Hi,
I have a custom object named Person tha has a string propertie ("Name") and another propertie which is a custom object Head.
Person Object{ Properties{ "Name", Head} }
Head Object{ Properties{ "Hair", "Skin"}}
I want to display the Name and Hair propertie in a row in a gridex control.
I have created a Gridex control and I have set the datasource=Person. I've created 2 columns in the roottable ("Name" and "Hair") and set the 1st column DataMember to "Name" and the 2nd column DataMember to "Head.Hair".
When I run the program the Gridex controls displays the "Name" propertie of the Person Object but does not displays the Hair property of the Head Object which is the Head propertie of the Person object.
If i set the 2nd column datamember equal to "Head" the gridex displays the Type of the object that it represents. So why doen't it shows the value of the Hair property when i set the 2nd column data member equal to "Head.Hair". How can I solve this problem.
Best regards,
Nuno
Reply
RE: Janus WinForms Controls Suite - GRIDEX mmfrezabakhshi [Ireland] 23-Jul-2005 12:05:04
Hi Nuno,
If found something, let me know!
thanx
Reply
Hi,
We are considering to purchase the Janus TimeLine control, because it very much satisfies our demands. However we are having trouble with one important facts.
We need groups in our timeline, these groups are defining available units for rent. These units are selected by a join. Therefor the UnitGuid cannot be edited, and this causes a ReadOnly Exception. We cannot se why it even has to call the update when we move the items. We want to be able to control the updates our self.
Please contact me at philip@tallyflex.com
Reply
Trying to evaluate Janus Toolbar.
Can’t find any description in writing, is it rely so that I have to explore the Control by try and error. Probably not, guess I have missed something. Pls advise my where I can get a Description of the toolbar control. There is an interesting example called Northwind but now description.
Reply
I have Janus gridex v1 for both windows and web and these are both being used for an application I am using.
I want to get the windows control suite V2 but I need to know if I can run version 1 and 2 in parrallel as I DO NOT want to upgrade my existing applications to V2.
V2 will be used for a new application that is being developed on the same PC as the existing application using V1
Also, will janus be releasing a control suite for web v2?
Reply
I’m new to the Janus WinForms Controls Suite - .NET Component
Using VB.net and SQL 2000 as DB backend, does anyone have simple vb codes to bind the dataset(I got the sqlConnection,sqlDataAdapter and DataSet) to the Janus GridEX grid? Thanks.
-Dave
Reply
hi all,
i'm using the multicolumncombo control,but the problem i'm facing is that i don't get the row data into the column text.i'm new with janus control and using the eval version.
Reply
Are there unicode of language support limitations with these controls ?
Do you support full unicode ?
Reply
RE: Janus WinForms Controls Suite -- UNICO... amr_deltas [Egypt] 09-Apr-2005 17:25:23
my name amr work in company head office in saudi arbia and branch in cairo we went to make soft ware with vb.net in arbic language , at last i find your grid it work from right to left ,its very good but Schedule Databound not work with hijry date
sent to me what the soln. , or the price of grid only
thank for your work
amr
ReplyRE: RE: Janus WinForms Controls Suite... mrezvankhah [India] 19-Sep-2006 01:14:18
Hi , amr
I have the solution.Pls contact mrezvankhah@yahoo.com
Reply
RE: Janus WinForms Controls Suite -- UNICO... amr_deltas [Egypt] 09-Apr-2005 17:26:34
my name amr work in company head office in saudi arbia and branch in cairo we went to make soft ware with vb.net in arbic language , at last i find your grid it work from right to left ,its very good but Schedule Databound not work with hijry date
sent to me what the soln. , or the price of grid only
thank for your work
amr
Reply
RE: Janus WinForms Controls Suite -- UNICO... amr_deltas [Egypt] 09-Apr-2005 17:26:59
my name amr work in company head office in saudi arbia and branch in cairo we went to make soft ware with vb.net in arbic language , at last i find your grid it work from right to left ,its very good but Schedule Databound not work with hijry date
sent to me what the soln. , or the price of grid only
thank for your work
amr
Reply
I am running version 1 of the Timeline control. I want to pull an associated value out of a timeline item when it is selected. The demo code that came with the control does a hitTest() and determines if the TimeLineArea is a TimeLineItem, if it is then it calls GetItemAt() method and returns a TimeLineItem Object. This only works some of the time. I want to know if they're is a better way to do this. Mainly in the SelectedItems Area?
I'm trying to set a TimeLineItem type to an indexed position in a collection object filled by making the SelectedItems call and make the GetValue call off the TimeLineItem object but this is returning nothing everytime.
Any suggestions??
Reply
Do these components work within a browser (web form controls)?
Reply
Can Janus Schedule sync with Outlook Calendar? If not, will this be done soon?
Reply
RE: Janus Controls Suite Patrick 29-Jun-2004 00:00:00
Yes, I second this motion - if this functionality is not available already (I've look through the docs but couldn't find anything pertaining to this).
Being able to automatically sync to MS Outlook is what will make me buy the schedule control - my application users are not going to want to enter their schedules twice, once in MS Outlook, and then a second time in my app. They will only want to enter it once, and find it replicated elsewhere.
Any info on if/when this can be done will be very welcome.
ReplyRE: Janus Controls Suite dan [USA] 30-Jun-2004 00:00:00
Patrik,
Thanks for backing me up, Outllook sync is vital for us too. It's possible for us to do all the Outlook sync code ourselves using Outlook COM object and .NET COM interop, but yuck, who wants do deal with that when a scheduling component could make it so seemless.
Reply
Hi,
I wanted to test Janus grid control with Rational Robot. It seems that rational was unable to capture any properties of the control. Has anyone any previous experience doing that ? Any suggestions are welcome. Thanks.
Reply
RE: Janus Controls for .NET:Testing wth Rationa... cgendreau [USA] 29-Jun-2004 00:00:00
Hi, Did you happen to find an answer for this?
I am in the same boat.
Thanks,
Chris...
ReplyRE: RE: Janus Controls for .NET:Testing wt... rnichols [USA] 12-Oct-2004 12:59:29
i am followingup on the query you posted on the ComponentSource site asking for help trying to get SQA Robot to actually into the Grid and pull data out. Have you heard anything baout this or are we just going to have to hack around this restraint?
Thanks
Rich Nichols
QA
Watchcaptain.com
ReplyRE: RE: RE: Janus Controls for .NET:Testin... godya [USA] 03-Mar-2005 20:21:28
I still haven't found a way..This thing has prevented us from using Robot on our app, since we have a lot of data displayed in Janus Grids.
Reply
Why in the world didn't you guys, in all your demos, provide one examle of something useful, that is, doing something when a row is clicked like open another form?
I have columns of "Link" type, and can trap the link click event in my
public void gridEX1_LinkClicked(object sender, ColumnActionEventArgs e)
{
}
I am bound to a ADO.NET datatable and cannot for the life of me get from the event args to my actual data? Sure I have a reference to my DataTable but:
int i = this.gridEX1.SelectedItems[0].Position;
is not
myTable.Rows[i];
because of sorting and alike. HELP !!!!!!!!
Reply
RE: Selected Row to my actual data? MGRIFFIN [USA] 29-Jun-2004 00:00:00
I got it:
int i = this.gridEX1.SelectedItems[0].Position;
GridEXRow row = this.gridEX1.GetRow(i);
Reply
We use business objects to read and write to the database, so I cannot just whip up a SqlDataAdapter and create my grid (ColumnSets is what we're using, 3 rows per record) and then swap out hte SqlDataAdapter (or dataset really) with our business object, nor can I seem to expose the dataset from our business object and swap out the SqlDataAdapter.
Thus, our business objects don't support IComponent nor do I think we can back this in at this point? What do we do?
- Mike
Reply
RE: Data Binding - GridEX might not work for us jcastanedo [Panama] 29-Jun-2004 00:00:00
Hi,
You can create a RootTable in the GridEX at design and add the columns you want to present in the grid one by one, being careful that you set the DataMember property of each column equal to the Name of the property/DataColumn you want to display in that column.
Reply
How do I add an accelerator key to an item on the Janus Explorer Bar? I tried just adding an (&) to the resource strign, but that did not work.
thank you.
Reply
Hello
I used your evaluation but in RTL(RighToLeft) mode columns of GridEx are yet Left align when I want they align from right.
Reply
RE: Janus Controls for .NET jcastanedo [Panama] 29-Jun-2004 00:00:00
You need to download the latest patch from janusys web site which corrects the issue you are seeing when used in RTL.
Reply
Hy,
I 've the following problem! When I have a grid with 1 column visible and I select 1 or more rows, all the rows are highligted, when the grid loses the focus the last selected row loses his selection and also isn't "Highligt" anymore!
Greetz,
Jo
Reply
We are about to create an appointment booking application in ASP.NET which will
allow Users to book resources on-line through a Web browser.
The application will be very similar to a course booking application where courses run
on certain days at certain times and Users could book the courses.
Can anyone recommend good components for this ?
I realise that we will be limited by the browser but we want the UI to be as friendly
as possible allowing for allowing for "outlook style" bookings and viewing
Thanks John
Reply
Hello,
I would like to know where i can find all components use in your Nothwind sample example, like ListView, TreeView, ListBox, etc... ?
Thanks,
David
Reply
Does Not Support Win98?
There are Serious Error in Janus Control with Win98.. Especially in GridEx CardView Mode.
I have heard.. Janus Control Support Win98 From Janus.
But, there are Errors on win98..
Reply
When using the explorer bar, is there a way of highlighting the selected item, or just allowing the selected item of the group to be visible - without writing code?
Reply
Would it be easy to make the Northwind example use the Northwind SQL database instead of the Evaluation Access database?
Does the Purchased version include a Northwind SQL database sample?
Reply
Hi,
Will we need to distribute the .NET platform along with our software if we include the C# controls in the program or will they "manage" on their own? We're using C++ for the main application.
Thanks in advance!
Reply
test owg [China] 29-Jun-2004 00:00:00
test
Reply
johnsummers@t5.co.uk
Reply
Very good product
Help file is full of spelling mistakes
and support staff is very rude
Reply
Publisher
Primary Category
Related Products
Related Categories