Answer Questions
vnswathi Paste As Visual Basic
Did anyone make the Paste As Visual Basic utility work It was described on this MSDN article: http://msdn.microsoft.com/msdnmag/issues/06/02/PasteAs/default.aspx I was able to generate the setup wizard, install and activate the Addin. The command appeared on the menu. But when I click the command on the menu, nothing happens. The dialog box that should appear does not appear. If anyone could make it work and can give me some hint, I' ...Show All
paddyoc Open
Can someone tell me how to open an application manifest if you do not have .net on your computer. If you've read my posts you would be sure I wouldn't know how to put a virus on it. Well the program works on my computer fine (computer published on), but on my laptop it does not work. My laptop has the .net framework already. I will soon write the error message. Also you could ...Show All
scorpion_anshul ASPX Error message : Server Error in '/' Application.
Hi there, I have develped an ASPX page in Visual Web Developer 2005 Express Edition. It worked fine on my local IIS but as soon as I posted that page on internet, it crashed. I have v2.0.5.727 of .Net Frameword and my hosting company has v1.1.4322. Does this matter Does he needs to have framework v2.0 as well I asked him he said version conflict should not be the problem. I think he right about version but he needs to have Framework ...Show All
whatwhatkit Hello Help with setup project
Hi i need help with setutp project. I have added a new dialog with CheckboxA in the user interface in the setup project so now i want if the user checked the box then a folder named Samples in the application folder is installed and if the user doesnt check the box then the setup doesnt install this folder.. Thanks a lot Go to the Condition property of the Samples folder, and each file in the folder. Set it to the name of ...Show All
nmsa1982 Can generic SortedList do this?
Hello Everyone! I'm sorry for my English. It's not good at all. I have 3 classes: A, B1 and B2. B1 and B2 inherits from A. Then I have the following collections (VB.NET): Dim colA As SortedList( Of String , A) Dim colB1 As New SortedList( Of String , B1) Dim colB2 As New SortedList( Of String , B2) I want to to this, colA = colB1 but the compiler does'nt let me. Why How could I do Thanks. ...Show All
Ray1127 Blair Allen Stark
Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period ...Show All
k111kk OleDbDataAdapter does not update
Hi, I am having a a problem geting a data adapter to update a recordset. This is the steps. I added a connection and an data adapter to a form. The data source is a Access table. The table has 8 columns. I selected 2 of them and added a criteria to limit the number of rows selected. I then generate a dataset. In my code I call the .Fill method to populate the dataset. I iterate through ...Show All
chino Any way to suppress the printing popup?
I've developed a small utility program that prints data from a DataSet in a report format. It works great, exactly the way I need it to, but when I print, I always get that small pop-up window that cycles through and counts off the number of pages being sent to the printer. Is there any way to suppress that window I use the Adobe PDF print driver quite frequently and I'm constantly having to pull the Adobe "Save As" dialog out from behind t ...Show All
Mighty-O Which to use: file deletion methods in vb.net 2005
I have a routine that deletes files. I want to know the following about the various delete file options to decide what to use. 1. I understand that my.computer.filesSystem.DeleteFile allows you to send a deleted file to the recycle bin. Do any other file delete commands allow this 2. Does my.computer...deletefile, or file.delete, or fileinfo.delete or kill.delete allow deletions of files on t ...Show All
stephanielauym How do you compare binary files with VB Express 2005
I did this in VB6 with the Open for Binary file command and the Get command, but since VBE 2005 has been updated with new commands, does anyone know what code to use to compare files Thanks. Dim value As Byte () = My .Computer.FileSystem.ReadAllBytes( "c:\a.dat" ) Dim value2 As Byte () = My .Computer.FileSystem.ReadAllBytes( "c:\a.dat" ) Dim returnValue As Boolean returnValue = Byte .Refer ...Show All
Dinesh BCG Show Menu
Hello I created a menu and I made it invisible. How can popup it in the form. In VB6, I was using: Me.PopupMenu What do I use in VB.NET Thanks for assistance. No, that doesn't handle the contextmenu. Here's what you didn't handle: 1.) Mouse capture to follow the mouse. 2.) mouse Up - Release and closeing the menu 3.)Mouse leave These were the issues I was referring to, ...Show All
Ian Bell Creating an Internet Explorer toolbar/toolband using visual basic 2005
Hey guys, I'm wanting to create an Internet Explorer toolbar, i have done some searching but all the information i find is really really old, and require things i cant get working in vb2k5 and/or not able to find the controls/stuff they need. I would appreciate some advice/links/information on this subject, and also any code samples/syntax examples would be great. Again, i thank anyone in advance who offer their help. Thanks Michael ...Show All
Vojta Formatting numbers in a textbox or label in VB2005
Hi, I was wondering if someone could tell me how to format the input text in a textbox or a label, for instance, if the text is numeric, then how can I define how many decimal places it must show If the display text is 0.3 and I want it to be displayed as 0.30, how would I go about Any help would be dearly appreciated. Thank and regards, Arun To validate if the TextBox.Text is numeric, use, IsNumeric( ...Show All
Mike Frazer Number of controls in a form?
IS there any way I can count how many controls are in a container or in the entire form TnTico wrote: You can use the count property to count the controls in and forms present The next example determines the number of controls on a form and a report and assigns the number to a variable. Dim intFormControls As Integer Dim intReportControls As Integer intFormControls = Forms!Employees. Cou ...Show All
tconkling Row position after table sort
How to find row position after table sort Datagrid is binded to ds1.sometable. I have DataRow object or DataRowView from cm.Current and position before sort (cm.position or dg.CurrentRowIndex) but how to find where is its position to navigate DataGrid to select row after I re-sort datagrid I can't use dv.find method or any other find method because datagrid (and dataview) is sorted by column with lots of same strings. ...Show All
