2,245 Posted Topics

Member Avatar for mduduDan

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 …

Member Avatar for sknake
0
194
Member Avatar for linkpraveen

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

Member Avatar for Rashakil Fol
0
2K
Member Avatar for Link82

[code] Select GetDate() --2009-09-17 16:47:34.720 Select DatePart(dw, GetDate()) --5 Select DateName(dw, GetDate()) --Thursday [/code]

Member Avatar for sknake
0
116
Member Avatar for PalC

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.

Member Avatar for sknake
-1
126
Member Avatar for mckinnm
Member Avatar for mckinnm
0
92
Member Avatar for rock9449

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]

Member Avatar for sknake
0
126
Member Avatar for brando|away

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?

Member Avatar for DdoubleD
0
1K
Member Avatar for _taz_

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 * …

Member Avatar for _taz_
0
282
Member Avatar for avgVBUser

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 …

Member Avatar for avgVBUser
0
119
Member Avatar for vampke

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"; …

Member Avatar for sknake
0
177
Member Avatar for khemalatha

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(); } …

Member Avatar for sknake
0
2K
Member Avatar for konczuras

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.

Member Avatar for sknake
0
195
Member Avatar for darkocean

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; …

Member Avatar for darkocean
0
188
Member Avatar for mjc225

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.

Member Avatar for sknake
0
98
Member Avatar for arunkumars

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]

Member Avatar for sknake
0
195
Member Avatar for sakhi kul

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]

Member Avatar for manoshailu
0
195
Member Avatar for avi-reiter

It also depends on how much activity goes on in the database. You need to elaborate on your project a little more.

Member Avatar for sknake
0
41
Member Avatar for sknake

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

Member Avatar for Dani
0
168
Member Avatar for ddanbe
Member Avatar for DdoubleD
0
364
Member Avatar for VIkhers

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.

Member Avatar for Salem
-1
70
Member Avatar for jcl43

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 …

Member Avatar for jcl43
0
107
Member Avatar for oufa

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.

Member Avatar for princeayaz
-1
84
Member Avatar for chathuD

Upload the project you have so far and someone will be glad to take a look at it and help implement the functionality required

Member Avatar for chathuD
0
101
Member Avatar for facadie

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 …

Member Avatar for facadie
0
121
Member Avatar for hery

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 / …

Member Avatar for sknake
0
246
Member Avatar for wael12211

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

Member Avatar for sknake
0
374
Member Avatar for ofir0803

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 …

Member Avatar for sknake
0
186
Member Avatar for Cory_Brown

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

Member Avatar for Cory_Brown
0
163
Member Avatar for mania_comp

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]

Member Avatar for serkan sendur
0
260
Member Avatar for facadie

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 …

Member Avatar for sknake
0
173

The End.