Advertisement

Experts Exchange is proud to recognize the top Experts of 2008. Alter egos aside, these Experts are technological superheroes!

 

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

 
Top .Net Editors & IDEs Solutions: 51 - 75 of 209
null
Hi I have a lot of records listed in a table. The user clicks on a record he wants to view, that record is now listed in 60 different textboxes. What I do now is loop thru the dataset an...
Hello, this is probably simple but I need some help with this situation. I programatically add a web user control that I created to a placeholder on the click event of a button with the follo...
       String statement = "UPDATE GAME_SLOT " +                            "SET team1_teamID = " + team1IDGS2 + ", team2_teamID = " + team2IDGS2 + " " +                            "WHERE g...
Experts, I'm trying to databind three comboboxes to a datatable (dt).  See the code snippet below. After I update the combobox values, they all display the first item in the list (not t...
Hi all, We have developed an application which consits of 4 different steps of registration. Step 1:Take contact details and login details. step 2:Take some intrests of user --which are v...
Hi, I am busy with an application and would love to be able to add SQL Query builder to my application. Is that possible? If not are there similar tools that I might use to reach my objecti...
Hi Experts,         I am having problem while using commit and rollback with mysql and vb.net . I am getting following error at the time of calling " cmd.executeNonQuery" "Execute requires...
How would you answer this?? Tell me about the DOT NET Framework. newbieweb
I'm using VB.Net 2008 to program a reasonably graphical control interface with a "techy" feel. The problem I am running into is when I attempt to use pixel (bitmap) fonts in a label component....
Yes I like to split a table within my column I have one column that i like to split 64 oz or 32 floz I like to have the 64 in column and floz or oz in another column. Now i only have one col...
Configuration: .NET 3.5, WPF app, C# I'm running a WPF application from a network drive.  Multiple people use this app the same way.  I'd like to ovewrite the EXE when there is an update an...
How do I create a custom combo box for a datagridview? The problem is that I have a database with GUID values & string descriptions.  Typically we would have integer values and string descr...
Creating a share in c# isn't the problem here but applying permissions is.  After creating a share I need to give the "Everyone" Account full read/write permissions. I am assuming that the ...
I have an array that I have and which in working with the manula entries I have typed in. With this array...what do I need to do to populate it with the items in a datalist from vb code beh...
Hi Experts, As a beginner I am developing my first application in visual basic. The data is stored in a sql database. Normally different types of relations, triggers, etc are set up in the...
I have a graphics drawing application that draws lines with a sleep between each line. I am doing an Application.DoEvents immediately after each sleep.  This Application.DoEvents recognizes th...
I can get an error message which says "Unable to cast object of type 'System.String' to type 'Item'" on the following line of code in the code snippet: Item ServiceItem =  (Item) lstBxServices...
In my MySQL table I allow NULL values in some fields. When I itterate through the result set I get an error whenever the reader hits such a NULL value. Here is the code: IDataReader reader ...
I get the error on the following line of code in my .ASPX page: <img alt="Quad Chart Image" src="quad_stream.aspx?qid=<%= Encryption64.EncryptQueryString(quad_id.Value, "xxxx") %>" /> As...
recently i started a hub and i really want to try out and program my own bot i have a hard time finding libs or some form of an API for the development process, so i would like to know if any...
Hi everyone, I am reading the different image files to make them come into one file (PDF). I have to remove the File Locks done by Bitmap class. So I am making copy of Image and then relea...
I am attempting to import a group of users using ldifde and everytime I do it I get the following error. Connecting to "TexasRanger.NORRIS.ORG" Logging in as current suer using SSPI Imp...
I have a created a SSIS package in MS Visual Studio 2005 that creates tables from flat files and then transfers these tables from a SQL Server 2005 DB to a Sql Server 2000 DB. The 2005 Db is ...
Dim s as string s = "Some Text" & vbcrlf s &= "more text " lblstring.text = s the cr/lf has disappeared from s
Hello, what is the code used to avoid SQL Injections. I've done this in the past, but I forgot how to. Can you please provide all necessary details and how to avoid the sql injections. ...