Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 26 of 26
Search took 0.02 seconds.
Search: Posts Made By: SydneyMcConnell
Forum: Visual Basic .NET Feb 16th, 2008, 7:33 PM
Replies: 6
Views: 378
Posted By SydneyMcConnell
Re: Insert command just doesn't work.

Rahhh. >_<
Should have thought of that, thought I tried reversing that order. Guess I didn't, but I'll give it a try when I'm in work again and let you know. Thanks. =]
Forum: Visual Basic .NET Feb 16th, 2008, 5:32 PM
Replies: 6
Views: 378
Posted By SydneyMcConnell
Re: Insert command just doesn't work.

I thought thats what it may be, but I've stepped through the code and even removed the try-catch, but it throws no error.
Forum: C# Feb 16th, 2008, 2:55 PM
Replies: 1
Views: 405
Posted By SydneyMcConnell
Re: Microsoft.Office.Interop.Word

My guess would be pull all the tables into a dataset and preform a batch sql statement on it, selecting based on what's true and then based on what's false.

What are you trying to parse the word...
Forum: Visual Basic .NET Feb 16th, 2008, 1:22 PM
Replies: 6
Views: 378
Posted By SydneyMcConnell
Re: Insert command just doesn't work.

Private Sub frmCustomers_Add(ByVal adding As Boolean)
If adding = False Then
frwRoutines.unBindData(Me)
navButtons.DataSet = Nothing
Dim strSql As String =...
Forum: Visual Basic .NET Feb 16th, 2008, 1:08 PM
Replies: 6
Views: 378
Posted By SydneyMcConnell
Insert command just doesn't work.

Hey, all.
Been a while since I've posted -- So busy XP

Anyway.

I have a giant insert statement set up, using sqlParameters added to a sqlCommand in VB.Net.
I instantiate the parameters, add them to...
Forum: Visual Basic .NET Jan 23rd, 2008, 11:09 AM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

Update:
After testing, the array is not the issue.
For some reason, it continues not to increment to the next record before doing the math again.
Is there any way to use the incrementing variable to...
Forum: C# Jan 14th, 2008, 11:05 AM
Replies: 6
Views: 434
Posted By SydneyMcConnell
Re: Better GUI

While it would increase load times, you could also do images as buttons, with an image that changes on click, or something along those lines. Just make a class and replace your buttons with the...
Forum: Other Programming Languages Jan 11th, 2008, 5:08 PM
Replies: 15
Views: 838
Posted By SydneyMcConnell
Re: RTF Codes

Touche.

However, wouldn't he be able to use the ActiveX controls that come with Office to write the output to a formatted Word Document?

Also, to me it almost seems like he's talking about doing...
Forum: Other Programming Languages Jan 11th, 2008, 10:55 AM
Replies: 15
Views: 838
Posted By SydneyMcConnell
Re: RTF Codes

I was going to suggest that he uses XML, especially if it's in hard-copy format.
Even so, I'm pretty sure word can open and convert and XML document that's been formatted with an XSLT Stylesheet.
Forum: Visual Basic .NET Jan 11th, 2008, 8:37 AM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

I'm quite sure they do, from my past experience with Basic, but I can't say for absolute certain.
Will probably be no updates today, as it's one of our exam days. Hooray for midterms!
I will check...
Forum: Other Programming Languages Jan 11th, 2008, 8:21 AM
Replies: 15
Views: 838
Posted By SydneyMcConnell
Re: RTF Codes

Is there any reason you're using rtf, in particular?
Forum: Visual Basic .NET Jan 10th, 2008, 2:19 PM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

Crystal has a function for putting numbers to words, 10 to "Ten", for example.
The function is ToWords()
It's probably nothing a little type conversion can't fix.

As for iteration, I am using it...
Forum: Visual Basic .NET Jan 10th, 2008, 12:45 PM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

Update:

I attempted to use the code in Basic, which worked fine.
I've got the code sorted out, but there are two problems.


The calculation for UnitPrice * QtyRecieved is taking the first record,...
Forum: Visual Basic .NET Jan 10th, 2008, 12:40 PM
Replies: 4
Views: 294
Posted By SydneyMcConnell
Re: Preforming a binary(SQL) search on a datagrid.

