Search Results

Showing results 1 to 24 of 24
Search took 0.01 seconds.
Search: Posts Made By: cutepinkbunnies ; Forum: VB.NET and child forums
Forum: VB.NET Aug 3rd, 2008
Replies: 8
Views: 2,202
Posted By cutepinkbunnies
Hi Tripsturr,

I'd recommend keeping the words on a MSSQL backend (or Access) if you want to have the ability to keep adding them. If you're not familiar with databases you can always use an XML...
Forum: VB.NET Aug 2nd, 2008
Replies: 5
Views: 2,795
Posted By cutepinkbunnies
To do this properly, I would focus on allowing the user to select their birthdate with a datetimepicker....or, convert their choices from your listboxes to a date.

You will need to insert error...
Forum: VB.NET Aug 1st, 2008
Replies: 3
Views: 2,542
Posted By cutepinkbunnies
I'm not sure what you're talking about doing exactly, but when I talked to Integrated Circuits via the Serial Port I used the System.IO.Ports Namespace.

Check the "Base Class Libraries - Group 2...
Forum: VB.NET Aug 1st, 2008
Replies: 2
Views: 924
Posted By cutepinkbunnies
Can you post your own in a PDF or JPG so we can help you with it?
Forum: VB.NET Jul 29th, 2008
Replies: 3
Views: 1,596
Posted By cutepinkbunnies
Ok you're getting an error with this statement
"viewList = CPDB.GetViewList"

You're trying to convert something that isn't a string into one implicitly here. If you can't do so explicitly (like...
Forum: VB.NET Jul 29th, 2008
Replies: 1
Views: 910
Posted By cutepinkbunnies
You should use a connection and a query to find all the models of a particular make, then populate the model combobox on the closeup or indexchanged event on the make combobox.
Forum: VB.NET Jul 29th, 2008
Replies: 2
Views: 522
Posted By cutepinkbunnies
Hello,

If you're getting a recordset back with no data that is an indicator that something is wrong with your SQL syntax.

I'd put a break in the code and see exactly what string you are passing...
Forum: VB.NET Jul 28th, 2008
Replies: 2
Views: 1,324
Posted By cutepinkbunnies
Most times we use recordset objects to read from datasources. We do this by:

1. Instantiating the connection
2. Instantiating the recordset object
3. Determining what data we want returned
4....
Forum: VB.NET Jul 28th, 2008
Replies: 3
Views: 1,596
Posted By cutepinkbunnies
"SELECT [Database], [Date], [User] FROM [View] ORDER BY [Database]"


Try that and see if it works. I'm assuming you have a table or a view with the name of "View", and columns within this...
Forum: VB.NET Jul 28th, 2008
Replies: 1
Views: 2,150
Posted By cutepinkbunnies
Hi Vikrant,

Frist you need to connect to your Access Database via a connection string (http://www.connectionstrings.com).

Once you're there, the easiest way of doing it (since Access seems to...
Forum: VB.NET Jul 28th, 2008
Replies: 1
Views: 4,439
Posted By cutepinkbunnies
Hi Aks,

The answer to your question is yes.

Here (http://www.codeproject.com/KB/vb/Work_with_Excel__VBNET_.aspx) is a link to some sample code. Let us know how it works out :)
Forum: VB.NET Jul 20th, 2008
Replies: 2
Views: 583
Posted By cutepinkbunnies
Yes. I'm not sure why you're not getting some type of exception thrown if its unable to reach the DB, perhaps you have coded around this possibility or there is something missing.

Make sure you...
Forum: VB.NET Jul 18th, 2008
Replies: 3
Views: 1,283
Posted By cutepinkbunnies
Hi there Ibanez

You'll probably want to look into clickonce deployment, which you can use to deploy your application to a UNC/URL and let the clients install.

The framework can easily be...
Forum: VB.NET Jan 26th, 2008
Replies: 2
Views: 1,495
Posted By cutepinkbunnies
I'm pretty sure you can. Look into executing DTS scripts from the command promt, then copy whatever you find necessary from the prompt and use it in a shell command.
Forum: VB.NET Oct 2nd, 2007
Replies: 2
Views: 1,252
Posted By cutepinkbunnies
Use the reportviewer control. You can build reports of exactly how you want the data to be shown based on a set of data. Also: you need to associate a report file with the reportviewer control.
Forum: VB.NET Sep 11th, 2007
Replies: 1
Views: 2,680
Posted By cutepinkbunnies
I'm not sure the Compact Framework supports transparency as extensively as you'd like. Here is a relevant article.

http://msdn.microsoft.com/msdnmag/issues/06/12/CompactFramework/default.aspx
...
Forum: VB.NET Sep 11th, 2007
Replies: 3
Views: 2,863
Posted By cutepinkbunnies
There is also a way you can write the exceptions to your Event Logs if that comes in handy.

If you're trying to use this to debug, you might want to use something like.

Try
blah
Catch...
Forum: VB.NET Sep 11th, 2007
Replies: 1
Solved: integer.parse
Views: 4,583
Posted By cutepinkbunnies
Try

custID = CInt(Me.custIDTextBox.Text)

Hope that helps.

Also you might want to consider assigning this value during the declaration.

Dim custID As Integer = CInt(Me.custIDTextBox.Text)
Forum: VB.NET Sep 6th, 2007
Replies: 1
Views: 678
Posted By cutepinkbunnies
My.Computer.Network.DownloadFile(Address as string, DestinationFileName as string)

Read up and make sure you're assembling the strings properly if this is how you are constructing the statement.
...
Forum: VB.NET Sep 6th, 2007
Replies: 1
Views: 671
Posted By cutepinkbunnies
This may simplify some things for you.

Dim s As String = TextBox1.Text
Dim carray As Char()
carray = s.ToCharArray

:)
Forum: VB.NET Sep 6th, 2007
Replies: 3
Views: 5,740
Posted By cutepinkbunnies
Look into the inputbox function and write the code accordingly. :)
Forum: VB.NET Jun 20th, 2007
Replies: 1
Views: 2,777
Posted By cutepinkbunnies
Look into the system.security.accesscontrol namespace.

http://msdn2.microsoft.com/en-us/library/system.security.accesscontrol.aspx
Forum: VB.NET Jun 14th, 2007
Replies: 1
Views: 3,819
Posted By cutepinkbunnies
wow...this is kind of up my alley here.

Ok first, you need to read up on the protocol for reading/writing to and from the read/writer and create code that will assemble protocol-structured...
Forum: VB.NET Apr 26th, 2007
Replies: 3
Views: 18,991
Posted By cutepinkbunnies
Look in your VB2005/Projects/<ProjectName>/debug/ folder you should see a exe in there. That is the debug exe.

This article may help too :)

http://support.microsoft.com/kb/304654

Jon
Showing results 1 to 24 of 24

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC