|
"An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. "
how to configure server for remote connections
-- modified at 14:55 Thursday 27th April, 2006
|
|
|
|
|
|
Hi
I have one application i.e webapplication i created setup for that and i loaded in some other system now i want one shortcutkey on the desktop such that when i clicked that shortcutkey automatically it will run the program
|
|
|
|
|
|
Hi,
I am working on C#. I want to know how to display an image one by one at certain interval of time in broswer.Please send me the solution.
Regards
Praveen
|
|
|
|
|
tjpraveen23 wrote: Please send me the solution.
How much do I get for it?
Seriously if you want people to help here then you must ask them a specific problem, we cannot write complete applications for people (unless of course we're paid for it ) since we are giving up our free time to help you, just be grateful for that, we can be a miserable bunch if provoked.
You know you're a Land Rover owner when the best route from point A to point B is through the mud.
Ed
|
|
|
|
|
Hello Ed,
I have number of .jpg images as a input.
My user requirement is to display these images one after the other so that its look like playing a video.
One simple solution is to link image one after the other and display it with specific time.
Please suggest me to implement the above solution in C#?
Regards
Praveen
|
|
|
|
|
All you need for a simple solution is a PictureBox for displaying the picture, a timer for changing the pictures that's it.
If you create an array of strings to hold the filenames and another variable to hold the index of the picture that's currently being displayed then the code in the timer's Tick event can be something like this:
private void timer_Tick(object sender, EventArgs e)
{
this.index = ((this.index++) % (this.images.Count));
this.pictureBox.Image = Image.FromFile(this.images[this.index]);
}
Et voila!
Of course this is a quick and dirty solution, you should be able to expand on it.
You know you're a Land Rover owner when the best route from point A to point B is through the mud.
Ed
|
|
|
|
|
hello ,
i am creating a client server application for a firm in bangalore. i actually want to take backup of server database and restore them through C# programming.i am using dotnet2003 and sqlserver2000. this cannot be upgraded for some partucular reasons.
plz help.
thanks in advance
|
|
|
|
|
This might be useful, also try searching google.
You know you're a Land Rover owner when the best route from point A to point B is through the mud.
Ed
|
|
|
|
|
i want to create custom toolbar/menu bar using C# .net
add-in shared extensibilites project type with integrated
visio 2003 but problem is that when i added first time
custom toolbar after open visio then result right.next time
i was modify the codes after check result,then not display
and an other available any custom toolbar/menu bar in visio
not present plz solve my problem.
thnx Ali J
Ali J
|
|
|
|
|
hello guys
i am a begginner in c# i need a help on hoew to call a text from a textbox
and make it as a input to yhe another textbox . i ahve given the code and i have underlined the imp part.
eg:
string[] numbers =
{
"123-123-1345",(here i want to get a text from a text box)
};
string sPattern = "^\\d{3}-\\d{3}-\\d{4}$";
foreach (string s in numbers)
{
if (System.Text.RegularExpressions.Regex.IsMatch(s, sPattern))
{
System.Console.WriteLine(" - valid");
}
else
{
Close();
}
}
, kindly help
|
|
|
|
|
if the textbox was called MyTextBox the code would look like:
string[] numbers = <br />
{<br />
"123-123-1345",MyTextBox.Text<br />
};
pretty intuative huh?
Current blacklist
svmilky - Extremely rude | FeRtoll - Rude personal emails | ironstrike1 - Rude & Obnoxious behaviour
|
|
|
|
|
hello guys
i am a begginner in c# i need a help on hoew to call a text from a textbox
and make it as a input to yhe another textbox , kindly help
|
|
|
|
|
textbox2.text=textbox.text;
coolsweety
|
|
|
|
|
Hi Friends,
This is Dayakar,
I created one project and setup that project
I loaded the setpup in some other system
Now i want to create a shortcut for that project after setup is compled in some othersystem
how can i achieve this
|
|
|
|
|
|
what are the main diffrences between oledb object and odbc object
in ado.net.........?
rahul
|
|
|
|
|
Hi
This is Dayakar
I have one problem
i created one project and set the setup and i loaded in the remote system
In the remote system it is working fine but in that project i have one .aspx page
so that the remote user is changing the data in the .aspx
how can i make the .aspx pages are readonly
i.e it does not allow the remote users to change the data in the .aspx page
|
|
|
|
|
You need to set the file permissions up on the remote server so that only ASP.NET can access your aspx files. I get a bit confused myself about this, but I believe you can tell IIS which account to run under, and further to that in your web.config you can tell ASP.NET what account to impersonate when doing its stuff. Or something like that.
Post a question in the ASP.NET forum.
Regards,
Rob Philpott.
|
|
|
|
|
I would like to allow users to drag a field on the form. Is there someone who can point me in the right direction.
|
|
|
|
|
|
you told me that this problem is due to my add-in which i developed in C#.Net.But sir i am not facing any sort of problem inside my add-in code because it compiles in a well way but when i install it then i don`t see any sort of component add-in on visio 2003 interface as i told you that earlier it was running and i could see the add-in on visio 2003 interface but after a few minutes when i uninstalled the add-in and again i installed then it was not running.
Now you please tell me that what is the erason of this problem whether this is because of .net 2005 or visio 2003 or myy com add-in code.
Thanks.
Salman
|
|
|
|
|
i am working on an application in which i want to get user login information from client pc and save this information on server in a hashtable and then broadcast this hashtable data to all clients in a LAN and this data should be store in a listviewbox so that next time i can select a user informtion from the listviewbox.
Please if some body have any solution.
|
|
|
|
|
Hi Friends,
I am developed a new personal web site. I want to host it in my LAN. I installed IIS 5.0. How can I host it in my lan.
Please help me
Thanks in advance
Jijo
JIJO BABY - Lets Play C#
|
|
|
|