I think we may have just found it.

When you assign a datasource to a data grid in .Net, it uses something called BindingContext to handle all interfacing with that datasource.

So, after speaking...
Forum: Visual Basic .NET Jan 10th, 2008, 11:58 AM
Replies: 4
Views: 294
Posted By SydneyMcConnell
Re: Preforming a binary(SQL) search on a datagrid.

It's going to be a dynamic search, in that it will change the results every time the key is pressed. The where clause is going to be a "LIKE", and not an "=" if that's what you mean.

I'm thinking of...
Forum: Community Introductions Jan 10th, 2008, 10:46 AM
Replies: 1
Views: 150
Posted By SydneyMcConnell
Re: New Fresh Programmer Hi!!

Hi there. =]

I should be able to give you general code help if you need it, though I don't know Java syntax.
So if you have any questions about theory, or anything like that, I should be able to...
Forum: Visual Basic .NET Jan 10th, 2008, 8:22 AM
Replies: 4
Views: 294
Posted By SydneyMcConnell
Preforming a binary(SQL) search on a datagrid.

Hey, all. I have another problem that we're running into with our project.

We use data grids to handle the viewing of the main tables in our program, those tables being Employees, Invoices(Masters +...
Forum: Visual Basic .NET Jan 9th, 2008, 5:42 PM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

Thanks again! I didn't even notice that. =P
That will definitely help.
Although I may be able to do it with Basic syntax since I haven't even been using semicolons to end lines. >_>
So, that could be...
Forum: Visual Basic .NET Jan 9th, 2008, 4:16 PM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

Well I just amazed myself, because it took me this long to realize that basic syntax refers to the language and not the simplicity. Honestly I didn't know what they meant by basic syntax.

But...
Forum: Visual Basic .NET Jan 9th, 2008, 3:42 PM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Re: Crystal Reporting + VB.Net + SQL

If I were doing the code in VB, I wouldn't have a problem at all. The problem is that I'm doing it in Crystal, which is extremely akward for me, because the syntax just seems so odd. It's not...
Forum: Community Introductions Jan 9th, 2008, 3:33 PM
Replies: 2
Views: 168
Posted By SydneyMcConnell
Re: New Programmer. =]

I'm persuing a career in Software Engineering.
After I'm finished with Highschool, I'm going to a college for a bachelors in Computer Information Services in Desktop Development, after which I am...
Forum: Community Introductions Jan 9th, 2008, 12:58 PM
Replies: 2
Views: 168
Posted By SydneyMcConnell
New Programmer. =]

Hi, all.

I'm 17 Years old in a Software Engineering class at a vocational school in Ohio. My primary languages are VB.Net and C#.Net, and my primary web language is ASP.Net 2.0.

Found this in a...
Forum: ASP.NET Jan 9th, 2008, 12:56 PM
Replies: 3
Views: 542
Posted By SydneyMcConnell
Re: Free CMS

You could always try DotNetNuke.
Forum: Visual Basic .NET Jan 9th, 2008, 12:50 PM
Replies: 5
Views: 407
Posted By SydneyMcConnell
Re: Accesing Control Properties on Another Form

Should be something along the lines of:


Me.Parent.Controls("tsbSuppliers").enabled = false


Give that a try.
If it doesn't work there, try it in the child form's Disposing event.
Forum: Visual Basic .NET Jan 9th, 2008, 12:46 PM
Replies: 2
Views: 279
Posted By SydneyMcConnell
Re: Problems with Date objects

Enclose cusSet.Tables("Customer").Rows(accountIndex).Item("ExpirationDate") in a CDate, and see if that solves the issue. In some cases, it may not implicitly convert an object in an equation when...
Forum: Visual Basic .NET Jan 9th, 2008, 12:42 PM
Replies: 13
Views: 640
Posted By SydneyMcConnell
Crystal Reporting + VB.Net + SQL

Hey, guys.

I'm in a software engineering class, and we participate in competitions with BPA, the Business Professionals of America. I am in the "Software Engineering Team" competition, with two of...
Showing results 1 to 26 of 26

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 3:08 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC