| Price of Visual Studio (5 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| How much does Visual Studio 2003 cost? What do you need to qualify for the upgrade? How much does the new user version cost? |
|
| text height problem (11 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hi, I have a multi line textbox that accepts text input, I want it to adjust its height according to the text it holds, so I use a SendMessage API to get the line count of the text, then set the TextBox.Height to (linecount * font.Height), but there is something wrong with this calculation, the textbox is always larger than the text lines, any ideas? Thank you. |
|
| Where to put images (5 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| I'm new to win forms programming, and am having a bit of trouble figuring out where to place images that will accompany the program. Do you place them in the bin directory?? What if you are making a control library to accompany the app, and there are images that accompany the controls? Do you place them in with the library, but then how is it distributed if the control library is just a .dll? Sorr... |
|
| inherited queue class (10 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| If i inherite a queue class into my class, and do an override of the enqueue member, how would i then go about actually doing an enqueue of an item? I am a little confused on this one... does over ride just add aditional code ontop of the current class or completely over ride it in vb? I am use to C this is the first inherited thing I've done in VB.NET... I'm a little unsure of diffrences, could s... |
|
| Convert Structure to Byte Array (10 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Suppose I have a structure Private Structure MyStruct Dim el1 As Byte Dim el2 As Int16 Dim el3 As Byte End Structure I want to convert this into a byte array where Dim st as MyStruct Dim arr(3) As Byte arr(0) st.el1 arr(1) st.el2 8 arr(2) st.el2 And &HFF arr(3) st.el3 Is there a neat way to do this in the NET Framework? Ideally, it would be generic, so that it doesn't have to be hand coded for eac... |
|
| Excel automation in VB.NET problem (3 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| G'day Folks, I have MS visual studio 2003 (2) and have created a small application using VB and the application uses Excel to produce reports. My machine has XP and Excel 9.0 There are 3 reports which can be produced and each report has it's own button to initiate it's creation. The problem is that i have to completely exit my application before i can run the next report. It appears that my applic... |
|
| Is Data Binding a Bad Choice ? (11 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| I am a VB6 intermediate programmer just starting out using VB.net and would like to ask what I'd be missing out on if I just use time saving techniques like data binding, data adapter wizards etc to create my front end application. Building the data access forms using manual coding just seems like a lot of work.... Any guidance would be appreciated Fares |
|
| Opening access database (5 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hi I've got the following problem: In my application I want to open an access database (not with ADO or so, just as if the user would have dblclicked on it), therefore I want to use the .net equivalent for the old style ShellExecuteEx function. This shouldn't be a problem, so far. Now, the second task is to automatically open a specific form in the database on its startup. How can this be done? (s... |
|
| DataGrid (2 replies) |
| microsoft.public.dotnet.languages.vb |
| Hello, I need somebodyâ s help with the following: I tried to display data to a DataGrid, that is not the problem. But if I try to add a TableStyle to a DataGrid then I donâ t get a result ( no data). If I use the next code, but without a TableStyle, it works: 'Declaraties Dim strMedewerker As String 'Set de standaard medewerker in de strMedewerker string strMedewerker "Marco Di Gregorio" 'Alle ve... |
|
| tellephone app, correction (2 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hello, How can I make some telephone app in VB.NET I want make answering machine. Thank foe answers. |
|
| VS.Net OS requirement Q (5 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Looking to get a copy of VS.Net Pro, but slightly confused about operating system requirements for installation. Some documentation suggests for example that I can't (maybe shouldn't) install on Win XP Home, which seems a little odd. Is this an IIS issue? Maybe I can install successfully on XP Home but can't do any database related development? Or is it a more total prohibition than that? My proje... |
|
| Grid (3 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hello. I would like to konw how can I make similiar grid, which picture is on my web site r soft.szm.sk / on this website is only one picture, nothink else/. Thank. |
|
| Add text to file (4 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hello I'm new to vb.net. Can someone help me with this one? I'm trying to add text to an existing file. The function has to add text at the end of an existing text file. The code I've got so far writes the text to the file. But it overwrites the existing text in the file. What do I have to change to the code to add text instead of overwriting? The code: Sub LogFoutmelding(ByVal strFoutmelding As S... |
|
| Acoount disabled or not (2 replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, can anyone give me some code how to query wheather a AD account is disabled or not? I d like to use DirectoryServicesEntry object. Thanks Guenther |
|
| Printing model in VB.NET doesn't match my needs (3 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| I have a VB6 app that I'm converting. At various places in the program it might be writing to a Textbox and also prints the text. Or someplace else, it may ask the user something and depending on the reply print something. I.e., the printing is dispersed among the logic of the program. All the printing samples I've looked at have the printing code collected in one place. I don't know how I can do ... |
|
| Why ByRef default changed to ByVal? (5 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| In VB6 the default for passing variables was ByRef. It was faster and used less memory. Why did MS changed that? Are there any advantages using ByVal over ByRef? (other than ByVal impeding you from changing the original variable passed) |
|
| Windows Form Gird control - defficiences (7 replies) |
| microsoft.public.dotnet.languages.vb |
| 1. No Columns collection. 2. No ability to easily synchronize the underlying DataTable of a DataGrid when a row is deleted in the Grid. Once you sort (via the column headers) all bets are off as to whether the current row index of the data grid can be used directly as the Rows index of the DataTable. This is documented in the DataGrid Overview. 3. No way to access the default grid table style to m... |
|
| HTML text box ? (11 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hi, Anybody know of a really good HTML text box. I want my user to be able to enter text(WYSIWYG mode) and then I can save the basic html. Any thing free of course would be really good! Thanks |
|
| Scope? (4 replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, I've got a question about something which actually works, but I'd like to know why... If you create a form in a subroutine and "show" it, once the subroutine finishes, technically the new form should be out of scope. I guess in a sence it is, because you can never "get ahold of it" again. However the form is still there. Maybe my question should be, is the following code bad style and could it... |
|
| cboCombBox.Items.Clear doesn't trigger any events? (2 replies) |
| microsoft.public.dotnet.languages.vb |
| What I'm trying to accomplish is: Disable a ComboBox (not bound to any data) when a .Clear method is executed. So far a cboComboBox.Items.Clear does NOT trigger any of the events I expected it would. I've placed break points in the following events and still they are not triggered: Click SelectedValueChange ValueMemberChange TextChange DisplayMemberChange BindingContextChange What I'm trying to ac... |
|
| Maximum possible form height is 780 pixels? (19 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| Hi, I just come across this, how can I make a form's height larger than 780 pixels? Thank you. |
|
| Need Help ASAP - Willing to Pay (11 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| I have a time critical function I need assistance with. You should be familiar with windows forms, ADO.NET and MS Word Automation. If you are interested please email me at kjmnospamhereplease@charter.net remove the nospamhereplease Thanks.... |
|
| DirectCast vs CType (7 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| I apparently have a bit to learn about Casting and Conversion. I have been thinking of them as the same but a discussion in another thread leads me to believe that this is wrong thinking. I found this in the VB Language reference: quote The DirectCast keyword introduces a type conversion operation. You use it the same way you use the CType keyword.... Both keywords take an expression to be convert... |
|
| IIS problem? (7 replies) |
| microsoft.public.dotnet.languages.vb |
| I'm currently aving a problem with IIS. I did some ASP programming a few month back using VBScript, and got some basic programs working. I've started learning C# recently, trying to program some web applications, and I am having problems with IIS it doesn't work at all. The link to the IIS start page (http://localhost/localstart.asp) on my computer just returns "The page cannot be displayed" My li... |
|
| custom controls icons for toolbar in ide (5 replies, VIP) |
| microsoft.public.dotnet.languages.vb |
| how do you add an icon to a control so it will show up with that icon in the VS.NET IDE instead of the default gear icon? thanks |
|