Search Results

Showing results 1 to 40 of 40
Search took 0.01 seconds.
Search: Posts Made By: lolwtf
Forum: VB.NET Nov 4th, 2009
Replies: 1
Views: 254
Posted By lolwtf
I have 2 datetimepickers on my form, and I use them to pass parameters to my sql queries for reporting purposes. You would use them to pick a date range and display clock in times for employees. ...
Forum: VB.NET Sep 2nd, 2009
Replies: 6
Views: 336
Posted By lolwtf
Hi Experts,

At the office, we are trying to decide if we want to go with Crystal Reports or ComponentOne. If anybody has used both could you list some advantages and disadvantages?

Thanks!
Forum: JSP Aug 18th, 2009
Replies: 1
Views: 414
Posted By lolwtf
Hi Experts,

I already have a database set up in SQL Server that I have used with vb.net in the past, and would like to use it with JSP. I just started JSP last week, and have no idea what I'm...
Forum: VB.NET Aug 17th, 2009
Replies: 1
Views: 397
Posted By lolwtf
HI experts,


I created a crystal report that works great, however I need to have a different page that always shows up at the end of the report. I cant figure out how to create a new report that...
Forum: VB.NET Aug 12th, 2009
Replies: 4
Views: 511
Posted By lolwtf
So your just trying to populate a combo box then? First you need to set up your sql connection object, then your sql data adapter object. Make sure your able to connect to your database. Open a...
Forum: VB.NET Aug 11th, 2009
Replies: 4
Views: 511
Posted By lolwtf
Post all of your code so I can look at it.
Forum: VB.NET Aug 6th, 2009
Replies: 2
Views: 196
Posted By lolwtf
Hi all,

I'm going to attempt to create middleware in C# and i need some advice. What I'm looking to do is have an open socket, then when our VB app connects to it, it makes another socket and...
Forum: VB.NET Jul 28th, 2009
Replies: 6
Views: 228
Posted By lolwtf
Forum: VB.NET Jul 28th, 2009
Replies: 6
Views: 228
Posted By lolwtf
I get the logic, but does anyone have an code snippets or examples? sorry for being a pest :)
Forum: VB.NET Jul 28th, 2009
Replies: 6
Views: 228
Posted By lolwtf
basically what I'm looking for is when the user types something into the text box, it will filter out everything and only show what was typed in. For example if i had a listbox that had these three...
Forum: VB.NET Jul 28th, 2009
Replies: 6
Views: 228
Posted By lolwtf
Hey all,

I have a listbox, textbox, and search button on my form. I am populating my listbox with data from a sql database. I need to be able to seach my listbox and filter it. Here is what I...
Forum: VB.NET Jul 28th, 2009
Replies: 6
Views: 645
Posted By lolwtf
Thank you for your help teme64! I finally got it to work :)
Forum: VB.NET Jul 27th, 2009
Replies: 6
Views: 645
Posted By lolwtf
Okay I put that code and breakpoints that you suggested in there and it looks like the InkPicture1.image is what its stopping at. I tried doing something like this


If...
Forum: VB.NET Jul 24th, 2009
Replies: 6
Views: 645
Posted By lolwtf
For some reason that gives me an "object not set to an instance of an object" exception. Any ideas to why that is?
Forum: VB.NET Jul 17th, 2009
Replies: 1
Views: 190
Posted By lolwtf
Use this tutorial:

http://www.dreamincode.net/forums/showtopic103960.htm
Forum: VB.NET Jul 17th, 2009
Replies: 7
Views: 798
Posted By lolwtf
Okay Ill try that. It might take me a while to figure it out but ill get back to you :)
Forum: VB.NET Jul 17th, 2009
Replies: 6
Views: 645
Posted By lolwtf
I'm using the ink picture control and I'm having trouble getting my code to work. The inkpicture control is used for tablet pcs when the user draws inside the control. I just want to be able to save...
Forum: VB.NET Jul 16th, 2009
Replies: 7
Views: 798
Posted By lolwtf
Basically all I'm trying to do is fill a data set and send it over the network. The data set has just a bunch of names in it. Im going to try and send it to another list box on another computer.
Forum: VB.NET Jul 16th, 2009
Replies: 7
Views: 798
Posted By lolwtf
Thanks for the quick reply Stevoni! Let me try this out and ill let you know if i got it to work. Thanks again!
Forum: VB.NET Jul 16th, 2009
Replies: 7
Views: 798
Posted By lolwtf
Can it be done in vb.net? I've looked online but haven't been able to find anything. If anyone can help me with this, I'd really appreciate it :)
Forum: VB.NET Jul 15th, 2009
Replies: 4
Views: 336
Posted By lolwtf
Okay i took a look at the article and incorporated some code into my project. The problem is i have another form that's coming up with a report viewer loading the crystal reports. Here is the code...
Forum: VB.NET Jul 15th, 2009
Replies: 4
Views: 336
Posted By lolwtf
Whats the differnece between the background worker and using threads? I'm kinda confused still.
Forum: VB.NET Jul 15th, 2009
Replies: 4
Views: 336
Posted By lolwtf
Hi all,

