Forum: VB.NET May 31st, 2008 |
| Replies: 2 Views: 2,608 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: 2,608 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 happen:
... |
Forum: VB.NET May 25th, 2008 |
| Replies: 1 Views: 1,688 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: 430 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: 2,101 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: 6,564 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: 8 Views: 9,493 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: 5 Views: 13,815 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: 8 Views: 9,493 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: 4,068 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: 2,728 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: 5,393 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: 4 Views: 5,415 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... |
Forum: VB.NET May 30th, 2006 |
| Replies: 9 Views: 16,070 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: 4,306 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: 4,306 Well, I was thinking of encrypting the fields themselves, possibly using symetric encryption...
Chester |
Forum: ASP.NET Mar 20th, 2006 |
| Replies: 8 Views: 4,306 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: 4,306 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,583 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 Professionals' Lounge Mar 15th, 2006 |
| Replies: 20 Views: 29,962 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: 7,315 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: 2,198 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: 11,434 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,961 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: 7,008 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: 5,610 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: 19,226 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: 3,778 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 priveleges?... |
Forum: MySQL Jun 13th, 2005 |
| Replies: 0 Views: 3,478 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: 3,141 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: 2,276 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: 2,161 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: 15,802 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: 9,362 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: 9,362 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: 9,362 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: 5 Views: 4,709 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: 5 Views: 4,709 Through the customize option,,,
Chester |
Forum: VB.NET Apr 4th, 2005 |
| Replies: 13 Views: 3,881 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: 19,052 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 |