1,302 Posted Topics

Member Avatar for shki_80
Member Avatar for manoj_582033
Member Avatar for shers

I've question you need to update the result form every change user makes or every some time period? I see you shouldn't overload the Show method rather make another one has two parameters dataset, string gridview.datasource = dataset gridview.DataBind() And call this method from main form once user changes the …

Member Avatar for Ramy Mahrous
0
213
Member Avatar for sivak

This question is a bit related to ASP.NET developers, I think they can guide you to the best path [url]http://www.daniweb.com/forums/forum18.html[/url]

Member Avatar for Ramy Mahrous
0
55
Member Avatar for bored4

So, what happened? exception raises? or it closes the form normally?, I can't admit that MySQL query is correct but it's ANSI-SQL all RDBMS should support it.

Member Avatar for Ramy Mahrous
0
176
Member Avatar for pavan204

- Read every hex 85, 1F, etc - Parse every hex to covert it to char [code=vb.net] Dim c as char c = (char)int.Parse(hex, System.Globalization.NumberStyles.HexNumber) [/code] - you can add 'if' statement to escape 85 and replace it with '\r\n'

Member Avatar for Ramy Mahrous
0
183
Member Avatar for rgothard
Member Avatar for robertred

It doesn't occur with me, but try to reinstall the framework, or I recommend you to report this bug to [url]http://microsoft.com/connect[/url] ->Select visual studio and report a bug

Member Avatar for Ramy Mahrous
0
76
Member Avatar for Summerston

Here you're [code=sql] SELECT WorkOrders.ID, employees.name, employees_1.name AS Expr1 FROM WorkOrders LEFT OUTER JOIN employees AS employees_1 ON WorkOrders.submitted_by = employees_1.id LEFT OUTER JOIN employees AS employees ON WorkOrders.completed_by = employees.id [/code]

Member Avatar for Summerston
0
128
Member Avatar for HBMSGuy

You can use BackgroundWorker component which has something to do and has event "work compeleted"

Member Avatar for Ramy Mahrous
0
110
Member Avatar for densman

I didn't understand your question. You need user to type in textbox then press on button, which will take textbox text and add it to list?

Member Avatar for Ramy Mahrous
0
110
Member Avatar for manoj_582033

Yes you, can and using Datagridview by clicking in Datagridview's smart arrow and configure columns.

Member Avatar for Ramy Mahrous
0
85
Member Avatar for ssDimensionss

It depends! Why you need to save user searches or you don't intend to? please tell me more about your scenarios what you need to keep track on and so on; to guide you to good design.

Member Avatar for Ramy Mahrous
0
55
Member Avatar for konczuras