I have a program which connects to sql and uses crystal reports. I have many records and crystal reports takes a while to load up. Would multi threading help improve performance? Here...
Forum: VB.NET Jul 13th, 2009
Replies: 0
Views: 296
Posted By lolwtf
I use an ODBC connection through a dsn, and I was wondering what would be the best way to handle some exceptions. There are two things that I need to catch:

1. If user cannot connect to data...
Forum: VB.NET Jul 2nd, 2009
Replies: 5
Views: 355
Posted By lolwtf
adatapost's code worked. Thanks guys!
Forum: VB.NET Jul 1st, 2009
Replies: 5
Views: 355
Posted By lolwtf
Thats sort of what im looking for. I have this so far:
DGVTime.Columns("InOuTime").

InOutTime is my variable in sql but im stuck at this part.
Forum: VB.NET Jul 1st, 2009
Replies: 5
Views: 355
Posted By lolwtf
I have a datagridview that tracks when employees clock in and out. I used the datetime data type in sql but I dont want the year to display. How would i go about doing this? Do i have to modify my...
Forum: VB.NET Jun 25th, 2009
Replies: 6
Views: 1,200
Posted By lolwtf
That did it! thank you!
Forum: VB.NET Jun 25th, 2009
Replies: 6
Views: 1,200
Posted By lolwtf
OdbcConnection1.Open()


DBATimeOff.SelectCommand.CommandText = "SELECT FName FROM tblEmployee"
Forum: VB.NET Jun 25th, 2009
Replies: 6
Views: 1,200
Posted By lolwtf
I could not get that code to work. Heres my full code if it helps:

OdbcConnection1.Open()


DBATimeOff.SelectCommand.CommandText = "SELECT FName FROM tblEmployee"
Forum: VB.NET Jun 24th, 2009
Replies: 6
Views: 1,200
Posted By lolwtf
I don't use combo boxes very much, so I basically forgot how to use them. Im connecting to an SQL database and I just want to populate a combo box with a users first name. Heres what I have so far:...
Forum: VB.NET May 26th, 2009
Replies: 5
Views: 480
Posted By lolwtf
Okay i figured out the actual code if anybody's interested:

DBAuser.SelectCommand.CommandText = "SELECT COUNT(login) FROM login WHERE userName = '" & txtUsername2.Text & "' AND password = '" &...
Forum: VB.NET May 25th, 2009
Replies: 5
Views: 480
Posted By lolwtf
DBAUser is my database adapter. As for the security and sql injection, this is just a personal project im doing for fun. I guess it would be useful later on so ill do some research on that. As for...
Forum: VB.NET May 24th, 2009
Replies: 5
Views: 480
Posted By lolwtf
I wanted to create a form where a user can create an account, have it loaded in SQL, and be able to retrieve the information and validate it. I've reached a mental block on the validation code and...
Forum: VB.NET May 22nd, 2009
Replies: 6
Views: 718
Posted By lolwtf
Actually i took your advice and i found out i was using the wrong damn port! Im such an idiot. Thanks for your help!
Forum: VB.NET May 22nd, 2009
Replies: 6
Views: 718
Posted By lolwtf
Yeah i use the mail server for outlook but i guess this is a server issue. Ill work on it some more and maybe ill get it to work eventually. Thanks anyay
Forum: VB.NET May 22nd, 2009
Replies: 6
Views: 718
Posted By lolwtf
The error that prints out is "Failure sending mail" from the System.Net.Mail.SmtpException. The inner exception says "unable to connect to remote server". I know that the mail server works because...
Forum: VB.NET May 21st, 2009
Replies: 6
Views: 718
Posted By lolwtf
I created a program in VB to send text messages to cell phones a while back but never got it to work. I using my friends mail server(I had to block out the username and password when posting the...
Forum: VB.NET May 20th, 2009
Replies: 2
Views: 1,069
Posted By lolwtf
Thank you so much for you help. I have been stuck on this for days! thanks again!
Forum: VB.NET May 20th, 2009
Replies: 2
Views: 1,069
Posted By lolwtf
I working on a personal project of mine and got stuck. The program is a simple quiz in which the user answers some questions, and their results are saved into a text file. Reading and writing to...
Showing results 1 to 40 of 40

 


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

©2003 - 2009 DaniWeb® LLC