Hi, I have a website that's running from several months. Most of the web pages contain a common marquee tag. I want to put the tag in a html file and embed the html file wherever needed so that when ever a change is made to the marquee tag it affects all the web pages. Thanks in advance
User 3055467
Posts
-
How to emebed a html file in another html file -
problem with windows applnHi, Thanks a lot. The soln you gave is not in detail. can you please explain in detail. What do you mean by cascade regards Member 3057887
-
problem with windows applnHi, I did not understand what you are saying.Can you tell in detail. Let me explain the requirement once again. when the form is in maximised mode the control box(min,max and restore buttons) of the form should be displayed adjacent to menu bar In minimised mode the form can be displayed as usual. My code is given below. ChildForm ChildFrm= new ChildForm (); ChildFrm.MdiParent = this; ChildFrm.TopLevel = false; splitContainer1.Panel2.Controls.Add(ChildFrm); ChildFrm.Show(); I've added the Child form to panel2 in split container as I need the form to be displayed in that panel.In minimised mode the form should be movable with in that panel.A very good example of this is Edit plus. Waiting for your reply
-
problem with windows applicationbut i need it since I should show the child window within the mdi form.It should not look like a popup window. thanks and regards
-
problem with windows applicationHi thanks for ur reply. but it's not not working. The code is given below. //childform.IsMdiChild = true; childform.MdiParent = this; childform.TopLevel = false; splitContainer1.Panel2.Controls.Add(childform); childform.Show(); the first line is giving an error saying "Property or indexer 'System.Windows.Forms.Form.IsMdiChild' cannot be assigned to -- it is read only".
-
problem with windows applicationHi, I am working on a windows application involving MDI forms and child forms. The problem here is when I click an item in the menu bar I am displaying a child form. the child form should be in such a way that it is displayed inside the MDI form and should not be like popup box.I have done this as shown below. Childfrm.TopLevel=False; this.Panel1.Controls.Add(Childfrm); Childfrm.show(); it's working well but the controlbox with title bar is being displayed seperately in maximised mode.I want the control box beside MDI form menu and child form title beside mdi form title. A very good example of this functionality is Edit plus. I request any one who worked on this type of requirement to help me in solving this problem Thanks in advance
-
problem with windows applnYeah almost same ... Thank You
-
problem with windows applnHi, Thanks a lot for replying so soon. but i need a mini,max,close buttons on the top like a normal windows form.
-
problem with windows applnHi, I am working on a windows application. The requirement that's troubling me is I have an MDI form(Parent form) using which I can navigate to other forms.The view should be in such a way that when the user clicks a menu item--Users Management the window should not open seperately but with in the form. A very good example for this is in web application we have master pages which is common for all the pages. when the user clicks a link only the content in child page changes. Thanks in advance
-
how to run .NET applications with monoHi, can any one tell me how to run .NET applications in Linux. I know we can do it using Mono develop. I am completely new to linux and want to know the exact process of doing it and the correct download link for mono develop used to run in Linux(Fedora 6)or Red Hat Linux.The requirement is very urgent, otherwise I need to learn java to do it.
-
reading data sent through GPRS in C#Hi, I am working on a project involving communication using GPRS. We have a GPRS enabled modem that sends data to server at regular intervals. All I have to do is develop a service that reads the data sent from GPRS enabled modem and save into database. I request any one who has experience in these type of projects to guide me in three things. 1.How to establish connection between Modem and Server 2.How to read data received by the server 3.How to close the connection Thanks in advance
-
How to run .NET application in Fedora 6(Linux)Hi can any one tell me how to install an application developed using .NET in Linux System Thanks in advance
-
How to implement queues in vb 6.0Hi thanks a lot. array size is fixed. if i use redim it is intializing every time. the code should be in such a way that when the timer fires the msg to be sent should be appended to the list of previous msgs. regards
-
How to implement queues in vb 6.0I'm trying to do the same. All I need is how to implement queues in vb 6.0. Is there any way like System.Collections.Queue in .NET. I want to put all the messages to be sent into a queue. when the comport receives response from the other end I will take out the first element in the queue and use that. regards
-
How to implement queues in vb 6.0Hi Thanks for replying so soon I did not bet at all. The application is already developed in Vb 6.0. To convert it into .NET it takes some time. But we dont have much time as we have demo tomorow.
-
How to implement queues in vb 6.0Hi I am using VB 6.0. I am working on an application involving Com port. I need to send messages to com port continously and when I recieve data from the other end i need to perform another action. So I should put the data to be sent in a queue and when I recieve response from the other end I should remove first element in the queue and process that. using queues is an appropriate one. I can't use .NET now. In .NET it's very simple using System.Collections.Queue. Thanks in advance
-
Stored Procedures or queriesHi, I am completely new to using LINQ. I have worked on writing queries directly. and also using Stored procedures.I think using procedures gives a better performance. I dont know wheteher I am right or not I want to know which one is better Thanks in advance
-
create Timers dynamicallyThanks a lot Dav I got it by using your method
-
create Timers dynamicallyHi Thanks a lot for reoplying so soon I cant tell the requirement completely. Let me explain in brief.In database I have a set of records in this structure. ID ConsumerID Time Interval 1 5 5 2 6 7 3 8 9 Now I have 3 records in database. I need to create 3 timers and set intervals accordingly. For every 5 secs I should get details regarding ConsumerID-5 For every 7 secs I should get details regarding ConsumerID-6 For every 9 secs I should get details regarding ConsumerID-8 Thanks
-
create Timers dynamicallyHi, I am working in windows application in which I need to create Timers dynamically based on number of records in database. I am able to do that but the problem is I can't identify which timer is raising the tick event. Below is the sample code on which I am working. public Form1() { InitializeComponent(); System.Timers.Timer timer1 = new System.Timers.Timer; timer1.Enabled = true; timer1.Interval = 5000; timer1.Elapsed += new ElapsedEventHandler(TimerTick); timer1.Start(); } public void TimerTick(object source, ElapsedEventArgs e) { string s = ((System.Timers.Timer)source); string s1 = e.ToString(); } Thanks in advance