2,245 Posted Topics
Re: You only add COM exposed libraries or managed libraries as a project reference. For other types of libraries you manually import the functionality of the lib (which it sounds like you need to in this case). Here is how you would call ShellExecute() from shell32.dll in %WINDIR%\system32\shell32.dll without adding a … | |
Re: I often create business entity objects, such as an Invoice, and then i use [icode]List<Invoice>[/icode] to have a list of invoices... such as the sales for that day. There you are using the generic List<of Type T>. | |
Re: [code] Select GetDate() --2009-09-17 16:47:34.720 Select DatePart(dw, GetDate()) --5 Select DateName(dw, GetDate()) --Thursday [/code] | |
Re: You mean issue an update query to the database? [code=sql] Update Table set Field= <textbox.Text> [/code] Please don't private message about a thread. I will read it. | |
Re: Can you upload a project? I have no idea what you're talking about. | |
Re: You can also set the password property in your .aspx markup: [code] <asp:TextBox ID="TextBoxPassword" runat="server" TabIndex="2" Width="200px" CssClass="inputBox" [COLOR="Red"]TextMode="Password"[/COLOR]></asp:TextBox> [/code] | |
Re: The image list enforces the image size for the images in the collection with [icode]imageList.ImageSize[/icode]. Is that what you were referring to? | |
Re: Try this approach: [code=sql] --No payment in last 90 days Select * From Invoice Where NOT EXISTS ( Select * From InvPayment (NOLOCK) Where Invoice.InvNumber = InvPayment.InvNumber and InvPayment.PayDate >= GetDate()- 90 ) --Has a payement in the last 90 days Select * From Invoice Where EXISTS ( Select * … | |
Re: You should also consider wrapping your SqlCommand, SqlConnection, etc members in a [icode]using()[/icode] clause to ensure IDisposable.Dispose() is called. These data accessors use unmanaged resources so you should ensure that clean up takes place as soon as possible. Please mark this thread as solved since TomW did an excellent job … | |
Re: Date formatting issues -- which is why you should use parameterized queries so this won't be a problem. Here is an example of SQL Server but you can change the class names over to OleDb: [code=vb.net] SqlCommand command = connection.CreateCommand(); command.CommandText = "SELECT * FROM Customers WHERE CustomerID = @CustomerID"; … | |
Re: Drop a datagridview on a form and try this: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace daniweb.dgv { public partial class frmDataGridView5 : Form { private DataTable dt; private DGVColumnHeader colHead; private bool suspendEvents; public frmDataGridView5() { InitializeComponent(); } … | |
Re: Also post the code you are using to fetch the RSS feed. Somewhere along the way you may be missing an opportunity to specify the proper encoding. | |
Re: I think this is what you want? [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace daniweb { public partial class frmFindForm : Form { public frmFindForm() { InitializeComponent(); } private static Form FindOpenForm(Type typ) { for (int i1 = 0; … | |
Re: If you're controlling the site but they control the domain, why don't you have them set up a DNS entry for [url]www.domain.com[/url] to your server and host the domain that way? Doing what you're talking about can work but it will be a nightmare to support. | |
Re: From what I know you can't set drag & drop for a picture box, but you can set it for the form: [url]http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/360629bb-633c-4eeb-92a4-0af75de893fd[/url] | |
Re: Can you post your table structures and paste the error message from the SQL Server? Please use code tags when pasting: [noparse] [code] ...code here... [/code] [/noparse] | |
Re: It also depends on how much activity goes on in the database. You need to elaborate on your project a little more. | |
I tried to update my profile picture and I deleted the old one but now I get an error "Unable to save image" when trying to upload a new picture | |
Re: Same here. Maybe I will be able to use my iPhone on DW now :) | |
Re: You're trying to do too much without integrating natively with Excel or using COM. You can use vba automation or have an application control the Excel instance but i'm afraid the way you're trying to go about this isn't safe and will likely lead to data loss. | |
Re: You shouldn't want to stop base constructors from being called -- ever. This is probably a design issue so please post more code or what your intensions are. If a base class implements a [icode]List<string>[/icode] that and has classes the derive from it -- then it stands to reason they … | |
Re: That depends what you want to do. Do you want to support cisco hardware? Then CCNA is the route to take. Or do you want to support Windows servers? If so then I would take MCSE. | |
Re: Upload the project you have so far and someone will be glad to take a look at it and help implement the functionality required | |
Re: You can close any number of forms you want at runtime. The only limitation is how you choose to go about it. Explain the call order for these forms. Here is one way to go about it: [code] namespace daniweb { public partial class frmHTTP : Form { private frm1 … | |
Re: This should do the trick: [code] Imports System.Globalization Public Class frmFormat Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim nfi As NumberFormatInfo = New CultureInfo("en-US", False).NumberFormat nfi.NumberDecimalSeparator = "," nfi.NumberGroupSeparator = "." Dim tempBASIC As String = "150000" Dim decResult As Decimal = ((tempBASIC / … | |
Re: You could stun your professor and take this one step further -- submit the credit card to a merchant for payment processing. They will do extensive validation on the card number :) | |
Re: That is because you're not returning a value. There are two possible fixes here. [code] public [COLOR="Red"]string [/COLOR]Main(string[] args) [/code] The highlighted section of the code means that it is expecting for you to return a string value. So we can return a string value or change the declaration to … | |
Re: [QUOTE=adatapost;985608][code] string[] ar = listBox1.SelectedItems.Cast<string>().ToArray<string>(); [/code][/QUOTE] That is handy! For unboxing casts I have always used the .ConvertAll() but this is much easier to call :) What I have been doing: [code] double[] sArray2 = lst.ConvertAll<double>(new Converter<decimal, double>(Convert.ToDouble)).ToArray(); [/code] | |
Re: No you can't. You need to use a client side [icode]alert()[/icode] with javascript. You can read about client side events here: [url]http://www.eggheadcafe.com/articles/20041016.asp[/url] | |
Re: You can do it in code with all the text boxes. In this case I have textBox1 thru textBox10: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace daniweb.textboxes { public partial class Form1 : Form { private TextBox[] _textBoxCollection; public … |
The End.