Description:
Microsoft .NET technology newsgroup.
|
|
|
TDirectories
|
| |
“Directory submission” is one of the major techniques employed by website owners in enhancing visibility for their sites. It has the potential to increase the website’s visibility and improve search engine ranking.
A web directory or link directory is a directory on the World Wide Web. It specializes in linking to other web sites and categorizing those links.... more »
|
|
Byte code interpretation by hand
|
| |
Hello All,
I've found a list of CIL byte-code commands on WikiPedia
[link] ), but its a bit
meager. For instance, I've got some code starting with this:
F0 29 00 00 00 00 00 00 48 00 00 00 02 00 05
Alas, the F0 isn't in the beforementioned list, so I have no idea how to... more »
|
|
Special Folders for the program.exe
|
| |
Just as an example;
Because I’m new to VB.NET I have to ask if the following line is referring to the folder that the program.exe is running from or installed in
SpecialFolder.LocalApplication Data)
In my other programs this directory was found as
App.Path & "\program.exe" 'etc...
Thanks for any help here.... more »
|
|
How do I open file for input
|
| |
In VB4, VB6 I have code that works very well coded as;
Drive = App.Path & "\User_Files\profile.bda"
Open Drive For Input As #1
Input #1, dat4, Abackup, TimeHide, WhatRunmin, autorun, cleanwhen
Close #1
Can someone please assist me in doing this using VB.NET
I need to open a file with multiple fields separated by commas and I’ve spent many hours trying to figure this out using VB.NET and so far have not. Thank you in advance for your help.... more »
|
|
check boxes, determining checked state
|
| |
Hi, below is a bit of code I use to check the state of a checkbox and set varible using VB-4, VB-6
Can someone help me out and show me how this would be done in VB.NET? Thank you in advance.
'***************************** *********************
' AutoBackup on or off... more »
|
|
How to open a new form and close existing one.
|
| |
Can someone tell me the correct way of closing one form from one of its buttons and opening another one?
Example: Form17 is up and one of the buttons is pressed with code;
If A = B Then
Form1.Show()
Form17.Close()
End If
But this coding does not work.
|
|
How do I get VB.NET to compile/build a simple program.exe
|
| |
...
...
I've never heard of Inno. If you want it to just build a plain .exe rather
than a whole Setup project, you'll have to consult whoever wrote Inno.
In Visual Studio, you have to do extra work to get a Setup project. The
normal build just creates the .exe. So obviously one option is to stop... more »
|
|
How do I get HD serial number
|
| |
In VB4, VB6 it's done using
Public Declare Function GetVolumeInformation Lib "kernel32" Alias "GetVolumeInformationA" (ByVal lpRootPathName As String, ByVal lpVolumeNameBuffer As String, ByVal nVolumeNameSize As Long, ByVal lpVolumeSerialNumber As Long, ByVal lpMaximumComponentLength As Long, ByVal lpFileSystemFlags As Long, ByVal lpFileSystemNameBuffer As String, ByVal nFileSystemNameSize As Long) As Long... more »
|
|
|