1,302 Posted Topics

Member Avatar for MClay

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.

Member Avatar for Ramy Mahrous
0
115
Member Avatar for fatima_almahdi

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.

Member Avatar for sarehu
0
89
Member Avatar for Elmo_loves_you
Member Avatar for Ramy Mahrous
0
396
Member Avatar for jonathan.byrne
Member Avatar for Jryzac
Member Avatar for bapak

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...

Member Avatar for bapak
0
224
Member Avatar for mrnobody

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.

Member Avatar for mrnobody
0
226
Member Avatar for lorentz

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]

Member Avatar for Narue
0
142
Member Avatar for er.sajal

I think you need ILMerge [url]http://research.microsoft.com/~mbarnett/ILMerge.aspx[/url]

Member Avatar for Ramy Mahrous
0
67
Member Avatar for jitupatil_2007

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 …

Member Avatar for JerryShaw
0
112
Member Avatar for dkerr
Member Avatar for zorgoban
Member Avatar for charlie81

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#, …

Member Avatar for Ramy Mahrous
0
261
Member Avatar for Jahed

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.

Member Avatar for Jahed
0
127
Member Avatar for cetan
Member Avatar for cetan
0
218
Member Avatar for ashok.salvey

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..

Member Avatar for Ramy Mahrous
0
52
Member Avatar for Elmo_loves_you

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.

Member Avatar for peter_budo
0
106
Member Avatar for saurabh singh
Member Avatar for Swin

Please move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] that's for C# only.

Member Avatar for Ramy Mahrous
0
176
Member Avatar for pradeep10781

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..

Member Avatar for Ramy Mahrous
0
101
Member Avatar for Ramy Mahrous

Just one question flashed in my mind who spent Mandatory service (Military service)??? and what do you think about Army??

Member Avatar for DimaYasny
0
289
Member Avatar for aminit

You can add Media Player component to play sound files. or you can start process (Media Player) in background..

Member Avatar for Jx_Man
0
48
Member Avatar for er.sajal

You need to automate with IE, search on the COM get the current IE instance and add it as reference and go through it..

Member Avatar for Ramy Mahrous
0
100
Member Avatar for BstrucT

Click-once deployment, projects from type deployment and setup from VS IDE

Member Avatar for BstrucT
0
86
Member Avatar for kanjali
Member Avatar for kanjali
0
174
Member Avatar for sukhy_1
Member Avatar for bhavna_816
Member Avatar for fishsqzr
0
182
Member Avatar for terjohnny

Thread subject is totally different from your question, please clarify what you need and I hope I can help you

Member Avatar for Ramy Mahrous
0
115
Member Avatar for choudhuryshouvi
Member Avatar for mithun_kanungo

[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]

Member Avatar for Ramy Mahrous
0
43
Member Avatar for kathirvelmm

if you got it in string you can extract it by many ways, like parsing the string or Regular Expression...

Member Avatar for Ramy Mahrous
0
253
Member Avatar for lily11

You can't bind data to CheckBox but you can use BindingContext to bind just specific value returns from database..

Member Avatar for Jx_Man
0
38
Member Avatar for Halbo

[code=vb.net] try { odbcConnection.Open() } catch { MessageBox.Show("ODBC not working") } [/code]

Member Avatar for Ramy Mahrous
0
79
Member Avatar for lily11

You can't bind data to CheckBox but you can use BindingContext to bind just specific value returns from database..

Member Avatar for Ramy Mahrous
0
51
Member Avatar for Dell XPS

If the text well formatted you can use regular experssion to separate the path of image from the description..

Member Avatar for bwkeller
0
260
Member Avatar for hankora

[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 >= …

Member Avatar for dilkash2007
0
143
Member Avatar for hwa

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...");

Member Avatar for Jx_Man
0
267
Member Avatar for lacaroix
Member Avatar for Jx_Man
0
62
Member Avatar for eloans

Kindly move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] to get help..

Member Avatar for Ramy Mahrous
0
82
Member Avatar for knowledgelover

I think for every Bluetooth driver an interface you can work with, this interface containes method like SendData, ..... read in your Bluetooth driver documentation!

Member Avatar for Ramy Mahrous
0
76
Member Avatar for ank_arsenal

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

Member Avatar for Ramy Mahrous
0
72
Member Avatar for ericstenson

Nothing called [B]transactions per second[/B] rather it depends on data capacity sent\received to\from server\application

Member Avatar for ericstenson
0
105
Member Avatar for monjuri

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]

Member Avatar for jwenting
0
241
Member Avatar for knowledgelover

I guess I guess it may fail because SQL Service didn't start yet.. Follow Jerry advice for better error understading..

Member Avatar for binoj_daniel
0
563
Member Avatar for chtoph

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)'

Member Avatar for Jugortha
0
92
Member Avatar for venkatu2005

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 …

Member Avatar for Jugortha
0
220
Member Avatar for knowledgelover

Yes, in service start event write this line [code=c#] System.Diagnostics.Process.Start(ExecutablePath); [/code]

Member Avatar for knowledgelover
0
100
Member Avatar for eddy556
Member Avatar for shaim
Member Avatar for Ramy Mahrous
0
36
Member Avatar for wamuti

The End.