Yes, that only possible solution is to get specific textbox by name or text! [code=C#] private void undotextbox(object sender, EventArgs e) { if(sender is TextBox) { switch( ((TextBox)sender).Name ) { case "": .... break; case "": .... break; } } } [/code]

Member Avatar for Ramy Mahrous
0
294
Member Avatar for Ricx

System.XML contains everything to do with xml files. But if you need quick help look at this tutorial [url]http://www.c-sharpcorner.com/UploadFile/mahesh/ReadWriteXMLTutMellli2111282005041517AM/ReadWriteXMLTutMellli21.aspx[/url] You'll just 1 line of code to wirte in text files.

Member Avatar for Ramy Mahrous
0
46
Member Avatar for thegreatkk
Member Avatar for BobLewiston

SMO libraries for .net let you query any server programatically. The hierarchy is: Server->Databases->Tables, users, stored procedures, etc... You can read more about SMO in MSDN Overview SMO: [url]http://msdn.microsoft.com/en-us/library/ms162557.aspx[/url] Creating SMO Programs: [url]http://msdn.microsoft.com/en-us/library/ms162202.aspx[/url]

Member Avatar for Ramy Mahrous
0
96
Member Avatar for nadiahkamil
Member Avatar for Ramy Mahrous
0
76
Member Avatar for VIPER5646

[url]http://authors.aspalliance.com/aspxtreme/sys/data/DataViewClassRowFilter.aspx[/url]

Member Avatar for Ramy Mahrous
0
78
Member Avatar for toko

Background for what? Desktop or Application form? Anyway you can dispose the object once you don't need it.

Member Avatar for waynespangler
0
143
Member Avatar for paramu

Let me know the exception raises, and if you need to generate rdlc on the fly I can guide you to great way to work in such thing

Member Avatar for paramu
0
311
Member Avatar for serkan sendur

To stop it noway else putting it on a specific thread then in some defined cases you kill this thread.

Member Avatar for Ramy Mahrous
0
171
Member Avatar for densman
Member Avatar for waynespangler
0
113
Member Avatar for haroldjclements

Give me an example, why you need to fire an event when an item added to the ComboBox items. as we can handle it another way

Member Avatar for Ramy Mahrous
0
53
Member Avatar for rak4u
Member Avatar for richboy
Member Avatar for fia
Member Avatar for roachae

Look, As far I got your scenario, Form2 may have property Number which holds the numbers user enters. Before closing the Form2 From Form1, read the Form2.Number.

Member Avatar for dickersonka
0
140
Member Avatar for nice_true

This is the Pseudocode Directory = GetBinDirectory(); loop Directory.Files(Filtered .mdb) print File name

Member Avatar for Ramy Mahrous
0
104
Member Avatar for anju458

If you debugged your code you'll know the error. But first thing you should modify this [Code=C#] string cs = "user id=scott;password=tiger"; cn = new OracleConnection(cs); cn.Open(); // MessageBox.Show("Oracle connection opened sucessfully"); OracleDataAdapter da = null; OracleCommandBuilder cmb = null; da = new OracleDataAdapter("select * from dept", cn); cmb = …

Member Avatar for Ramy Mahrous
0
88
Member Avatar for kapil.tandon

Look, the one who can answer this question Dundas Technical Support team, but as I worked with Dundas from time to time, it's not problem of .net, rather Dundas don't support flash movies.

Member Avatar for kapil.tandon
0
77
Member Avatar for haroldjclements

How did you admit the your control works well? maybe the problem in your control.

Member Avatar for Ramy Mahrous
0
90
Member Avatar for saqibsaleem

Add reference to this library then, modify this resource's class access modifier from internal to public

Member Avatar for Ramy Mahrous
0
42
Member Avatar for sravankolla

Try [code]formReminder.Show();[/code] instead of [Code]formReminder.ShowDialog();[/Code]

Member Avatar for Ramy Mahrous
0
128
Member Avatar for andresasongko

Dear Andresasongko, [code=SQL] select REVERSE ( substring( REVERSE(address) , 0 , CHARINDEX(' ' , REVERSE(address) ,0 ) ) ) ,address from authors [/code] That's what I tried right now, you can work to perform it better.

Member Avatar for andresasongko
0
93
Member Avatar for konczuras

Your user should be administrator to run such type of applications, you don't have to do anything from your side.

Member Avatar for konczuras
0
111
Member Avatar for wendas

[QUOTE]Does the strong Typed column field names HAVE to match the names in the DataAdaptor?[/QUOTE]Try that a lot to know the answer. I don't know your problem with DataSets, but try to generate someone from SQL Server or Access File, and tell me what you got.

Member Avatar for wendas
0
157
Member Avatar for shashikant kand
Member Avatar for Ramy Mahrous
0
39
Member Avatar for kevinRR

What came to my mind is to through a copy of the layer you draw on in the form, i.e bitmap image into ArrayList for every change through a copy into the ArrayList.... So, your ArrayList should be like that Oldest Older ... Newer Newest You can load the bitmap …

Member Avatar for Ramy Mahrous
0
74
Member Avatar for scrypt3r

Yes, you can but it should be registered [code=c#] Process p = new Process(); p.StartInfo.FileName = "notepad.exe"; // or "WINWORD.exe"; p.StartInfo.Arguments = "C:\\file.txt"; p.Start(); [/code]

Member Avatar for scrypt3r
0
85
Member Avatar for Amara
Member Avatar for serkan sendur

I don't understand anything. do you need to merge the output of two projects to one file or what??

Member Avatar for serkan sendur
0
196
Member Avatar for _::suhanna::_

Create database on SQL Server, right click on it then tasks then select import data, follow the wizard... If you want to make it programatically I guess you'll use SMO classes.

Member Avatar for msuhyd1
0
102
Member Avatar for srikanth.cpd
Member Avatar for sonia sardana
-1
168
Member Avatar for happygeek

I prefer for each forum a man of forum each month, that's would be good idea

Member Avatar for jbennet
0
617
Member Avatar for hdmnp

If you need to use wildcard with date you need to cast it first to string, and then play with it.

Member Avatar for Geek-Master
0
123
Member Avatar for njabs

Do you think it's related to MS SQL Server? or do you mean MySQL\Java forum?

Member Avatar for stephen84s
0
135
Member Avatar for maniac1982

Good, but where is your questions? Just begin and if you faced any problem drop a question after your approaches to solve it.

Member Avatar for maniac1982
0
252
Member Avatar for eck3ko
Member Avatar for chris5126

[code=c#] string[] allData = YourMethodWhichReadFromFile(); foreach (string line in allData) string[] lineItems = line.Split(' '); //insert lineItem to database [/code]

Member Avatar for chris5126
0
172

The End.