Brand New MSDN Group Has Been Started On YAHOO Groups For Lengthy Casual Discussions Etcetera
Sep 5, 2009
<edit> I think He has changed His mind. Please see the 3rd post in this thread instead. </edit> JohnGrove has started an msdn YAHOO group for casual discussions and anything else you might want to chat about.>> Feel free to join in [URL] It may take some of the casual chat away from these Vb.Net forums so that forum members can answer programming questions better.
View 2 Replies
ADVERTISEMENT
Jul 22, 2009
I want to divide the content in my application to groups each group has its own rectangle border with the group name located at the top border, i've seen it before and i'm not sure what is the correct name of this control, anyone knows what I'm talking about ? EDIT: Ok, I found the Groupbox Control but how do i use it? should i just drag other controls inside it or i should add controls directly into it?
View 2 Replies
Apr 30, 2012
I am using System.DirectoryServices.AccountManagement to try to add a local account to the local administrators group with the following code but am getting the error below on the group.Members.Add(usr) line. Both usr and group are created as objects and if I create a Test group, I can add the user to the Test group. I know the group object is the local administrators group and not the domain group because i changed the description on the local administratrors group and the group object is correct so it appears to be something specific to the local administrators group.
View 6 Replies
Mar 28, 2012
I am converting VC++ to VB.NET and I cannot find a way to get the group "comment" in .NET. I can get the list of groups which the user belongs to with:
Principal.WindowsIdentity.GetCurrent().Groups
However the group "comment" does not seem available. The VC++ uses Win32 NetGroupGetInfo() to get the info.
View 3 Replies
May 26, 2006
I get a message, "The MSDN collection does not exist. reinstall MSDN." When I try to access any of the HELP features of Visual Basic 6.0. I do not have an install disc for this. Is there a download or a place I can get this?
View 7 Replies
Jun 3, 2011
Im brand new to VB and almost completely new to scripting.Where could I find a list of the most basic and useful commands with explanations, or even just like a dictionary of commands in VB?
Also, (this is a painfully easy question but searches haven't come up with any useful results) how do you make something happen if a button is clicked... Ill explain.
Ive made my first app - the picture viewer - and am currently expanding it. So far I have added a full-screen function with,[code...]
Now how do I make it Close full screen when that button has been clicked? Ive been playing around with it for a while but cant figure it out.
View 2 Replies
May 8, 2009
I need to find out how I can get the index number of a brand new row I just saved.
The table is set up with primary field as Identity (It auto generates the number
in column(0)- "DoorID")
Eg:
dim ds as dataset = DoorsData
dim dt as datatable = ds.Tables("Door")
dim dr as datarow = dt.new row
dr.item(1) = txtDoorNumber.text
[Code]...
What is the primary key value of the row I just added? I have another table with Col(1) as "DoorID" and Col(2) as "KeyID" I need to know what the ID numbers are so I can fill this table next.
View 2 Replies
Oct 9, 2010
I am creating a mortgage calculator using Visual Basic Express version. I am currently using the Console method, or command window view. I have it set up so the user can input the mortgage/loan amount, interest rate, term (in years), and have the formula for calculating the monthly payments.The problem I am having is that I need the program to display "all" the payments for the term of the loan, the loan balance/interest paid, and depreciating after each payment. The program should display a certain amount of payments, hesitate, then continue to display until it shows the end of the term of the loan. Basically, it is now an amortization loop formula I am trying to implement into the program.
View 3 Replies
Mar 15, 2010
I need to write a VB.Net 2008 applet to go through all the fixed-drives looking for some files. If I put the code in ButtonClick(), the UI freezes until the code is done:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'TODO Find way to avoid freezing UI while scanning fixed drives
Dim drive As DriveInfo
Dim filelist As Collections.ObjectModel.ReadOnlyCollection(Of String)
Dim filepath As String
For Each drive In DriveInfo.GetDrives()
[Code] .....
View 4 Replies
Dec 18, 2009
I have a form with a webbrowser control on it, and I load up a local file in it with some code for a rotating banner (so I can support my app with advertising).The problem I'm having is, it is for example, a banner ad in the small banner sized control, when the user click's it, it loads the new page within the same control, which is way too small.I'd like for any click in the control to load up the link in IE itself, outside of my app. Putting target=_blank so far hasn't helped. Below is the code that I am loading up in my control.
<!--/* OpenX Javascript Tag v2.8.2 */-->
<center>
<script type='text/javascript'><!--//<![CDATA[
[code]....
View 2 Replies
Mar 16, 2010
What do I want to achieve: I want to perform some time consuming operations from my MDI winforms application (C# - .NET). An MDI child form may create the thread with the operation, which may take long time (from 0.1 seconds, to even half hour) to complete. In the meantime I want the UI to respond to user actions, including manipulation of data in some other MDI child form. When the operation completes, the thread should notify the MDI child that the calculations are done,so that the MDI child can perform the post-processing.Should I use explicit threading (i.e., create explicit threads), thread pools? Or simply just propose your solution. Should I create foreground or background threads?And how does the thread communicates with the GUI, according the solution you propose?
View 7 Replies
May 3, 2011
I'm trying to match up a specific group name and see if it exists for the currently logged in user using Active Directory roles. If the Group Name exists for the Current User, I want that group name to be displayed in a drop down list. Example: If current user is in BIG Group, display BIG in drop down list.Problem: All I am getting is SIDs and I'm not able to get anything to match up to the group name and nothing will show up in the drop down list.I also get the following Error:Error: Object variable or WIth block variable not set.How do I fix this?? here is the code I am using:
Private Sub GetMarketingCompanies()
' code to populate marketing company drop down list based on the current logged in users active directory group that
[code].....
View 3 Replies
Jan 31, 2011
Enumerate if an Active Directory group's member is user or another group
View 1 Replies
Jan 1, 2011
I am writing an application and I do not know how to reference a group of controls inside a group box. I will include the code I have written so far and a picture with a detailed explanation as to what I am trying to do. Feel free to comment on any discrepancies that you may notice in my code.
Code:
Public Class Form1
' The following class-level constants are used
' to calculate the price of the model
Const decCOUPE As Decimal = 18000
[code].....
View 3 Replies
Sep 25, 2011
I want to remove a group (include all items in this group) in ListView, but unsuccessful, the code is below, why?
ListView1.Groups("GroupName").Items.Clear()
ListView1.Groups.Remove(ListView1.Groups("GroupName"))
View 4 Replies
Apr 6, 2011
anyone have some quick code on how to do this?
wmi is not a option.
View 1 Replies
Dec 27, 2009
I'm working with a program that can send email supporting yahoo mail and gmail. And it works in gmail(if the sender utilizes gmail) But it won't work if the sender is using yahoo mailHere is my code:
mail.From = New MailAddress(TextBox2.Text)
mail.To.Add(New MailAddress(TextBox1.Text))
mail.Subject = TextBox4.Text
[code].....
View 2 Replies
Feb 7, 2009
im luking for sumbdy who can develop me a chatt like msn / yahoo. in vb net.Functions:
[Code]...
View 18 Replies
Apr 12, 2009
i want to donwload yahoo video,
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim myclient As New WebClient
myclient.DownloadFile(source, dest)
End Sub
I write the yahoo vido url in place of source above,But yahoo vido is not downlaoding,Y so ?
View 1 Replies
Dec 31, 2011
Imports System.Net.Mail
Public Class Form1
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs)
[code]....
View 15 Replies
Apr 5, 2012
I want to build an APP which reads Yahoo XML weather.Can someone point me in the right direction of a tutorial on reading XML nodes. and only the nodes i'm interested in.
View 2 Replies
Apr 12, 2009
I want to donwload yahoo video,
CODE:
I write the yahoo vido url in place of source above,But yahoo vido is not downlaoding,Y so ?
View 2 Replies
Dec 31, 2009
I see many web forms for doing a yahoo status check, I'm wondering if the same would be possible with a windows form? Basically have a form with a text box to enter the yahoo id, a button to submit and a message box reporting the status (online, offline, invisible).
View 7 Replies
Jan 6, 2010
I need to get friends list (from address book) from Yahoo Mail. How can I do do this in VB.NET?
View 1 Replies
Jan 9, 2011
Is there a simple way (a public library/class perhaps) to get the number of backlinks for a site from Yahoo API? (yahoo boss. yahoo site explorer) Preferably in vb .net?
If not, is there a library that allows easy access to the Yahoo API, like Zend Framework provides for PHP equivalent?
View 1 Replies
Jan 22, 2012
Is there a way I can get my VB.NET application to connect to my Yahoo! Mail account, and send an email to an address?
View 6 Replies
Sep 26, 2011
I want to activate a button on a yahoo group web page. It is in the members database and it is the export button. When the button is pressed it will export the list of members. I want my program to navigate to this page and press the button programmatically. I am using vb2008. I am not using this to spam anyone. I am an administrator there and want to get the data for tracking messages.
View 10 Replies
Feb 12, 2009
I added the NotifyIcon1 to my form but that is as far as i know what to do, i did google what to do and found some stuff but not what i wanted, i want it to minimize to the taskbar (like where Yahoo! and MSN icons go to when the x button is clicked on the interface) the stuff i found made it minimize to the bottom left of the screen but not into the taskbar.
View 2 Replies
May 29, 2012
I have looked it up and not found anything other than you need to upgrade your account to do it. Is this true? If not how would i do this?
View 3 Replies
Apr 12, 2009
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load
Dim myclient As New WebClient
myclient.DownloadFile(source, dest)
[code].....
View 1 Replies