43 Discussion / Question Topics

Remove Filter
Member Avatar for nccsbim071

Hi, In my website i have implemented custom session values. In which, on log on i set the session value to some object. This object is used to extract user specific data from db. now the problem is If user logs in with : test1.somesite.com and logs off and again …

Member Avatar for jhoonbey
0
820
Member Avatar for nccsbim071

I have beed using CodeDom to generate codes. I was generating property using CodeMemberProperty. Can anybody tell me how to generate property like this: [code] get; [/code] instead of [code] get { } [/code]

Member Avatar for nccsbim071
0
290
Member Avatar for nccsbim071

Hi, I have a samll problem on my computer. I have using Windows XP professional service pack 3. I recently added 500GB SATA harddisk to my computer. Now my computer has two hard disks, 80GB PATA harddisk and 500BG SATA harddisk. After i added this new SATA harddisk. When i …

Member Avatar for gerbil
0
301
Member Avatar for nccsbim071

Hi, I am facing a really wierd problem, i just formatted my harddrive and installed windows xp service pack 3. Now i can't access any of the google services. like gmail it get some certificate errors and not trusted site in mozilla and something like this in all other browser. …

Member Avatar for nccsbim071
0
497
Member Avatar for nccsbim071

Hi, I have used an open source code from codeproject to read email from incoming mail server(POP Server). The code can be found at following location: [url]http://www.codeproject.com/KB/IP/Pop3MimeClient.aspx[/url] So far it works fine i can read emails. My objective of using this code was to retrieve emails from POP server and …

Member Avatar for kvprajapati
1
323
Member Avatar for nccsbim071

Hi, I have created a window service and set some dependencies like on MSMQ, MSSQLSERVER and so. Everything is working nice. but i need to send another dependency for my service. That is on internet connection. My service is responsible for sending emails. As soon my server starts, my service …

0
98
Member Avatar for nccsbim071

i am sending email to the users using smtp client and MailMessage class. i have been adding the addresses of multiple receivers in the to property of the object of MailMessage class. the problem is that the receiver can see the email addresses of other receipents. is there any way …

Member Avatar for nccsbim071
0
108
Member Avatar for nccsbim071

hi, i have a website where i provicde a link. On clicking the link a controller action method is called to generate a zip file after creation of zip file is done, i show the link to download the zip file by replacing the link to create a zip with …

Member Avatar for nccsbim071
0
291
Member Avatar for nccsbim071

Hi i want implement a windows services scheduled task. I already created windows service. In a service i have implemented a timer.The timer is initialized at class interval. The timers interval is set in the start method of service and also it is enabled in the start method of the …

Member Avatar for zid8ne
0
132
Member Avatar for nccsbim071

I built an ajax chat in one of my mvc website. everything is working fine. I am using polling. At certain interval i am using $.post to get the messages from the db. But there is a problem. The message retrieved using $.post keeps on repeating. here is my javascript …

Member Avatar for nccsbim071
0
344
Member Avatar for nccsbim071

[B]It's long but simple. I have only explained the problem in detail.[/B] After searching a lot i did not get any answers and finally i had to get back to you. Below i am explaining my problem in detail. It's too long, so please don't quit reading. I have explained …

Member Avatar for kvprajapati
1
1K
Member Avatar for nccsbim071

Hi Is it possible to execute normal php code under zend framework php. As far as i have heard php is a MVC model style coding. But i have not done MVC programming in php. I have an appplication where i need small modification. I have done some programming in …

Member Avatar for nccsbim071
0
121
Member Avatar for nccsbim071

Hi everybody I am developing an application in asp.net mvc where i need to have Chat application intergrated in the web page. The chat application should be able to support group chat, private chat, simple file transfer and user should be able to create their own rooms. Can u people …

Member Avatar for nccsbim071
0
514
Member Avatar for nccsbim071

Hi I have a web page where i need to use some javascript. If i write all the javascripts and jQuery javascripts in the aspx page it works perfect. But when i write all the javascripts in separate file called scripts.js and include scripts.js in the aspx page it doesn't …

Member Avatar for mitulmodi.rcc
0
168
Member Avatar for nccsbim071

Hi i want to create a website just like "active collab" where number of clients can register and manage their software projects progress or absloutely any kind of projects and track the progress of project. I want the client or clients to give facility to register to our project management …

