- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
13 Posted Topics
please send your assign method code it needs to be chnaged so that based on P size and availablity it assigns to right index
Sams-Teach-Yourself-the-C--Language-in-21-Days try with this book its very easy book then move to MSDN articles and Ic ansend you more download links Download visual studio also
every .net application needs .net framework .SO the MSi you create or give can have setup to go to internet and download prerequisite framework or you can add frameowrk files there in setup . rest you cannot remove framework .So make your set up folder has all prerequisite files including …
As I can see, the XML file is well formated. var source = XElement.Load(MyFile) var Query = from User in source.Descendents("User") where source.Element("Name").Value > "David" select new {Id = (int32)User.Element("Name").Value, title = (string)User.Element("Attempts").Element("Date").Value}
make a shared drive and make surre all can access it .If you have web application then only your webapplication should be able to access it and you configure it as web.config file but if you have windows application or rich client then either all users should acccess that folder …
Dani the Computer Science Gal is the owner and ceo and Boss of the daniweb its readonly can't delete
#include <iostream> #include <iomanip> using namespace std; int main() { double x = 800000.0/81.0; cout << setiosflags(ios::fixed) << setprecision(1) << x; return 0; } this is answer cout << setiosflags(ios::fixed) << setprecision(1)<< result<<endl;
# if(dataGridView1.Rows[i].Cells["Checked"].Value ==true) It is incorect as cells cant be checked CheckBox cb; cb = (CheckBox) e.Item.FindControl("CheckBox2"); then check for checkbox if its ok
using System.Diagnostics; namespace ConsoleApplication1 { class Program { public static void Main() { //Now you can get a list of the processes with the Process.GetProcesses() method, as seen in this example: Process[] processlist = Process.GetProcesses(); foreach(Process theprocess in processlist){ Console.WriteLine("Process: {0} ID: {1} : {2}", theprocess.ProcessName, theprocess.Id, theprocess.MainWindowTitle); } compare …
[code]using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Net.Mail; using System.Net; namespace ConsoleApplication1 { class Program { public static void Main() { MailMessage mail = new MailMessage(); mail.From = new MailAddress("[email protected]","sss"); mail.To.Add("[email protected]"); mail.Subject = "txtSubject.Text"; mail.Body = "txtMessage.Text"; SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587); smtp.EnableSsl = true; smtp.DeliveryMethod = …
using System; using System.Collections.Generic; using System.Text; using System.IO; namespace ConsoleApplication1 { class Program { public static void Main() { string sourcepath = @"c:\MyTest.txt"; string path2 = @"\\10.2.55.184\Share\Team\Jitinder\MyTest.txt"; try { // Create the file and clean up handles. // Ensure that the target does not exist. //File.Delete(path2); // Copy the file. …
you have to merge both project by adding existing file of project 2 to project 1 and then run project 1 . merge project 2 project 1 --> and make new project 1
enable windows authentication in web.config or read this so that alluser can run it with ows windows domain [url]http://eggheadcafe.com/articles/20050703.asp[/url]
The End.
jinus