Answer Questions
NagySaNa How do you insert a byte in a string (without expansion)?
Is there any way to insert a byte in a string without this byte being converted to more ASCII characters For example: Dim A As Byte = 85 ' This is an ASCII "U" Dim S As String = "Start " S = S & A In this case, VB tries to be intelligent and insert two characters - 8 and 5 - inserted of one byte - the ASCII U. The result is therefore "Start 85" instead of "Start U". Is there any way to p ...Show All
Jay G Manually uninstall betas
Because of a problem with a bad sector on a hard drive, I get an error when I try to uninstall any of those listed in the Uninstalling Express Editions section. Is there a way to manually uninstall Hi Tim, Check out http://blogs.msdn.com/astebner/archive/category/5222.aspx for help on uninstalling betas. Thanks. Hi Dan, That worked for .Net framework but I am having the same issues with SQL S ...Show All
LittleRascal Need Help to get a third party class working
Hello, I’m absolutely new in c++ but I try write a programm to communicate with my Weather Station Interface. Normaly I use c# but it is so difficult to Handle this Interface that I decided to use c++ because there is someone who wrote a class to communicate with the Interface. I installed the vc++ Express Edition and the plattform SDK to use windows.h. But now I have a part of code where I get an compiler Error that is so "strange" th ...Show All
JamesHeiser help of setting up the enviroment
i've a book called C# insider 2nd edition, in the begiing of the book, i couldnt run the HelloWorld.cs because it says cant find the commmand csc. (the book says to run CSC HelloWorld.cs in cmd, and it appeared this message.). the book says i need to set up something in "Environment Variables" i know that book was talking about C#2.0 and in .net Framework 1.1, C#.net 2006 is c#3.0 and .net framework 2. so im not sure how to set it up i ...Show All
telectro cannot open form in design view
Hi i saved a visual basic 2005 project containing two forms. When reloading the project the next day, i could not get the design view of those forms anymore. I only see the code in form1.designer.vb, i do not see the form with the usercontrols itself. In the solution explorer i see a node form1.vb with an icon which looks like a small textfile and "VB" in its corner. When i click on this node two files appear: Form1.designer.vb and For ...Show All
marteens demo projects
Hi, I installed VC++ Express yesterday (including the platform SDK) and (I believe) succesully made all the changes to built native applications rather then .Net. I can't find any demo projects in the installed folders. Are there any If not, someone knows where I can download these Thanks! Look here for lots of C++ samples to play with. Dr. Pastor. wrote: 1>------ Skipped Build: Pro ...Show All
courion24 How to handle XML data with RAD features the best way?
I am about to write a small application that will be distributed to a lot of machines. SQL Server 2005 Express or MS Access does not appear to me as attractive options since they both are very large softwarecomponents which will take up a lot of diskspace. I have been focusing on these two components because I would like to use the build-in RAD features in 2005 and thus I need a Data Source. But I have also though of using ADO.NE ...Show All
Bill Rose container
I am developing an application where I need to store 100's of html files (Static - already I know the number and name of the files) and when customer clicks some option I need to display the file... My Question is, is there any container or data folder there in visual basic 2005 so that i can embedded the html files with the application. There should not be any copy in the local hard drive, the html files should be embedded inside the applica ...Show All
venkyweb Easy Database Question
I'm finding it difficult as a newbie to even grasp the core basics of database programming in VBEE. I have created a database in my project and done all the necessary table and column creations, but when I create a simple form that contains a textbox with an OK button, I can't for the life of me find what code I need to write when the OK button is clicked to insert the textbox data into the database! I thought it would be a simple. ...Show All
kristoffer pagels ; after every line in int main() {}
I read in a tutorial that at the end of every line in the int main() {} . But then I had a bunch of problems coming up with this code and one of the main problems was the fact that I put semicolons at the end of every line in the int main function. Here is the code: #include <iostream> using namespace std; int main() { int choice; cout << "Enter the number 1 if you want the color blue \n"; cout << "Enter t ...Show All
SnowJim Keep getting the error "Syntax Error in UPDATE Statement"
I've worked with the older versions of Visual Basic and since moving to 2005 express I think I've gone a bit more crazy. I keep getting this error when the dataapdater.update statement is called. Here is the code that I am using and I've also thrown in the information from the syntax error. Private Sub EditMaterial( ByVal codepos As Integer ) Dim con As New OleDb.OleDbConnection Dim updateCMD As OleDbCommand ...Show All
OneDeveloper Noob Combobox ?
Hello, I have a combobox on one form with a list of options. It's set to dropdownlist . I want to have the selected Item in the combobox replace the text in a label on another form. Can someone give me an example of how to do this Thanks Jerry, How do I expose the "Textlabel" property as being public LA-3243 Jerry wrote: I have a combobox on one fo ...Show All
Jcastro Unexpected close
Hi I have all the programs needed to program a game which is what i am trying to do. But I needed a compiler so I researched and Visual C++ express edition looked great and it's free so I got it. It downloaded fine and I installed it and it works. But I need to go to the options and change some settings in VC++ directories but every time I click on VC++ Directories i get an error that says "Microsoft VC has unexpectadely closed" and ...Show All
ckphelan How can I kill Selected process ?
Hello, this code get a list of runing processes : Process [] pArry = Process .GetProcesses(); foreach ( Process p in pArry) { string s = p.ProcessName; s = s.ToLower(); listBox1.Items.Add(p.ProcessName); } so how can I kill the selected processName from listBox1 Best Regards You said in the end that "this is why xp doesn't colapse easly like previous windows". Maybe so, you right, ...Show All
ThackerRobin No "devenv.exe" File
I downloaded and installed all five VS2005 express editions (without SQL Server 2005) and I have five separate ".exe" files, but no "devenv.exe" (as in VS2003). Can someone help me Thank you. The Express Editions do not use devenv.exe, they use the individual .exe names such as vcsexpress.exe. Anything you needed devenv.exe for you should be able to accomplish with the corresponding exe for your par ...Show All
