ShimiIL's Q&A profile
Visual Studio Express Editions VB Express Install Error
Windows XP SP2 i have downloaded the VB Express but when i try to install it gets so far the stops with Error msg cant install on windows ME , NT or earlier. any ideas ...Show All
Windows Live Developer Forums How to enable conversion tracking through the API
Hi all, I cannot find the option in the API to enable the conversion tracking flag for an order. This is the option available in the Campaign Settings page in the web UI. We would like to be able to turn this on or off for all campaigns at once so I was looking at a way to do it through the API. Thanks, Tibor There is no API support for that, but we will address your request in the next version of our web UI (coming shortly :)). Shai ...Show All
Visual Studio Express Editions Questions / Answers : Evaluation Outlines !!!
I am developing an ITS System , in the Evaluation Stage , can someone help me with the outlines for developing the evaluation : What is the most approciate way for storing the Questions and Answers : Multiple Choices , TRUE / FALSE , and any other Questions and Answers form and ... What is the best way for Representing the Questions and Answers to the Learner and ... Finally Thank you so much :) cverdon wrote: void ShowQuestion() { label2.Text = evaluationDataset.Questions.Rows[currentPosition ] .QuestionText; } And in the Next button you increment currentPosition and call ShowQuestion. okay i just did exactly what you told me !! now i ca ...Show All
.NET Development Connection to SQL Server Express 2005 using VB.NET 2005
Dear Sir, We are using VB.NET 2005 (Winform) and the backend SQL Server Express 2005. We would like to connect the Express (.mdf) database from Remote Machine. What type of connection string we have to use We tried the following ConnectionString but we got the error: Provider=SQLNCLI.1;Server=.\SQLEXPRESS;AttachDbFileName=S:\MLJData.mdf;Database=MLJData;Trusted_Connection=Yes; Also suggest what are all the prerequisites to run sql server express 2005 database in client machine. We did installed the following tools in client machine: 1. .NET framework 2.0 2. sqlncli.msi (SQL Server Native Client Setup) Please provide us the solution for this. Thanks M. Gopalan Sofist India reply to: gopalan@sofist.com ...Show All
.NET Development simple xml parsing - need help
Guys, fixed the problem...please ignore the post thanks Reader.Value will not return you the right element content. Value always returns an empty string if called on the element nodes. You should use ReadString() method on the reader. Reference with code sample is at: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemxmlxmlreaderclassreadstringtopic.asp ...Show All
.NET Development Execute .NET code written by end-user to customize a procedure
Hello! Before .NET, when I wanted to give the oportunity to the end-user to customize something, I used msscript.ocx. The user could write some vbscript of jscript code which was executed by that control, propably using the .Evaluate method. Is it possible to execute .NET code the same way and get the results Thanks Lucian Bargaoanu wrote: This seems easier to use to me: http://msdn.microsoft.com/msdnmag/issues/02/08/VisualStudioforApplications/ Does this require VS to be installed I see that the Microsoft.VSA namespace is used. ...Show All
Visual C# Streaming voice over UDP
I want to transfer voice via sockets using UDP protocol. I capture voice with DirectSound to SecondaryBuffer. Because UdpClient doesn't have streams, I can't stream this buffer. what can I do How to send voice UDP is a connection-less protocol that doesn't correct transmission errors like TCP does. That makes it very fast but unreliable, greatly depending on the quality of the Internet connection. Most typically, if there are problems with the routers, they'll drop packets. Datagrams may also take different routes through the network and you may receive them out-of-order. You need a way to detect this so you don't playback completely garbled data. You can correct for out-of-order reception to some exte ...Show All
Visual Studio Express Editions Multiple Binding Sources on one Dataset
HI Everyone. I am working on a cascading lookup to an Access database. So far the only way I have found to do this is setup one dataset pointing to the table I am searching. Then create 12 binding sources (one for each criteria box). Then I compile a filter string that gathers the selection form each control and applies them as you work through the list of controls. Is this the easiest way of doing this It seemed there was a much easier way of doing this in Access VBA, it doesent make sense to me it would be this much more work in such a powerful language Thanks Kelly R. Martin, I don’t know whether you have used the Access 2003 VBA to manipulate database in any project. Here I want to give two sim ...Show All
Visual Studio Express Editions A Mute comand ???
hi its a simple lil thing all i need is when a picture or button is clicked an double clicked the volume of the computer is muted Simple as :) i've searched and cant figure this out not using windows media player or anything just the computers Master volume to = 0 :) Private Sub MuteButton1_Click ( ByVal sender As System .Object, ByVal e As System . EventArgs ) Handles Button1 . Click My . Computer . Keyboard . SendKeys ( Keys . VolumeMute ) End Sub ...Show All
Visual Studio Express Editions coding help
Public Class Form1 Dim ans As String Public Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'whatever is in here will be executed when you start the program' End Sub Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'whatever is in here will be executed when you press the button 1' test() 'this gives me "test is type and cannot be used as expression" ans = InputBox( " thats it" ) End Sub Public Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click End Sub End Cla ...Show All
Visual Studio Express Editions how to build a web browser in build flash player like opera
hi pls respond me quickly i also like how can we add tab at run time that is allowing the user to view more pages in web browser "hi pls respond me quickly i also like how can we add tab at run time that is allowing the user to view more pages in web browser " http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1264835&SiteID=1 ...Show All
Software Development for Windows Vista Adding/Reading Image Comments With GDI+
I'm trying to programatically add and read a comment in a jpg image, but in researching what I want to do, all I can come up with is a bunch of old news about the GDI+ image comment exploit. Does anyone know how to add/read image comments with GDI+ Okay, so here's what I discovered thorough exprimentation. 1. User comments are stored in jpg files with a PropertyItem id of 37510. 2. There is a SetPropertyItem() function of the Bitmap that accepts a PropertyItem. 3. You can't create a new PropertyItem. 4. You can read a PropertyItem from one Bitmap and set it on another. 5. You can change the value of the PropertyItem, but you need to change its Len property first to make sure it has enough room. ...Show All
Visual C++ Namespaces System.drawing
hi, I recently started using Visual C++ 2005, and I'm trying to work with BITMAPS to get pixel information, I had started a thread about that topic but now I have a more general question about namespaces, I was wondering if to include the system.drawing namespace I must be in a CLR project. Is there another way to use the bitmap class and other namespaces like system.something Thanks Generally, if you want to use .NET classes, you need to compile program with /clr switch, this means, make it managed. However, every task can be solved using .NET and without it. Specifically, Bitmap is part of GDI+ which is available for unmanaged C++ program. http://msdn2.microsoft.com/en-us/library/ms533798.a ...Show All
Visual Studio Team System TFS Administration Tool Setup: Error code 2755
Hello! I am trying to install the TFS Administration Tool 1.1 on a machine with Windows 2003 Server R2 Standard Edition SP1 and Team Foundation Server. The OS and the TFS are both German versions. When I start the setup of the tool I get the following MessageBox: The installer has encountered an unexpected error while installing this package. This may indicate a problem with this package. The error code is 2755. How can I get this tool installed and running Regards CSharpNewbie22 Excellent! Thanks for posting the reply - hopefully now when the next person has this same problem, they'll run across this thread and your fix :) ...Show All
Visual Basic Bitmap editing
I have a black and white bitmap image containing a barcode that cannot be read due to the poor contrast. The picture is currently being obtained automatically through a custom program programmed by a coworker, but the decoding is failing due to the poor picture quality. I can make the barcode readable by simply saving the file and manually increasing the contrast and decreasing the brightness in Microsoft Picture Manager and re-saving. Can this be done automatically using Visual Basic I have access to both VB6 and Visual Studio 2005. Thank you. Thank you for your help, I didn't need the entire application, but I was able to import and use the PhotoHelper class to do exactly what I needed. Tha ...Show All