0
101
Member Avatar for nccsbim071

Hi, i hava a dropdownlist in asp.net mvc page. On selecting particular select item from dropdownlist i have made an ajax post request to the controller method that returns me the result. Everything is working fine. i also get the required result. But the problem is how shall i extract …

0
110
Member Avatar for nccsbim071

Hi I have an application installed. I need to have a functionality that prevents user from uninstalling the application if application is currently running. I uninstall appliation from Add/Remove programs. I have functionality in my system that allows it to be minimized to the task bar and to system tray. …

Member Avatar for nccsbim071
0
449
Member Avatar for nccsbim071

Hi i want to compress the file on the file during FTP file download. Is it possible to do that. I have an application that downloads the files from remote FTP server as windows forms application using VB.net Please help Thanks

Member Avatar for sknake
0
895
Member Avatar for nccsbim071

Hi I have beed developing an appliction that will start an executable on remote computer to zip the files. I provide the location of files to zip. Now the problem is that i want to start the executable on linux server that hosts the files. I want to start an …

Member Avatar for Medalgod
0
177
Member Avatar for nccsbim071

Hi everybody I have been using mysqldump utility to dump the contents of database to a file. Everything is ok but i want to eliminate the "USE `db_name`;" statement that appears in mysqldump. Is it possible to do that. Please help:sweat:

Member Avatar for nccsbim071
0
156
Member Avatar for nccsbim071

Hi I have a solution file that consist of two different projects. In one of the projects i have a code to upload the file and save it. Currently the file is saved in same project directory that consist of code to upload the file. I want to upload the …

Member Avatar for nccsbim071
0
1K
Member Avatar for nccsbim071

How do i start mysqlserver with option of --log-bin using phpmyadmin. Where do i set mysql server startup options in phpmyadmin.

Member Avatar for phpbeginners
0
140
Member Avatar for nccsbim071

I have been developing a MySQL database backup and restore appliation in windows forms. This application crates a dump of a mysql database at remote location and imports everything from the dump file back into local mysql database. MySQL database is located at the server which hosts my php website. …

Member Avatar for nccsbim071
0
333
Member Avatar for nccsbim071

