Answer Questions
vjFlexx VBA in VB.Net
I'm trying to build a Project in VB.Net 2005 Beta2 which includes the VBA Editor from the VBA SDK. But i didn't find any sample Code in the SDK, and so i don't know how to do this. Could anybody help me e.g. with a small sample ciao stephan Hi Stephan, It's been a while since I've looked at the VBA SDK...but because you're trying to call unmanaged code (VBA) from managed (VB.NET 2005) the basic problem you ne ...Show All
Jonathan Willcock How To Add Coulmn in table MS Access database
I'm using VB2005 , 2003 I have created my database, but with time I need to add or delete some columns in my table, How can I do it Goodness, I've been working on such a project for a month and this is different from anything I've been told and I've written entire ADOX classes around what I've been told. Let us hope that Blair strolls by and reads this in between negations of VB so he can comment, not to question you, but to fi ...Show All
Greg Beam How secure is a ClickOnce app from prying eyes?
I've just started reading up on ClickOnce deployment and it seems like a good option for applications with a straightforward installation. The question that springs to mind for me is the security of the application. I don't mean is the system being installed to going to be secure from the application doing Bad Things, but is my application going to be secure from the user trying to reverse-engineer it. I know that ClickOnce ...Show All
GrindEspresso Get Fonts name
how the best way To Read Fonts names existe in my system Private Sub TestFonts () Dim fc As New System . Drawing . Text . InstalledFontCollection Dim MyFonts As FontFamily () = fc . Families For Each ff As FontFamily In MyFonts MessageBox . Show ( ff . Name ) Next End Sub ...Show All
Shay777 Linklabel
could some1 plz tell me how to make a linklabel open up a url in your default browser 1 more thing... could u tell me a code that allows my splash screen to last longer http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=188445&SiteID=1 Should detail how to do a splash screen and make it stay up longer In the LinkLabel Click event ...Show All
Shaun Wilde Just move from VB6 to VB.NET
Hello, I'm just move from VB6 to VB.NET and found many things differ from VB6. I found it almost likely to OOP such as C++ and Delphi. Is VB6 and C++ in VS6 is death So which is better, VB.NET or C++.NET (C++ is same to C# ), because study VB.NET is likely study C++ I'm not sure Please give me some suggestion. Thank you Would you mind to suggest me some web site that introduce who just start to code in VB.NET ...Show All
Sri Harsha Kasi Validating within a User Class
I need to populate a container with an indeterminate number of label/textbox pairs for input. Since it is indeterminate at design time, I thought I'd create a user class with both a label and at text box in a pair so I could create them at run time and populate the labels appropriately from a data file. I need to validate each text box for numeric value. Then, I need to use that value to build up a subtotal on the form...sort of like this: ...Show All
A911Pro FindBy Method not generated
Hi, I was reading the following: Dim customersRow as DataSetClass.CustomersRow customersrow = DataSetInstance.Customers.FindByCustomerID("ALFKI") customersRow.CompanyName = "Updated Company Name" customersRow.City = "Seattle" Found In: http://whidbey.msdn.microsoft.com/library/default.asp url=/library/en-us/dv_raddata/html/d5eea200-9bfa-4956-bf7c-08dd6fb6663c.asp But my data set doesn't seem to have the FindBy methods generated - any idea ...Show All
XIII Dataset HasChanged Property
I'm Making a database program I've noticed that the property HasChanged intented to track wether the dataset has changed does not update it's value to True in case of the user has edited the data on the screen till you move to another record can I know if the user changed the data before the user leaves the current edited record to another the purpos of this is to alert the user to save data before he mopves to another record or cl ...Show All
Kuhan Milroy Casting Error
Dear Team there is a field ' Date' in the db allow null... On the form after binding and adding NewRow to insert ...... if the user left the textbox empty an error will raise " Casting "" to Date is invalid " How to solve this error Thank you very much Dear Man Thank you very much for replying &nb ...Show All
chickie third-party installer for choice and security
Does vb.net express offer a way for the developer or user to decide where an app would be installed or is a third-party installer necessary If so, any recommendations McWhirter wrote: Thats good to know I was just whining to myself yesterday that the product comparison listed clickonce for the Basic Edition. I didn't wanna have to fork out the money for Pro. Now i might be happy :) Yes, I ...Show All
_Tim Access closed captions on a dvd (not subtitles)
Hello. I've posted here before, a long time ago, and I wondered if someone now knows an answer to my question. I need to create an app that reads closed captioning off of a DVD, prefferably streaming while the disk is showing its content. I've searched all through the MSDN and found some great articles on SAMI, but DVD's don't implement SAMI for closed captioning support. What do I do to read the captions into a String Help! -thanks ...Show All
jovada Trapping Function keys (F2)
How do i trap for function keys when inside a control (text box, inkedit)...KeyPressEventArgs only fires off for the ascii set... Thanks, Dan Hello. You just need to look at something like the KeyUp event for the control. Private Sub TextBox1_KeyUp( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp If e.KeyCode = Keys.F2 Then 'do s ...Show All
williambeaker VB Stored Procedure Alter Database command fails with Sql err code 5011
Running: Visual Basic 2005 express edition. Sql Server 2005 Express edition. I have created a stored procedure which executes tsql statement to alter the database. Everything works great, except for the actual tsql statement that alters the database. I get back the following sql error message: HariCari SQL Error/s 5011 - User does not have permission to alter database 'HariCariDB' or the database does not exist.5069 - ....... The ...Show All
RA-SJD How do I get list of pc's in Active Directory
Anybody have some sample code to query the computers in Active Directory on a domain I would like to build an array from a list of computers within Active Directory. I am building an application that checks for existing files on computers on our network to tell me whether a particular program was installed or not. Thanks, Arkman5 Rock on, Ken! Exactly what I was looking for - works like a charm and gives me enough of a sample to pl ...Show All
