User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 402,571 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,344 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 65
Search took 0.01 seconds.
Posts Made By: cpopham
Forum: VB.NET May 31st, 2008
Replies: 2
Views: 677
Posted By cpopham
Re: Popup Form Refresh combobox on parent form

I tried that and also on the Public sub that is in the parent form I put it there as well, but it is still not working...
Forum: VB.NET May 31st, 2008
Replies: 2
Views: 677
Posted By cpopham
Popup Form Refresh combobox on parent form

I have a parent form that has a combobox. Whn the form loads I get the data from the db and bind to the combobox. that works fine and here is the code I use in form load to cause this to...
Forum: VB.NET May 25th, 2008
Replies: 0
Views: 458
Posted By cpopham
update sqlce commandbuilder

I am trying to learn VB .NET again. Have not used in a long time. I have bound my controls to my datatable and then I put values into the controls, I then have a button that I am trying to get to...
Forum: VB.NET May 23rd, 2008
Replies: 0
Views: 185
Posted By cpopham
Relearning VB .Net Combobox question

Okay, it has been a while since I have used Vb .Net and I have now downloaed and installed Vb .net 8 express. I have setup a relational database in sql compact. I am trying to get a compbo box that...
Forum: Database Design Mar 11th, 2007
Replies: 1
Views: 1,376
Posted By cpopham
Re: problem with naming intersection entity!

Generally a joint table should contain the names of both tables, such as ACCOUNT_CUSTOMER.
Forum: MS Access and FileMaker Pro Mar 11th, 2007
Replies: 2
Views: 3,429
Posted By cpopham
Re: [Stupidity] I Forgot My Ms. Access Database Password. Help..

There are several apps depending on the ver of access that you are using. Do a search on google and you will find several.
Forum: MS Access and FileMaker Pro Mar 11th, 2007
Replies: 3
Views: 4,057
Posted By cpopham
Re: Perform a calculation in a query

You can also use queries to calculate fields from several tables, perform regular calculations, etc. You can also perform calculations inside a report based on grouping and that may be easier, but I...
Forum: MS Access and FileMaker Pro Mar 11th, 2007
Replies: 4
Views: 7,391
Posted By cpopham
Re: Email Validation Rule with MS ACCESS

Try looking at the InStr function examples on this page:

http://office.microsoft.com/en-us/access/HA010547271033.aspx

Chester
Forum: MS Access and FileMaker Pro Mar 11th, 2007
Replies: 3
Views: 4,057
Posted By cpopham
Re: Perform a calculation in a query

Okay, first things first. What type of calculation are you attempting to do in the query? Are you calculating across multiple fields? Please provide a little more information about the calculation...
Forum: MS Access and FileMaker Pro Mar 6th, 2007
Replies: 2
Views: 2,420
Posted By cpopham
Re: Querying a Calculated Field?

Calculated fields in forms only exit in the form. You cannot query a calculated field from a form. You can regenerate the calculations in a query based on the same table the form is base on....
Forum: MS Access and FileMaker Pro Mar 6th, 2007
Replies: 1
Views: 1,774
Posted By cpopham
Re: Changing a default value on the fly

You could use a variable. Put a form level variable that is set to the current date on form load and assigns the variable date to the field. Then on the field on the BeforeUpdate assign the date...
Forum: VB.NET Aug 8th, 2006
Replies: 1
Views: 3,366
Posted By cpopham
Database table convert to xml document to cache

I am building a website. I have a database table that contains tips. The tips table is simple, it contains an ID column and a Tip column. I have a datareader to read the table and fill a datatable,...
Forum: VB.NET Jun 2nd, 2006
Replies: 3
Views: 3,729
Posted By cpopham
Repair Access database

Here is one that is stumping me.

I have an Access 2000 database backend. It got corrupted. It is a large database. I compacted and repaired it and a record came up corrupted. There was a compact...
Forum: VB.NET May 30th, 2006
Replies: 9
Views: 8,435
Posted By cpopham
Re: Splash Screen

