how to get the properties of word document images? Is there anyway to get the image in word document to set my desktop background images? Thanks in advance. Please help
I have seen this type of effect on a visual thesaurus. Is there any open source code for this.
I don't care about the algorithm to match similar objects. I only am wondering about the effects.
From my c# code behind, i pass a query to mysql database and get the data in a DataTable.
Now i want to use the data in data table to write the Insert query in a script file [.sql]
The objective of doing so is, whatever records i select from mysql, i should write that to a script file as backup. Thais why i need the insert statements.
How ? Or…
The user will be able to search for some document in the local machine and i want to show user, a progress bar during my program searches. To be more clear, i have foreach loop for which i want to tie up my progress bar to show the progress. my foreach loop and progress should work simultaneously. Is this possible to do ?
Hi,
Description:
I wanted to update dataset to database in Asp.NET.
Instead of retrieving the entire table, I am retrieving only one record
using the following statement :-
select * from Products where ProductID=3
Now I wanted to update dataset directly in to DB by using following statements (DAP 4.1)
db.UpdateDataSet(ds,…
When load in my app automatically play videos. when the video should stop, automatically to play another video.enter code here
private void videoplayer(String filename, int position) {
// TODO Auto-generated method stub
getWindow().setFormat(PixelFormat.TRANSPARENT);
VideoView video =…
I need some help in code to be able to handle the following logic.
The program gets many input in Integers like 10,16,3,17,21,29,6
Logic to be done :
scenario : 1
First select the biggest 4 numbers of input which is 16,17,21,29
Now assign the values to A,B,C and D
A = smallest in the selected 4
B = biggest in…
Hi,
I have created an application to interact with Excel in C#.net
The API to save the Excel
Excel._Workbook m_oWorkBook;
m_oWorkBook.Save();
Throws up a File Saveas MessageBox though the workbook was already saved in a given name.
Note:
This happens only in Windows 7 & only when another Workbook was…
My form doesn't have a title bar, so I am implementing the code to drag
the entire form around the screen. I am using the below code to do it, which works fine.
I have two panels in my form, PanelA and PanelB. During the startup I show
PanelA where the dragging works perfectly. Later when the user clicks
the…
Original source of MsSql SP is here..
http://www.codeproject.com/KB/database/InsertGeneratorPack.aspx
I am using the below MySql stored procedure, created by SQLWAYS [Tool to convert MsSql to MySql].
The purpose of this is to take backup of selected tables to a script file. when the SP returns a value…
In my project, i am using the jquery pagination of jquery.dataTables.min.js. In that when i use ascending or descending in query, it will not displayed properly. The problem is
result can be shown in form of :
Sl. No.
1
10
11
12
13
|
|
|
19
2
3
4
5
like this, But i need the result
Sl. No.
1
2
3
4…
In the below SP i will be getting result in One single column. How can i name the column of the output ?
DELIMITER $$
DROP PROCEDURE IF EXISTS `InsGen` $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `InsGen`
(
in_db varchar(20),
in_table varchar(20),
in_ColumnName varchar(20),
in_ColumnValue…
we tried to give our tables(users,messages) like this in two different abstract classes but it is not working.
This is included in a file childconnect1.php ,is there any relation between the file name(childconnect1.php) and the class(Application_Model_childconnect1).
class…
I am very new to XAML and WPF.I have a problem.
I have two files. first.xaml and second.Xaml. There is a button in first.xaml, on click of which it should navigate to second.xaml.How do i achieve this.
I want to write a plug-in which tracks the updates to a text file and stores them in a separate file.
Should I first write a simple java program which does this and then try to convert it into a plug-in?
I need to copy a Folder from one drive to a removable Hard disk.
The Folder which needs to be copied will have many sub folders and files in it.
The input will be Source Path and Target Path.
Like..
Source Path : "C:\SourceFolder"
Target Path : "E:\"
After copying is…
How to copy a folder from one one path and paste it to another path using c# ?
The copied original folder should be pasted inside folder named with today's date like "220310"
Like.....
Orginal folder : c://Org/AbcFolder
Destination folder : D://Dest/220310/AbcFolder
…
I am using the below code to update my progress bar.
ProgressBar.Visible = true;
ProgressBar.Minimum = 1;
ProgressBar.Maximum = PortCount;
ProgressBar.Value = 1;
ProgressBar.Step = 1;
int intdata = 5;
for…
I need to covert the following SP of SQL Server To MySql. I am new to MySql.. Help needed.
CREATE PROC InsertGenerator
(@tableName varchar(100)) as
--Declare a cursor to retrieve column specific information
--for the specified table
DECLARE cursCol CURSOR…
Hi,
I'm trying to get Google Maps Directions API working with jQuery, and
I have the following code..
http://pastebin.com/6jcGt706
Where #end is a select list in the HTML.. I'm Using jQuery 1.4.. I'm
not sure as to what is going wrong.. Can you please help me…
hi folks
I am using this jquery ui for the slider.here i want the gradscale like
poor----excellecnt-------average------good
how do this in this script?
<script src="../../Scripts/jquery.ui.core.js" type="text/javascript"></script>
<script…
I am tasked to create a web site using joomla. It will be a 'sister' site to an existing joomla site. Both are in the same domain.
However, the owners want the users to be able to log into one and still be logged into the other one.
How can this be…
I tried searching on the net, but there are hardly any resources. A small example would suffice.
EDIT
I mean, two different C programs communicating with each other. One program should send "Hi" and the other should receive it. Something like that.