Hi Please tell vb.net equivalent of following method: [CODE=C#] private void LookForUpdates() { System.Threading.ThreadStart timerThreadStart = new System.Threading.ThreadStart(delegate() { sua = new ShowUpdatAvailable(); DelGetUpdateArgs delGetUpdateArgs = new DelGetUpdateArgs(this.GetUpdateArgs); sua.GetUpdateArgs = delGetUpdateArgs; sua.StartLookingForUpdate(); }); timerThread = new System.Threading.Thread(timerThreadStart); timerThread.Start(); } [/CODE] I tried using C# to VB.NET code converter which gave …

Member Avatar for nccsbim071
0
947
Member Avatar for nccsbim071

Hi I have a windows application that prints a record in a given page size. I looked all over but i could not see how did it set the page size. and now requirement is to print the paper size in legal paper size of 18.5" by 14". How can …

Member Avatar for nccsbim071
0
149
Member Avatar for nccsbim071

Hi everybody I have been developing windows client application in .net framework 3.5. The system is supposed to copy the remote mysqldb and restore my local mysqldb with all the schema and data withing remote schema to my local mysqldb with the same database name. Well i found a solution …

1
115
Member Avatar for nccsbim071

What is the difference between following declarations: [CODE=C#] WebUserService.Service.IUserService userService = new WebUserService.Service.UserService(); WebUserService.Service.UserService userService = new WebUserService.Service.UserService(); [/CODE] I want to know the difference in usage and the the one that is most efficient in terms of programming in C#.

Member Avatar for nccsbim071
0
119
Member Avatar for nccsbim071

Hi All the coders out there. I need a suggestion. I have windows xp installed on my computer and i need to develop application for windows vista. I would prefer to use .net framework 2.0 and visual studio 2005. Instead of .net framework 3.5 and visual studio 2008. Well, selection …

Member Avatar for nccsbim071
0
418
Member Avatar for nccsbim071

Hi I have developed application in .net framework 3.5 WPF. Well, you know WPF also requires .net framwork 3.5 SP1. Now it's works fine on my computer. But i need to ship it the client. What will be the software requirements at the client side to run my application. Is …

Member Avatar for sknake
0
186
Member Avatar for nccsbim071

I have a php website which i want to run in C# wpf webbrowser control. I have a validated a username and password for the site by connecting to it's database using .net. Now i want the functionality to take username and password and submit the post form to php …

Member Avatar for nccsbim071
0
657
Member Avatar for nccsbim071

Hi I am developing FTP Clinet application that downloads files from the specified server i sent the LIST command and server returned a list of file names in following order: -rw-r--r-- 1 devubas devubas 24 Sep 5 2008 .bash_logout now the problem is how do i extract the filename fom …

Member Avatar for nccsbim071
0
156
Member Avatar for nccsbim071

Hi, i successfully created the JAVA Applet and embedded it in the HTML page. The applet class is as follows: [code=JAVA] import javax.swing.JApplet; import java.awt.Graphics; public class HelloWorld extends JApplet { @Override public void paint(Graphics g) { g.drawRect(0, 0, getSize().width - 1, getSize().height - 1); g.drawString("Hello World !", 5, 15); …

0
64
Member Avatar for nccsbim071

Hi, I am new to java programming. I have been creating a simple applet. Which is as follows: [code=java] public class HelloWorld extends JApplet { public void paint(Graphics g) { g.drawRect(0, 0,getSize().width - 1,getSize().height - 1); g.drawString("Hello world!", 5, 15); } } [/code] This code is saved in a file …

Member Avatar for nccsbim071
0
182
Member Avatar for nccsbim071

I have been developing a asp.net application in which i have to mail to large number of user an email. I used the classes in System.Net . Every thing is fine, there are no errors in the page. But while sending mail i get an exception: as follows: [B][COLOR="Red"]SPAM Score …

Member Avatar for dnanetwork
0
116
Member Avatar for nccsbim071

Hi I have been developing a website. I need to hide the page extension of the pages while user is browsing my site. for example: Home.aspx should be displayed as Home only. How can i do this. Please help Thanks

Member Avatar for dnanetwork
0
245
Member Avatar for nccsbim071

I have a structure named "Card" in Codes.cs file which is located in Codes folder of project. The source code of this structure is as follows: [code=C#] struct Card { //Suit that this card belongs to private CardSuit suit; public CardSuit Suit { get { return suit; } set { …

Member Avatar for nccsbim071
0
247
Member Avatar for nccsbim071

I want to develop silverlight web application. But i could not find installed templates for silverlight projects. I have viusal web developer express edition 2008 and visual studio 2008 team system installed on my computer. what shall i do . Which IDE should i use. Thanks,

Member Avatar for nccsbim071
0
105
Member Avatar for nccsbim071

I have created a windows forms in which on certain button click i show FolderBrowserDialog. After the user selects a folder and click on Ok button of FolderBrowserDialog i have done some work in the Ok click part of FolderBrowserDialog. For example [code=C#] if (folderBrowserDialog.ShowDialog() == DialogResult.OK) { generateFiles(); } …

Member Avatar for nccsbim071
0
128
Member Avatar for nccsbim071

Hi, I want to develop an online poker game in asp.net and C#. Can anybody tell whether do we have an existing library which i can download freely or by so that i can use to develop poker games. Or please suggest if you have any better idea. It's urgent …

0
49
Member Avatar for nccsbim071

Hi, Recently i have been creating a Generator. That extracts all the names of the tables from the database tables and generates the class file for each of the tables in the database. I have successfully extracted the names of database tables and their corresponding column names with thier data …

Member Avatar for sknake
0
405
Member Avatar for nccsbim071
Member Avatar for nccsbim071
0
90
Member Avatar for nccsbim071

I have business requirement and i need to diplay records of data in certain format. My problem is as below: I have database with two tables names "Restaurant" and "Restaurant_Associates". "Restaruant" table stores list all the restaruants available in town wheres "Restaurant_Associates" sotres the list of associates for particular restaruant …

Member Avatar for nccsbim071
0
154
Member Avatar for nccsbim071

How can i get the public key token for the assembly that i want to add in root web.config file. Please Help

Member Avatar for nccsbim071
0
179

The End.