You will need to use a submain procedure. Create a splash screen form and create a timer event. Set the timer to how long you want the splash screen to stay visible. On you submain, set your...
Forum: ASP.NET Mar 25th, 2006
Replies: 8
Views: 3,329
Posted By cpopham
Re: Database encryption

So I should just develop a traditional database app and not go ASP .NET. The reason I need to encrypt is because my app will have financial information and items such as social security numbers. So...
Forum: ASP.NET Mar 24th, 2006
Replies: 8
Views: 3,329
Posted By cpopham
Re: Database encryption

Well, I was thinking of encrypting the fields themselves, possibly using symetric encryption...

Chester
Forum: ASP.NET Mar 20th, 2006
Replies: 8
Views: 3,329
Posted By cpopham
Re: Database encryption

Yeah, I was thinking about just hashing the password. But my only problem is the web hosting company DB admins can see whatever the database contains or create a user that can do it. I want to...
Forum: ASP.NET Mar 19th, 2006
Replies: 8
Views: 3,329
Posted By cpopham
Database encryption

I am wanting to know what ways to attempt to do this. I want to set up an ASP >NET database service. The database (MySQL) will be hosted by a web hosting company which mya not be secure. I am...
Forum: Web Hosting Deals Mar 15th, 2006
Replies: 2
Views: 1,234
Posted By cpopham
Hosting Companies

I have recently had an idea which will require me to find a good hosting company. I am wanting high bandwidth, ASP .net, PHP, and MYSQL support. I also want domain name redirects to subfolders. ...
Forum: IT Careers and Business Mar 15th, 2006
Replies: 20
Views: 26,661
Posted By cpopham
Re: PayPal Money Market Fund

Yes, ING is good. I have had a savings account with them for quite sometime now. However, their turnarounds are really slow. I have had it take up to a week and a half to get my money deposited...
Forum: VB.NET Sep 23rd, 2005
Replies: 2
Views: 5,386
Posted By cpopham
Re: VB.NET: how to generate report of transaction in ebanking project

How rae your tables setup in the database backend? In a accounting / banking type of application, you should use a transcation table, which will be a bridge entity. I would put a time stamp in the...
Forum: VB.NET Sep 23rd, 2005
Replies: 1
Views: 1,694
Posted By cpopham
Re: Data Tier help

Well, it depends on what you would like to do. The main thing the datatier should do is keep the data access seperate from the rest of the application. I most often use a module and then pass a...
Forum: VB.NET Jul 8th, 2005
Replies: 10
Views: 8,697
Posted By cpopham
Re: Issue related to combobox....

Are you setting the m_strExpDate vairable to the date the user selected on the calender?

Chester
Forum: VB.NET Jul 4th, 2005
Replies: 1
Views: 1,481
Posted By cpopham
Re: connection from 3 location?

If I understand what you are asking, then the database backend will take care of the updates and you would be able to see the changes immediately no matter where you are connecting from.

Now is...
Forum: VB.NET Jun 28th, 2005
Replies: 2
Views: 5,116
Posted By cpopham
Re: VB.net deployement with MYSQL

Why are you needing mysql installed on all of the local machines. This would create many servers, which can be a security risk. A major point of having a database server is to bring all of the data...
Forum: VB.NET Jun 28th, 2005
Replies: 3
Views: 3,860
Posted By cpopham
Re: Session Variables a threat?

If someone can gain access to your computers memory where the session variables reside, you have a lot more to be concerned about than the session variables. Now in asp where you are going over the...
Forum: VB.NET Jun 27th, 2005
Replies: 0
Views: 13,376
Posted By cpopham
dataset add relation datacolumns dynamically

