how to take database backup without ssms for remote server
Event in WebService
I want to implement Delegate Events in web services..
which can registered by Application and got fired when triggered
How to do that ?
Multiple Key Binding for Shortcut
Check and Uncheck Problem in the Gridview Columns
Convert Select into update
SELECT p.pId, p.Lname, p.Fname, i.pId, i.iId, i.fatherID, i.motherID, i.DateOfBirth, i.Address,(SELECT sp.Fname+' '+sp.Lname FROM Profile sp WHERE sp.pId=i.pId) AS child,(SELECT sp.Fname+' '+sp.Lname FROM Profile sp WHERE sp.pId=i.fatherID) AS father,(SELECT sp.Fname+' '+sp.Lname FROM Profile sp WHERE sp.pId=i.motherID) AS mother FROM Info i INNER JOIN Profile p ON p.pId=i.pIdbut code above is used within ASP, what I need for now is to convert that into UPDATE which will I use inside my c# code, which I need to declare variables such as @pid, @lname...please help me...Thanks and Godbless
how to limited list display?
for eg :see this image in below
and then show more button click
display all list.
List are display the link.
answer me quick
stop clock using windows forms control library ?
I designed a stop clock thing but its not working to exact need could u plz look at the attachment for code i have written :)
Thank you for help
Get the list of sp name from the package from oracle by C#
Can any one give me an idea about how to get the stored procedure name from the particular package from oracle using C# net.
Let me explain in details.
I have created an stored procedure sp_GetName under packager PKG_GET.
I need to get the sp name (SP_GetName) when i have passed the package name as the input.
Hope this is clear.
Please let me know if this is not.
Thanks.
To enter pdf and docx file in the database
Rating Stars for Jquery Mobile
How to Create Rating Stars For Jquery Mobile
Rating Stars for Jquery Mobile
How to Create Rating Stars For Jquery Mobile
how to run .aspx page in win xp sp2 iis
passing value from MDi child1 to MDi Child2
I have a Master form(frmMDI) and Two Children forms:-frmStudentsDetails and frmDisplay.
In frmMDi, there is a button(btnNext) to enter frmStudentsDetails.
In that form, i entered the Details. That form also have a Button(btnSubmit) to enter frmDisplay and show the data of frmStudentsDetails in frmDisplay.
how it possible?, reply me with whole code.
Listview scroll bar - How do I know user has clicked listvie
Hi,
i am creating a text box in listview item.
How I create is, I just take the location of the item and create a textbox on that location.
OnFocus over, I just take the textbox text and put it in that perticular listview item and hide
the textbox.
Now the problem is, since i am creating the textbox on a perticular location, when I scroll the lisview
the textbox remain in the same place (textbox does not get scrolled) and the data gets scrolled.
Solution what i thought is, whenver user wants to scroll or user clicks scroll bar, I
will hide the textbox.
But I could'n find the scroll bar click event. Or how do I find that user has clicked scroll bar ??
Is there any event where I can do this ??
Thanks.
Problem conection to server .mdb database in windows service
Hello,
I wrote windows service in c# that connects to access database and make few operations with the data.The problem is that when i try to connect to server database , like \\10.10.10.10\data\data.mdb i get error (i write it to text file ) :
The Microsoft Jet database engine cannot open the file '\\10.10.10.10\data\data.mdb'. It is already opened exclusively by another user, or you need permission to view its data.
I tried everything - i gave all existing permissions to that database , i tried to run the service as Network service instead of Local system , i searched in the forms , but i don't find any solution.
Please help with with this issue.
I have other issue , also related to windows service - i try to produce excel file from windows service - but it always throws unknown errors , something like com object (i don't remember exactly) , but in regular windows application it produces excel file.
Forum Development in asp .Net
I need to develop a forum for for website so can anybody tell me what should i use to display data i meant i should use which of the following control
and why .
-> Gridview
-> datalist
-> Repeater
please help me out with this i do not know which will be better for performance among this 3 .
Thnx in advance .
Creating a test engine
how to use rfid for student attendance system
Which plateform i have to select ??????
what should i have to learn pl tell .....totally confused
Selected row from gridview to dropdown
Kindly help me passing selected row in gridview to my dropdown. I have 1 gridview, 1 textbox and 1 dropdown list box. My dropdown is populated by SqlDataSource from my table Country. On my gridview, I have 3 columns, which are SELECT, NAME and COUNTRY. Under SELECT column, I have my hyperlinked Select, every time I clicked on a certain row NAME will pass in textbox (no problem with that), but in my dropdown it does not populates the COUNTRY that I choose. For example, I have Jack for name and USA for country. Beside Jack and USA, I have a hyperlink Select, when I click Select, Jack will display on my textbox and supposed to be USA will display on my dropdown but not displaying instead it says an error "'cboCountry' has a SelectedValue which is invalid because it does not exist in the list of items. Parameter name: value".
I have tried the codes below:
protectedvoidGridView2_SelectedIndexChanged(object sender,EventArgs e){ txtname.Text=GridView2.SelectedRow.Cells[1].Text; cboCountry.Text=GridView2.SelectedRow.Cells[2].Text;}Only the textbox os working, no luck at all in dropdown...I'm using c# and asp.net. Any help would be appreciated. Thanks in advance. God Bless