TigerMan90-'s Q&A profile
Visual Studio Brand new to VS.NET & having issues
Greetings all. I'm having an issue, perhaps with my IIS setup( ), getting VS.NET to allow me to create a new project. I've got a blank solution and when I try to add a new project (Visual C# Project => ASP.NET Web Application), I'm running into a problem. It's attempting to create the new project on http://localhost/webapplication1 and when I click the OK, I get an error box stating 500 Internal Server Error. I've opened up my IIS and under the Default Web Site properties, have navigated to the "Home Directory" page, entering in C:\Inetpub\wwwroot (which exists on my local machine). Any idea why I might be having issues would ...Show All
Microsoft ISV Community Center Forums PPT command button link to other pres
I'm having a hard time adding "hyperlink to another PPT presentation" functionality to a command button. I can add it to a text-based hyperlink easily, but I can't seem to make it happen with a command button. I want to use a command button because I want to control to which slide in this second presentation I go to based on a global variable set earlier. I managed to successfully use Presentations.open("second filename.ppt") but I have been unable to 1) open it in slideshow view and 2)navigate to a slide in that linked pres that is not slide 1. Any suggestions out there Thank you! ...Show All
Visual Studio Start Page
Does anyone know if it is possible to refresh the start page Further, the Recent Projects list. I have written an add-in that allows a user to manage the list of recent projects(should of been in this version), but can not figure out how to make the start page refresh. Thanks, Brian If you mean that the start page loads a different RSS feed from the default one, then Yes :) In VS go to Tools.Options.Environment.Startup and then set the Start Page news channel to whatever RSS feed you want. Hope this helps. JP ...Show All
Visual FoxPro How do I synchronize my workstation system clock with the server clock?
good day to everybody I wanted that my workstation clock will be updated at the server just at the click of a button. So, How do I synchronize the system clock in my workstation with the system clock at the server using vfp . Thank you very much for the help Thank you, thank you, thank you to all of you ...Show All
.NET Development establishing sql data connection with visual studio express
Using visual studio express with sql express, I am attempting to establish sql data connection visually. Database explorer shows Northwind connection , but I am unable to drag & drop a connection to the form. Is this a limit in the express edition, or have I missed a step. It seems that we dont have drag and drop in this edition, but one can add an sqlconnection component to the toolbox and then add it to the form from there, and then choose the connection string in properties ...Show All
SQL Server Debugging a script component task???
How to debug a Script Component task For instance, I’ve got a Input0_ProcessInputRow procedure and I’d like to see what happen when compiler reach this line: dFecha = Left(Row.Column19, 4) & "-" & Mid(Row.Column19, 5, 2) & "-" & Right(Row.Column19, 2) I’ve put a toogle breakpoint there and then saved but when I run the package to ignore at all. This topic has been already discussed in these newsgrups but I still have doubts. Thanks a lot for any advice or clarification Unfortunately you can't debug script components with breakpoints as you can in ...Show All
Windows Forms Why is this (setpixel) so slow? How can I speed up image creation.
Here is a simple sample of code that I use to create a bitmap from a data array I'm holding in memory. void Form1::ImageUpD(Double image[,]) //Image UpDate function { ImageBmp = new Bitmap(image->GetLength(0),image->GetLength(1),PixelFormat::Format24bppRgb); //ImageBmp is global...I always keep it around for display and updating double val; for (int i = 0; i < image->GetLength(0); i++) for (int j = 0; j < image->GetLength(1); j++) {//ImCLim below is just for contrast clipping...is a 2 element array val = image[i,j]; if (val<ImCLim[0]) val = ImCLim[0]; if (val>ImCLim[1]) val = ImCLim[1]; ...Show All
Smart Device Development Create and Print PDF document
I have a Vodafone v1640 (also called I-mate jasjar). I've written a program to create a PDF file. How can I print the a PDF file from my c# application On the pocket is installed a ClearVue PDF but it doesn't print file, only view. I've tried to install the Acrobat Reader but it doesn't start. I supposed it isn't for Window Mobile 5. Thanks Hi Michele, I am Prashanth. I too is having the problem what you are facing. In your mail u have mentioned, that u have created the pdf file by c# programming in asp.net. Can you please give me tips in creating the pdf file on fly. looking for the reply..... Thank you in advance. ...Show All
SQL Server SSMS-EE: Creating and Using Stored Procedures - Error Messages 111, 156, & 102
Hi all, I tried to use the SQL Server Managemet Studio-Express Edition to execute the following code statements: --- SQLQuery.sql--- USE testDB DECLARE @procID int DECLARE @procName varchar ( 20 ) DECLARE @procType varchar ( 20 ) CREATE PROC sp_getRecords AS SELECT * FROM Inventory CREATE PROC sp_insertRecord @procID int , @procName varchar ( 20 ), @procType varchar ( 20 ) AS INSERT INTO Inventory VALUES ( @procID , @procName , @procType ) CREATE PROC sp_deleteRecord @procID int AS DELETE FROM Inventory WHERE ID = @procID CREATE PROC sp_updateRec ...Show All
Visual Studio Express Editions Regarding the progressbar
Hi There Im damn new to this, but managed to put together an browser with buttons for printing , navigation and so on, but now after reading some sites at MSDN im really confused. My target is to show the progess for downloading a webpage. Here is my code so far: Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate(TextBox1.Text) End Sub Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click WebBrowser1.GoBack() End Sub Private Sub Button3_C ...Show All
SQL Server Differents DataSets
hi, i have to build a cube with the following data: - a part monthly agregated and - a part yearly agregated. how could i do this thanks. The usual approach is to create two different measure groups in the cube. The first measure group would have Time granularity defined on the Month attribute, and would contain a partition based on your SQL table with monthly aggregated data. The second measure group would similarly have granularity on Year (instead of Month), and have a partition based on the other SQL table... Hope this helps ...Show All
Visual Studio Three mystic symbols
After generation a xml-schem for my DSL model I've got what I need, but result doesn't look good, because unaligment. The best way to mend it is Format Document (Edit->Advanced->Format Document) Ctrl+K, Ctrl +D. If you do it you'll get a three mystic symbols befor xml root note (open xml result file in Hex format). They are: 0xEF,0xBB,0xBF. What for That's the Byte Order Mark, which is used to say which encoding the document uses. EF BB BF is UTF-8. See http://en.wikipedia.org/wiki/Byte_Order_Mark . HTH, Steven Kelly , CTO, MetaCase ...Show All
Visual C# how to convert text file to zip file through C# code
hi is it possible to convert the .txt file to .zip file through c# .net code For .NET 1.x you there are a lot of compession libraries out on the net, some are free some are commercial. A great free library is #Zip , or the creator of the free C# IDE, #develop . .NET Framework 2.0 has introduced GZipStream and DeflateStream classes for compression and decompression of streams. Here are links on MSDN: http://msdn2.microsoft.com/en-us/library/system.io.compression.gzipstream(VS.80).aspx http://msdn2.microsoft.com/en-US/library/system.io.compression.deflatestream(VS.80).aspx ...Show All
Microsoft ISV Community Center Forums Compiling a VBA project is increasing its size
I have an existing XLA whose size was 970 KB initially, I copied that XLA into MS Office XP\Office10\Library and it correctly showed up as an Add In in MS Excel, now I opened the XLA in VBA and recompiled the project *without* making any changes to it and then saved it; strangely the size of the XLA increased from 970 KB to 1.5 MB, what could be the reason for this , Does the XLA installs itself in the Library directory therby increasing its size Please help Does the add-in still work If so, don't worry about it. "Compiling" in VBA is not like compiling in many other languages, which compress the program by storing onl ...Show All
Windows Live Developer Forums how to Develop a bot?
hi, i want to write a bot for msn messenger using c#, should i write msn messenger from a to z like yahoo or is there any easier way to do so i'm asking this because i saw this option in msn, its not bot for ads nor for flooding its kind bot something like answer machine but not in english language is there a way to do so if i have to write the entire messenger where can i find the protocol details, or at least API for it thx in advance I'm a student from University of Seville, Spain, and I'm going to give a conference about that in my University. If you want the documentation, email me: penyaskito at gmail dot com EDITED ...Show All
