Answer Questions
Visagan SQL Question
I have a few question about SQL. I'm used to MySQL and PHP to start off. Now I went along with Video Tutorials and Help that I saw on the VBEE Start Page. So: If I write a program using a database, does my "client" need to install the SQL Express Edition and Lets say I want to write a DB Program for Music and Videos for my family on a home network. How can I connect to a Network Database. And links to tutorials would help Thanks, Wellnow Wellnow wrote: If I write a program using a database, does my "client" need to install the SQL Express Edition It depends on what type of database your program uses...if you use an SQL database then yes your client will have to have a compatible version of SQL-Serv ...Show All
Athan Changing the default output directory of binaries to be the Drop location
Hi, The TeamBuild flow is to copy the binaries (after compilation) to an output directory – drop location. There is a way to tell Team build to drop the binaries straightly every time after compilation to the right folder in the drop location instead of copy every time from the default output directory to the drop location Thanks in advance, Shmulik. I'm not entirely sure what you're after here - are you just looking to skip the output directory and have binaries copied to the drop location immediately If so, you could override the $(BinariesRoot) property to point directly to the drop location. If you are not ...Show All
Lars E.Nes Mathamaticians please !
I want to resize an image using a NumberUpDown control, Here's what I have, Dim pcent As Integer pcent = 100 / nudPercent.Value pbxResize.Width = pbxResize.Image.Width / pcent pbxResize.Height = pbxResize.Image.Height / pcent If I enter 50 then 100 / 50 = 2 so the image width and height is divided by 2 = 50% If I enter 25 then 100 / 25 = 4 so the image width and height is divided by 4 = 25% you can see that this does not work for 76% for example 100 / 76 returns 1 which gives 100% so how do I resize the picture by the number in the NumberUpDown box. Will give it another go tomorrow and see if I can remove all the squiggley lines using the suggested Error Correction advice. Thanks for h ...Show All
Cockgle Accessing web text box
I am making a program that automates the downloading of a file from a website of one of our providers. There is a login page which I can load up on Form1_Load() which has a user name and password box. Looking at the source code, these are called : document.forms[0].userName.value = ""; document.forms[0].password.value = ""; There is also a submit button : input type="submit" value="Go" How do I access these I want to push a button that enters the username and password and then hits the Go button and effectively submits the data. Any clues I'm not entirely sure about that to be honest, about the frames. Be sure that when getting the element that the control name is correct as it will be case s ...Show All
sami27913 Working in a Distributed Environment
Hi, I am a team leader in a project where in, a single web application is being developed by multiple developers. Now, I want it such as, the main project is placed on the server (including all the project files), and all the developers connect to the same project placed in the server through their respective Visual Studio 2005 IDE, and work on the same project. I have downloaded the VS 2005 Team System Trail, but I dont know how to do that. I suppose we used to do this exactly with Visual Interdev earlier. Please help me with this ASAP, this is very urgent. Thanks in advance Regards, Bhaskardeep You add the file to the solution in the VS 2005 IDE. I assume that you are familiar with that process(Right-click the ...Show All
Mandragon adapter.update not updating?
I can add new records but i cant edit existing records. Whats wrong please help :( Imports System.Data.OleDb Public Class Form1 Dim glongidnumber As Long Dim gsfullname As String Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Cursor = Cursors.WaitCursor 'Open a connection to the database Dim sAccessConnection As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & System.AppDomain.CurrentDomain.BaseDirectory() & "data16PF.mdb;" & "User ID=Admin;" & "Password=" Dim oledbMyConnection As OleDbConnection = New OleDbConnection(sAccessConnection) oledbMyConnection.Open() ' ...Show All
Gary200 Access to MSSQL 2000 everymonth
Hello All I am working a project that would take a monthly bill that is given to us in access. I am trying to create a program that would do this by just selecting the Access file and then uploading into SQL2000 so that we could do our monthly bills and look at usage. What would the easiest way of creating this app be I was thinking of doing a read of the access table then on each read do an insert. Like the following ACCESS READ SQL2000 INSERT NEXT would this be correct or is there a simpler way of doing this. Thank You for your suggestions. thanks spotty, I will look into SQL tableadapter, I have never used this. I guess it is time to learn Read the entire dataset from the access database in one ...Show All
Wayne.C Strange issue when building an app :-s
When i build an application in visual studio express my firefox loads up and loads 3 websites. this is only when i build, install or run the application after install. Doesn't matter what i build i keep getting the same 3 sites. Does any one know what could be causing this Yeah, I myself put my money on a virus (spyware adware whatever) hooking itself into the build process. What an irritation!! What are the websites that load up No virus and no Adware. My system is checked daily while im at work and by two different antivirus's and antispyware. Ill get the list of the sites tonight. However i have had it also when building with the 90 day trial version of the proffesional software.... ...Show All
Hoodwinked The tool lets you to add hyper links to work items in Microsoft Word Document.
Hi: Please check out the web site http://dotnetideas.com . Our company just made the beta version download public. The product enables you to add links (Smart Tags) to Work Items in word documents. Via the links, you can View/Edit the work item. Thanks, Yuhang. ...Show All
newtoc#484467 problem with comboBox1 and the Enter key
Hello. I am on my second project, a web browser, and I have aproblem with ComboBox1 and the enter key. Here's the code: Private Sub ComboBox1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ComboBox1.KeyDown If e.KeyCode = Keys.Enter Then WebBrowser1.Navigate(ComboBox1.Text) End If End Sub It works fine, when I press the Enter key WebBrowser1 navigates to the url in the i type in the comboBox. The problem is (anoying) every time I press the enter key the Windows Error Event Sound sounds. any ideas Your help will be very much apreciated. Thank you. Hello andreas Johansson. How do I set e.Handled true ins ...Show All
MaggieChan Call Function/Run Program from vbscript
Hi, noob Drew here, didn't even look at vb express yet, I never have time to figure this stuff out myself so... I work with a vbscript enabled app. which has limited user form functionality. I'm looking for a way to display and interact with more complex custom forms which can be called from vbscript. Is this sort of thing possible with VB Express If so, how (in a nut shell)... Running a VB Express executable Configuring a reference to some sort of object, and calling a function Thanks ...Show All
bond12 Running Windows-Command Lines in 2005 Express Ed.
Hello! OK. I have a batch script that I am using and it works awesome! However, I want to make it work using Visual Basic 2005 Express Edition. Can someone show me examples on how to run windows command lines under a Visual Basic 2005 Express edition program So in other words… Having a form that shows an OK button disabled until my script that is running Windows Command lines in the background is finished. Then the OK button will enable. I know how to make the OK button disable and enable…I just want to know how in the world you can have command lines work in VB. Another quick question…what is a good book out there for a beginner Thanks Chapio Or, ins ...Show All
mrbelk Problem using RegisterHotKey in VC++
Using a code with a RegisterHotKey i get those error messages in linking : 1>------ Build started: Project: les_hotkeys, Configuration: stf Win32 ------ 1>Compiling... 1>les_hotkeys.cpp 1>Linking... 1>les_hotkeys.obj : error LNK2028: unresolved token (0A00000E) "extern "C" int __stdcall RegisterHotKey(struct HWND__ *,int,unsigned int,unsigned int)" ( RegisterHotKey@@$$J216YGHPAUHWND__@@HII@Z) referenced in function "private: void __clrcall les_hotkeys::Form1::button1_Click(class System::Object ^,class System::EventArgs ^)" ( button1_Click@Form1@les_hotkeys@@$$FA$AAMXP$AAVObject@System@@P$AAVEventArgs@4@@Z) 1>les_hotkeys.obj : error LNK2019: unresolved external symbol "extern "C&quo ...Show All
Wildmind Problem regarding the product key for Visual Web Developer
Hello! I have downloaded and install the Microsoft Visual Web Developer however after I have installed it there was a problem upon launching the application. It seems I have to input the product key...I don't know where I could found it... eventhough upon regsitration I have put in my email address but until now I haven't receive the product key necessary so that I can use the application. I don't understand the promt cause its in Japanese language. Can you just pls send the product key to my account paragados@hotmail.com , I really needed it. thanks I think that it's not legal to share a product key. You really should check this link if you have some problems in registration: http://msdn.microsoft.com/vstudio/express/register/f ...Show All
Chrono20944 setup.exe failed to install
I have installed Visual Studio 2005 Team Suite Envaluate Edition, when everything works well I downloaded Visual Studio 2005 Team System for Database Professionals (file VSTSDBTR.img). I use a virtual CD software map the image to a driver, and can run setup.exe, but when I click the first choice "Install Visual Studio Team Edition for Database Professionals" setup.exe throws an application error dialog says "0x0031424 instruction references a memory can't be written", and when I click "OK" button ,setup.exe exits. I have installed Visual Studio 2005 Team Suit on Windows Server 2003 SP1 box. So anybody helps You may have a bad download. I prefer to extract .img files t ...Show All
