Hi,
I am developing one windows application in that i am trying to integrate microsoft word programatically . I used web browser control to enter text,saving it as a word document but the saved document is not showing page numbers,line numbers etc like normal word document. I want to display page numbers and line numbers to my word using web browser control.Can you please tell me is it the correct way to implement word in c# and...
User Profile
Collapse
-
Anchor tag click event without clicking
Hi,
I have one web page in that i am using one anchor tag and linking to some other page in Anchor href. Now i want to raise anchor click event automatically in page load without clicking and navigate to that page.
I want to write anchor tag like this
<a href="AboutUs.a spx?TB_iframe=t rue&height=500& width=800" class="thickbox ">About us</a>
But it has to go to Aboutus.aspx... -
Popup aspx page using jquery
I used the following code also for Inline popup window but this is also not working.Please see the followed code and give me reply
...Code:<div> <a href="#TB_inline?inlineId=popupdiv&height=120&width=320&inlineId=myOnPageContent" class="thickbox" >open child window</a> </div> <div id="popupdiv" style="display:none"> -
Popupaspx page using Jquery
I tried with that IFramed code
but its not opening popup window just navigating to contact us page. can you please tell me anything i have missed?Code:<a href="Contactus.aspx?KeepThis=true&TB_iframe=true&height=400&width=600&modal=true" class="thickbox" >ConactUs</a>
Leave a comment:
-
Popup aspx page using jquery
Hi,
I want to popup aspx page using jquery. I have written the following code
I have calledCode:<a href="Contactus.aspx?TB_iframe=true&height=250&width=200" class="thickbox" >AboutUs</a>
...Code:<script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/thickbox.js"></script>
-
Save As Dialog Box in Asp.Net Application
Hi,
I want to implement Save As Dialog Box Asp.Net Application but there is no specific save dialog file and open dialog file in toolbox. I tried the following code to open Save as Dialog box
...Code:Response.ContentType = "image/jpeg"; Response.AppendHeader("Content-Disposition", "attachment; filename=image.jpg"); Response.TransmitFile(Server.MapPath("~/images/")Last edited by Frinavale; Mar 23 '09, 02:03 PM. Reason: Added [code] tags. Please post code in [code] [/code] tags. -
Drag and Drop Feature in Silverlight Media Player Control
Hi,
I am new to Silverlight Applications. I created one media player control to play video in asp.net website.I want to drag and drop that media player control to desired place when we run the application but there are no events to drag and drop the video. I tried media element control its working fine for drag and drop functionality but i want that feature in media player control. Is there any other alternatives to drag and drop... -
Silverlight Mediaelement to play Video
Hi,
I am new to Silverlight application.I want to display video using Mediaelement tag and I used the below code to play video.
...Code:<Canvas> <MediaElement x:Name="mPlayer" Width="640" Height="480" Source="a_video.avi"/> <Button x:Name="bPlay" Background="Green" Width="100" Height="45" Canvas.Left="8"Last edited by Frinavale; Mar 2 '09, 02:35 PM. Reason: Added [code] tags:please post code in [code] [/code] tags -
Sql query to select Date between the range
Hi,
I am having database table as TicketNo,Name,I ssue Date. I inserted the data for "IssueDate" field using calender control in Asp.Net.
So the table data looks like this
TicketNo Name IssueDate
1 xxx Feb 5 2009 12:00AM
2 yyy Feb 6 2009 12:00AM
3 zzz Feb 10 2009 12:00AM
4 aaa Feb 15 2009... -
Covert Data in .DBF files to MS Sql
Hi,
I am having database files in .dbf format.I am new to Foxpro database.Now i want to convert those foxpro database files to Sql server. Can you guide me is there any other tools to convert .Dbf files to Sql server(.mdf,.ld f).Its very urgent to me if you know please suggest me.
Thanks in Advance
Pavani -
Value is not passing to popup window page
I used this statement to pass values
var param1 = document.getEle mentById('textB ox1').value;
but it dost not passing anything i am getting null value.
Can you tell me the exact syntax to pass values?Leave a comment:
-
Passing parameters to Javascript Popup window
Hi,
I have written the code for display popup window using javascript in button onclient click event.
...Code:<asp:Button ID="Button1" runat="server" Style="position: static" OnClientClick="openwindow()" Text="Execute"/> <script type="text/javascript"> function openwindow() { window.open("AssignedTickets.aspx",'window','width=630,height=620,background=silver,menubar=no, -
pavanip started a topic Develop a toolbar to IE and Firefox in dotnet it works with out having frameworkin .NETDevelop a toolbar to IE and Firefox in dotnet it works with out having framework
Hi,
Here requirement is we have to develop add-on to internet explorer and mozilla firebox.
If we develop in dotnet it will not work with out having Dotnet frame work here all users no need to install framework. Is there any way to develop a toolbar in dotnet,It will work with out having dotnet framework.
Any ideas please share here.
Thanks
-Pavani -
Data grid combo box items in windows application
Hi,
I have a data grid control and I placed one combo box in that data grid and I am binding data to data grid combo box.When i run the application by default the combo box is not showing anything if i double click on combo box then only it is displaying the items. Can anybody please help me to resolve the problem showing combo box items in data grid control by default when i run the application.
Thanks in Advance... -
Hi , were you able to fix your "Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSN OTREG)) " problem ?
I am getting this error when loading an adobe viewer dll. -
Combobox Selection in Gridview for Windows Application
Hi,
I am facing problem with combobox in gridview.I have used combobox in gridview and i am binding data to gridview combobox from database. If i click 2 times on combobox then it is showing the items and first item looks like blank.
Can anybody help me to resolve this problem how to display items in gridview combobox without double click and it will show first item by default without selection.The application is windows application.... -
Binding Data to DropDown List from Database in Alphabetical order
Hi,
I have a problem with binding data to dropdownlist from database in alphabetical order.
My database contains some fields like All,Air,Airline ,Books,Cars etc.
There are 2 dropdown lists one dropdown contains A to Z list like A,B,C,D..Z.
2nd list contains above items like All,Air,Books.N ow I want that when I select A from A-Z list it will display A items in alphabetical order and the Top item should be... -
Higlight dropdown list item when i select 2nd dropdown list
Thanks for your response I got solution for my problem using the following code
Code:foreach (ListItem item in ddlcont.Items) { if (item.Text.StartsWith(txtcont.Text, StringComparison.CurrentCultureIgnoreCase)) { ddlcont.SelectedIndex = ddlcont.Items.IndexOf(item); } }Leave a comment:
-
Higlight dropdown list item
Hi,
I am having 2 dropdown lists 1st dropdownlist contains A-Z list.2nd dropdown list contains some names like akila,bindu,chi nni,....zibra etc.
when i select name in 2nd dropdown list, the first letter of that name should be highlight in 1st dropdown.eg. i select chinni then "C" should be highlight in 1st dropdown. Please help me how to resolve this problem.
Thanks in advance
Pavani -
Windows application compatible with Mac Operating system
can you tell me is there any other alternative to support windows application on mac operating system. Now its very difficult to learn new languages and develop in that languages.Becau se it is ready to release.Leave a comment:
No activity results to display
Show More
Leave a comment: