Advertisement

Experts have come up with some helpful tips for getting a solution to your problem fast.

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested .NET Solutions: 3551 - 3575 of 4820
 
I am trying to connect to our servers active directory to grab the first and last name of every user. Here is what I have so far. I am doing a response write right now to see if it is grabbing...
Hi all, I have an app that 1) has a section at the top of the form to change a user's info 2) below, there is a DataGrid that shows the info for all users (about 20) I would like the...
While trying to get a list of services from localhost... An unhandled exception of type 'System.Management.ManagementException' occurred in system.management.dll Additional information: ...
Hello, I have a Snort IDS sensor sending logs to a MySQL DB. I created a VB GUI using .NET to query the DB but for some reason I am having trouble. (x2 !) Firstly - there are two column...
I know this sounds stupid but I just have to know why the following is OverRides: Public Overrides Function toString() As String And This is OverLoads: Public Overloads Function toStr...
Here is my ImageButton which I create programmatically in a dll and display it at a aspx Page . '<- Dim MyImageButton As New ImageButton MyImageButton.ImageUrl        = "test.gif"  MyImag...
Hi If I have two XmlDataDocument (with the same inner structure, but different data inside), how can I append one after the other ? A DataSet.Merge will replace the items from the first with...
Is there anyway of changing the forcolour of a diabled control such as a combobox in VB.Net?
I am trying to retrieve the application directory during the initialization of an HttpApplication. The problem is that it seems that, at this time, it is equal to 'C:\winnt\system32'. I trie...
In VB6 I could use the following code to find the date for Monday of the current week: dteMonday = Format(Date - (IIf(Weekday(Date) >= vbMonday, Weekday(Date) - vbMonday, 7 - (vbMonday - Week...
Hi Working with ASP.NET I'm interogating each value in a datagrid with the ItemCreated event. What i'm trying to do is, search for a specified string in a column, if it equals that th...
i get the following message in the task list The referenced component 'AxMSDataGridLib' could not be found. Could not load the type library. Library not registered. many of my components...
Ok, I'm trying to use a Code Behind with a Datagrid that simply pulls info out from a MS SQL DB However, i get the error: Type 'SQLDataSetCommand' is not defined.  What gives?  I am copying t...
I added the tool 'textboxarray1' to my form, but it is not obvious how it is supposed to work. It sure doesn't seem to work like anything else I have used. When I click on advanced ellipsis .....
In VB6 I could use the Platform SDK to run the MMC Designer and create snap-in projects, it seems VB.NET does not have this option? Does anyone know if you can still create a snap-in project ...
I'm trying to enable smart nagivation on my site so on postbacks return to the correct scroll position on the page ... however, in the onload javascript event of each page, I am resizing st...
I have a validationsummary control on my 'user registration' web form that returns some client side errors (in the summary panel) if a user does not provide a username or password which is fin...
I am trying to write code to shuffle a deck of cards.  This is what I have so far           public void Shuffle (int n)           {                int i, j;                Card temp;   ...
Greetings, I am currently working through Amit Kalani's series of books in preparation for the MCAD/MCSD certification exams in C#. The current topic is the method Page.IsClientScriptBlockR...
Hi All, I am preparing setup for Windows Installer (MSI) using VB.net solution (Setup project). 1). I want to make it so that It automatically restarts the PC after installation (after d...
In aspx web site, there ia a Global.aspx file for the application. If we use Visual Studio to develop the website, this file Global.aspx will be included automatically. But if this file is del...
Hi, I'm using VS .NET 2003 + CR to display a dual-axes line chart. I want to set the Data2LabelFont and/or Data2Title. The chart expert sets them correctly initially, but any further attemp...
bit of a follow on to my earlier question... Turns out I have to do databinding on this dropdown each time the page posts. But when I do, i lose track of which item had been selected. So I'...
I have been programming in VB.NET this summer. I have some experience in C++/Java and now when I am working with VB.NET there is one thing confusing me. Why does all VB books authors use pr...
I have built a massive program and ran some tests because one machine was not able to handle the memory load for the program...so, I fixed this by changing some implementation decisions.  Here...