Okay this is a good one I believe. In a dataset, you can create single relations (ParentTable.PrimaryKey to ChildTable.ForignKey) using the dataset.relations.add method. You can use a string...
Forum: MySQL Jun 25th, 2005
Replies: 1
Views: 2,562
Posted By cpopham
create user copy priveleges

I have a general user account which has all of thr rights and priveleges that I wan all of my users to have. Is there an easy way to copy this account to create new users with the same...
Forum: MySQL Jun 13th, 2005
Replies: 0
Views: 3,016
Posted By cpopham
Using MySql on Mandrake Linux 10.1

Okay, I have been working with MySql for quite a while on Windows and can generally do what I need. I use Navicat to do a lot of the work because it is a lot faster than working it from a prompt. ...
Forum: VB.NET Jun 1st, 2005
Replies: 0
Views: 2,415
Posted By cpopham
FileSystemWatcher Novell network

I have created a program to monitor a network folder for file additions based on this link: http://abstractvb.com/code.asp?A=1081

It works fine on my local drive, but does not work for a Novell...
Forum: VB.NET Apr 26th, 2005
Replies: 3
Views: 1,819
Posted By cpopham
Re: Where do my programs reside?

This is pertaining to executables. If you put an executable on the network and then allow the users to execute it from the network drive, then allow your users to execute it, you would have...
Forum: MySQL Apr 22nd, 2005
Replies: 1
Views: 1,765
Posted By cpopham
MySQL Question(s)

I am a student and am developing my knowledge of MySQL and am practicing using it as a backend for some of my apps. I can run MySql on my laptop (Windows XP Pro) and use my apps referring to the...
Forum: VB.NET Apr 20th, 2005
Replies: 2
Views: 13,411
Posted By cpopham
Re: Leave Application

Some public holidays vary from state to state and some public holidays are celebrated at different times. For example WV had the Monday off following New Year's and GA had the Friday off before New...
Forum: VB.NET Apr 11th, 2005
Replies: 26
Views: 7,244
Posted By cpopham
Re: New Release of VB dotnet (2005)

Microsoft will be releasing at least three "flavors" of the new Visual Studio Suite. One will be targeted at enterprise development, another version will be targeted at smaller firms and individuals...
Forum: VB.NET Apr 10th, 2005
Replies: 26
Views: 7,244
Posted By cpopham
Re: New Release of VB dotnet (2005)

For web development, you can also go to aspfree.com and download webmatrix. It works pretty well and is open source. Microsoft is adding ome nice features to try and get developers to lay down the...
Forum: VB.NET Apr 9th, 2005
Replies: 26
Views: 7,244
Posted By cpopham
Re: New Release of VB dotnet (2005)

You can Purchase Visul Studio .Net 2003 Professional Educational and it has Crystl Reports .net, I also have created custom controls on my educational version of Visual Studio. I just can not use it...
Forum: VB.NET Apr 8th, 2005
Replies: 4
Views: 2,857
Posted By cpopham
Re: Add a new tool permanently to toolbox

When I add the tool to a particular solution, it will stay in that solution, but if I start a new solution, all of my tools that I have added disappear in the new solution. I make a new tab named...
Forum: VB.NET Apr 7th, 2005
Replies: 4
Views: 2,857
Posted By cpopham
Re: Add a new tool permanently to toolbox

Through the customize option,,,

Chester
Forum: VB.NET Apr 4th, 2005
Replies: 13
Views: 3,087
Posted By cpopham
Re: VB.NET app and Windows98se

Okay, you can just install Access on your computer. Yes XP will operate faster than 98 when you have the .net 1.1 framework installed, but you do not have to have office 2003 installed. We have...
Forum: VB.NET Mar 31st, 2005
Replies: 10
Views: 15,049
Posted By cpopham
Re: ComboBox Events

You can set up one sub and then set it to handle all of the events such as on lostfocus on mouseleave, etc. Then you could assign the row value to a variable possibly...

Chester
Showing results 1 to 40 of 65

 
All times are GMT -4. The time now is 10:26 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC