1,302 Posted Topics
Re: Try use shared file between your C# and Flash, both read and write in the .xml file. And C# has a great classes located in System.XML namespace help you to interact with .xml files. | |
Re: Fatima, try your best to understand why this answer don't just see it, answer more problems, your questions were so easy you just need to study bit more, you're Computer Science Student, algorithms is your first skills and most important one. | |
Re: Please move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] | |
Re: Multithreading if you need to go on your way. | |
| |
Re: May you make a timeout for transaction which is smaller than the time needed to send the binary data for the image and saving it in database I recommend you to open another thread in MySQL forum [url]http://www.daniweb.com/forums/forum126.html[/url] you may find someone helps you... | |
Re: If those files pre-well known formatted so you can read the information of the file and the rest of file let's say the music took it and change its extension to .wav or .au this applies only you don't need to make operation on the bytes. | |
Re: Here you are [code=c#] this.Height = System.Windows.Forms.Screen.AllScreens[0].WorkingArea.Height; this.Width = System.Windows.Forms.Screen.AllScreens[0].WorkingArea.Width; [/code] | |
Re: I think you need ILMerge [url]http://research.microsoft.com/~mbarnett/ILMerge.aspx[/url] | |
Re: If you managed to read the date column data so put them in array 2- remove the ' " ' from each string(date) using string.Remove("\""); method 3- convert the string to date and compare the two dates DateTime.Compare(date1, date2); 4- based on value returns from DateTime.Comapre -1, 0 or 1 … | |
Re: use two dataset instances one for each of which. | |
Re: public static void RaceCar(); //error public RaceCar raceCarInstance = new RaceCar(); //correct raceCarInstance.X = .... raceCarInstance.Y = .... public void Move(); //wrong raceCarInstance.Move();//correct public void Employee();//wrong public Employee employeeInstance = new Employee();//correct employeeInstance.fname = .... employeeInstance.lname = .... employeeInstance.phone = .... .... Please read in OOP before coding in C#, … | |
Re: Drag the combobox on your form, you will see a small arrow above the top right combobox press on it and assign it a datasource(it's a wizard) just follow it. | |
Re: You may fill your parameter in array[1] and send it to make sute it sent by reference.. | |
Re: Oracle forum [url]http://www.daniweb.com/forums/forum129.html[/url] ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] They'd help you here's C# only.. | |
Re: Please move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/thread117180.html[/url] reader.GetString(coulmnNumber); or reader.GetInt32(columnNumber); based on your column data type and its number. | |
Re: Make use of anchor property of the control. | |
Re: Please move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] that's for C# only. | |
Re: To block some users to view some pages is controlled by some simple authentication methods (For more information please go to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url]) to disable printing I don't really know you may ask there also.. | |
Just one question flashed in my mind who spent Mandatory service (Military service)??? and what do you think about Army?? | |
Re: You can add Media Player component to play sound files. or you can start process (Media Player) in background.. | |
Re: You need to automate with IE, search on the COM get the current IE instance and add it as reference and go through it.. | |
Re: Click-once deployment, projects from type deployment and setup from VS IDE | |
Re: Read in System.XML.XMLReader and System.XML.XMLDocument classes | |
Re: TimeSpan class helps you to do that.. | |
Re: Not possible, enum based on just integers int, uint,... | |
Re: Thread subject is totally different from your question, please clarify what you need and I hope I can help you | |
Re: [code=C#] int i = 5; int[] x = new int[x]; [/code] | |
Re: [url]http://msdn2.microsoft.com/en-us/library/system.appdomain.createinstancefromandunwrap.aspx[/url] or [url]http://www.google.com.eg/search?hl=en&q=CreateInstanceFromAndUnwrap&meta=[/url] | |
Re: if you got it in string you can extract it by many ways, like parsing the string or Regular Expression... | |
Re: You can't bind data to CheckBox but you can use BindingContext to bind just specific value returns from database.. | |
Re: [code=vb.net] try { odbcConnection.Open() } catch { MessageBox.Show("ODBC not working") } [/code] | |
Re: You can't bind data to CheckBox but you can use BindingContext to bind just specific value returns from database.. | |
Re: If the text well formatted you can use regular experssion to separate the path of image from the description.. | |
Re: [code] [COLOR=#0000ff]double[/COLOR][COLOR=#000000] CalculateFederalTax([/COLOR][COLOR=#0000ff]double[/COLOR][COLOR=#000000] grossPay, [/COLOR][COLOR=#0000ff]string[/COLOR][COLOR=#000000] taxStatus)[/COLOR] { [COLOR=#0000ff]if[/COLOR] (taxStatus == [COLOR=#a31515]"S"[/COLOR]) { [COLOR=#0000ff]if[/COLOR] (grossPay < 240) [COLOR=#0000ff]return[/COLOR] grossPay * 0.12; [COLOR=#0000ff]else[/COLOR] [COLOR=#0000ff]if[/COLOR] (grossPay < 480 && grossPay > 240) [COLOR=#0000ff]return[/COLOR] grossPay * 0.18; [COLOR=#0000ff]else[/COLOR] [COLOR=#0000ff]if[/COLOR] (grossPay < 720 && grossPay > 480) [COLOR=#0000ff]return[/COLOR] grossPay * 0.25; [COLOR=#0000ff]else[/COLOR] [COLOR=#0000ff]if[/COLOR] (grossPay >= … | |
Re: I won't write code for you but I'll guide you to the class which helps you in such problem TimeStamp and for message box, MessageBox.Show("Message..."); | |
Re: Do you know SQL Select statement??! that's the help you need. | |
Re: Kindly move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] to get help.. | |
Re: I think for every Bluetooth driver an interface you can work with, this interface containes method like SendData, ..... read in your Bluetooth driver documentation! | |
Re: C# is just a tool; you need data structure to create a map, you just will need C# to code the algorithm and representing it | |
Re: Nothing called [B]transactions per second[/B] rather it depends on data capacity sent\received to\from server\application | |
Re: I think there are some usernames and passwords for Oracle Database configured for first use like username: scott password: tiger and so on, to connect easily like SQL Server to Oracle from VS you need ODP (Oracle Data Provider) libraries on [url]www.oracle.com[/url] | |
Re: I guess I guess it may fail because SQL Service didn't start yet.. Follow Jerry advice for better error understading.. | |
Re: Because you didn't implement all interface methods!! Error: 'fileStream.Person' does not implement interface member 'System.Collections.Generic.IComparer<fileStream.Person>.Compare(fileStream.Person, fileStream.Person)' | |
Re: Once you dragged and dropped the gridview on your form, it'd ask you about the datasource, just create datasource and let it the grid's datasource. using some grid handlers you can handle on row selection something happen. first I'll let you create th grid and bind the data. If you … | |
Re: Yes, in service start event write this line [code=c#] System.Diagnostics.Process.Start(ExecutablePath); [/code] | |
Re: Disable it in form load then enable it when needed. | |
Re: They're right but where you put them in which place I mean.. | |
Re: Because of this line [B]: base(length)[/B] |
The End.