User Profile
Collapse
Profile Sidebar
Collapse
ShahbazAshraf
Last Activity: Jun 8 '08, 11:56 AM
Joined: Mar 10 '08
Location:
-
In windows application by default the cursor is set at end of textbox text so wht your further requirement ? -
Sure ??
becoz iam using this and its open ebay.com successfully, may be there will be other issue, if know then share with usLeave a comment:
-
1) May be your control is updating the value of "txtSolutionNam e" control
2) In asp.net Page_Load event is fired on each post back and then the particular event is fire so in your scenario may be u have done some work which update the value of txtSolutionName .Text in Page_Load event.Leave a comment:
-
Simply read the image/map as byte and send it to database through sql/oracle db parameteres and apply database type as image
here is sample code
http://www.aspnettutorials.com/tutor...DB-Csharp.aspx
or
http://www.aspfree.com/c/a/ASP.NET/U...e--C---Part-I/...Leave a comment:
-
-
Can use this for basic AJAX example on asp.net
http://www.asp.net/AJAX/Documentatio...plication.aspx...Leave a comment:
-
Leave a comment:
-
-
Simplye use the Time Control and set interval as 30 min and fire the event handler with can do u custome workLeave a comment:
-
Using splitter control is easy and u can see various example by simple googling and in order to derive ur own splitter control just make new server control which inherit through Splitter Control Class, then u can add the funcionality / behavior aur overried the existing funciontallity / behavior.Leave a comment:
-
I think u have forget to call the method bindgrid() after this statement
DataGridView.se lectall()
bindgrid() // Method that bind the data
since its necessary for datagridview to bind data in each server call. Try this ...Leave a comment:
-
Simple Dear, use
Assembly a = Assembly.Load(" C:\windows\Syst em32\user32.dll "); // Dll Name
and call the class name in user32.dll and its function for operationLeave a comment:
-
Instead of using RegisterStartup Script use this Page.ClientScri pt.RegisterClie ntScriptBlock(a rguments) because RegisterStartup Script call the javascript before initallizing the DOM object while
RegisterClientS criptBlock call after the page DOM objects initialized. May this was the issue ... if not then tell ...Leave a comment:
-
I think if their is larger number of threads then its good to use different process (i.e. cloning of process) better than creating a huge amount of threads. Their is an ancient war b/w Processes Vs Threads. So in your problem if u think thread switching may be time consuming and windows doesnot handle 300 threads in while, then distribute the application in multiple process.Leave a comment:
-
-
Yes inorder to set report source u have to add source refrence either to the Data Base or to the temporary dataset (i.e. asp.net object).Leave a comment:
-
Can u elaborate ur question further ? becoz u r accessing the list like
foreach (string var in list)
{
sw.WriteLine(va r.ToString());
}
wht u want further ?Leave a comment:
-
What iam understanding that u want to load the dll dynimaclly (i.e. on runtime) for that u can use the Reflection to load the dll and its function on run time.
Here is sample code:
using System.Reflecti on;
Assembly a = Assembly.Load(" assembly.dll"); // Dll Name
Type t = a.GetType("name space.classname "); //Class Name
object obj = Activator.Creat eInstance(t);...Leave a comment:
-
write this code in PageIndexChangi ng event
{
_gridView.PageI ndex = e.NewPageIndex; // Set the Page Index
// then call the Search() method which will b your custom event for the searching of data on basis of dropdown list selection.
}Leave a comment:
-
No activity results to display
Show More
Leave a comment: