1,302 Posted Topics
Re: That's simply because you don't write anything to the stream!! Here you're [code=vb.net] ab = RichTextBox1.Text.Replace("\n", "\r\n") ' to keep new lines in text file like richbox Dim stringAsBytes() As Byte stringAsBytes = New System.Text.ASCIIEncoding().GetBytes(ab) myStream.Write(stringAsBytes, 0, stringAsBytes.Length) myStream.Close() [/code] | |
Re: You can work with MySQL as backend from .net application using their libraries on [url]http://mysql.org[/url] | |
Re: Very great question, DotNetNuke is an open source web application framework ideal for creating, deploying and managing interactive web, intranet, and extranet sites securely. More on [url]http://www.dotnetnuke.com/[/url] | |
Re: So, show us your ERD I am bit lost in the description. | |
Re: If you col1 not primary key you can use trigger to check on the columns in [B]inserted table[/B](read about it in triggers) if col1 data already exists don't insert it in the destination table. | |
Re: It hasn't any process created for it!! it attached to your application. but also if you terminate the application it doesn't (fuzzy) read in GetTypeFromProgID documentation | |
Re: Are you developing in VB.NET project?? or C# project? please send us screenshot your code should work right! | |
Re: Give me sample data and what you need to get, then I can understand you well | |
Re: You can work with crystal reports using Reporting tools in VS toolbox it'd help you a lot, try it! | |
Re: This ComboBox in VB.NET form or in Excel sheet? | |
Re: Look my friend I don't know how you don't know the size of array and you said you will generate some number, so tell me when you'll stop generating numbers? Any way I know you question is away from this. Your question answer is [code=vb.net] For index As Integer = … | |
Re: You mean to not let the user to select it by himself? if so check this [url]http://www.daniweb.com/forums/thread168467.html[/url] | |
Re: Catch the transaction code, and show me the error raised! | |
Re: I develop using C# 4 years ago, but from just one month I used to go to VB.NET forum and answer... and if you answered Dany's questions, you'd have the answer of yours :) | |
Re: 1- Depends on your version but it doesn't make any difference. 2- Yes calling UDF like SP, search how to use it in .net 3- Pre-compiled queries, you can use some logic (splitting strings, some calculations, etc..) 4- In some situations you'd better to write UDF than programming code. haa, … | |
Re: If it's not confidential, you can show us the SP to see if we can optimize it. I think in connection string you can specify the time out value play with it, it may solve the problem on the first machine. | |
Re: [QUOTE]I am trying not to run multiple queries.. and was wondering if there is a efficient and condensed way of doing this? [/QUOTE] Stored Procedure. If you need help in designing database please send us a description to these tables. I don't know what you need from this query?? do … | |
Re: What's the error? You can use Import\Export data. (right click on the database->All tasks-> Import\Export data) I guess the error because there's violation in primary key... you've to provide us with the error. If the two tables (has difference in structure columns number, different datatypes) I recommend you to use … | |
Re: Yes, but first tell me what you'll give more over IE, FF, and Chrome? or it just repeating?? and about your actual answer, I won't answer more than Salem, any one! | |
Re: In asp.net forum they answer such questions relevant to web development | |
Re: Tell me sample data and illustrate what you need to get from them | |
Re: Look I've experience about that, I never ever use SMTP to send emails because I am sure the destination would be the JUNK! I use CDO (Microsoft CDO for Windows 2000 library) instead. | |
Re: Very great you can share them and make communities around them too at [url]http://codeplex.com[/url] | |
Re: [QUOTE]forum application in asp.net with c#.[/QUOTE] and it's VB.NET forum anyway, you mean to provide the user with bold, underline, colors, to enrich his message, that's is normal buttons add some html tags on the message, I'm sure if you ask this question in asp.net forum you'll find some experts … | |
Re: Here you're [url]http://www.connectionstrings.com/oracle[/url] | |
Re: I recommend you to ask this question in Visual Basic 4 / 5 / 6 forum [url]http://www.daniweb.com/forums/forum4.html[/url] | |
Re: [QUOTE] NullReferenceException[/QUOTE] I think you used an button without [B]new[/B] it. and you have to because it's reference type. [out of topic] someone professional in Java, the next step should be C# not VB.NET:) | |
Re: That's the same when you ask how to pass value to another class. [icode]fz.SomeMethodTakeStringAsParameter(fileName)[/icode] haa?? | |
Re: SQL Script is declarative which means you just need something without any knowledge how the engine will get it for you. Title, description, etc are strings so, you need to know how to get search in string and get string which starts with\ends with\contains character(s) .. | |
Re: 1- Try to know more about ADO.NET. 2- Read about CheckBox, your question is really simple, you just need to read more... tell me what did you try? | |
Re: Very common mistake for who works with files, that they don't replace \n with \r\n your text in textbox.Text = "lmlmalma\n lmlmla" that's wrong to do that [icode]File.WriteAllText(saveFileDialog1.FileName, textFile1);[/icode] rather [icode]File.WriteAllText(saveFileDialog1.FileName, textFile1.Replace("\n", "\r\n"));[/icode] | |
Re: if MethodInfo instance.Property = ? get else don't get | |
Re: You need to get handler to the other form, usually made using windows libraries, read in.... | |
Re: ASP.NET forum helps better My friend, it simple task try to show your effort in, to let people help you, you won't find someone who writes this task for you | |
Re: Hold current TabPageIndex in integral variable, and once the click done on any TabPage set the TabControl SelectedIndex = the integral value [icode]tabControl1.SelectedIndex = integral variable;[/icode] | |
Re: obsolete attribute means this method is old, and another one is used (GetHostEntry in your case)! We use this attribute to tell developers who use our libraries that this method no longer use and use an alternative (the new one) + telling the compiler to raise warning or error if … | |
Re: Preferable to make it on your own! you need non-model + no beep, so?! but if you need to get how the user close the form without additional code you must use Model mode [B]DialogResult[/B] | |
Re: Tell me what the result of QueryString1... write it here please | |
Re: Yes, there's, right click on the database and copy, and follow the wizard... | |
Re: You should know OOP principles well. then come to the question Java or C#?. C# or Java?, you can spend all your life with people fighting to reach what the best. It's up to you. What you need to work with Microsoft technology (VS, WCF, WF, C#, Windows, SQL Server … | |
Re: 1- Please when embedding code, use code tags to make yout code readable [code=vb.net] Dim result As Decimal result = Decimal.Divide(Decimal.Parse(TextBox1.Text), Decimal.Parse(TextBox2.Text)) result = FormatNumber(result, 2, TriState.False) Label1.Text = String.Format("the result = {0} ", result) [/code] | |
![]() | |
Re: In such cases to not change all database setting to be case sensitive I usually cast it to varbinary [code=sql]select lmlmlaa from lmlmlaa where CAST(columnName AS varbinary(8)) = CAST(@value AS varbinary(8)) [/code] | |
The End.