Skattefuten's Q&A profile
SQL Server SSIS Package is "hanging" after validation
My SSIS package will just hang (do nothing) after validation of the package tasks. I realised that it does 2 validation. It then hits "starting exectuing" and then nothing. I mean nothing. It just stays the same. When I look into the logg file, the same message as in the output window. My package has parallel extract of data from the same datasource, but different tables. I dont know if that the problem but i really doubt it because i have done parallel table downloads countless times in version 2000. When i go into the data task window, the source task does no even indicate that its downloading (color yellow). Is there any reason ...Show All
Visual C++ Please Help me Out From a Run Time Error
I am developing an application in which i am handling a file(.txt) from the SDI.I am using fstream.h header file for reading from the file. My program works small bit but give a runtime error Runtime Error given by the compiler is as below "Instruction at 0x5f4229b6 reffered memory at 0x1c000004 .The memory could not be read from MyApp.exe(MSVCRTD.DLL)" After debugging it in VC Debugger ,it gave the above message and opened an file for debugging whose path is something like this C:\.....\SRC\Intel\MemCPY.ASM this is the whole scenario . Please Help me out Thanx It looks very much like you have a call to memcpy (either directly or indir ...Show All
Windows Forms quick way of detecting if any changes have been made to form
I am looking to see if there is a quick way of finding out if any changes have been made to a form. Thanks. If you are using Databinding, you can raise events to handle modifications. This article explains it: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnadvnet/html/vbnet10282003.asp Another way to to test the Changed event of the controls. You can&nb ...Show All
Visual Basic How do I move a form without borders?
Hi, I was wondering, how do I move a form without any borders I found this question answered many times but not for VB2005, it was usually C#, C++, or VB6. Thanks probably an easier way using point.offset. . . but this works: Private startPoint As Point Protected Overrides Sub OnMouseDown( ByVal e As _ System.Windows.Forms.MouseEventArgs) MyBase .OnMouseDown(e) startPoint = e.Location End Sub Protected Overrides Sub OnMouseUp( ByVal e As _ System.Windows.Forms.MouseEventArgs) MyBase .OnMouseUp(e) Me .Top = Math.M ...Show All
Windows Live Developer Forums How to Recognize that MSN Messenger is the client
Is there a way to use either css or USER-AGENT to recognize that the page is being viewed from the MSN Messenger window I would like to just show my regular web pages at the regular URL, but display less content if the client is the MSN Messenger Window. Regards Chris we do not have a version api currently, but this is a great suggestion. one thing you can do it try and call functions which are only available in your current client such as some of the XML Ajax apis which are restricted on older clients that do not have IE 7.0 ...Show All
Visual Basic Problem with Socket?
It is possible to create a client/server system with sockets without having that to define an IP to connect itself to the server I have a system in vb6 but I am not obtaining to translate into net 2005 Thanks Bottom line is no. You could rephrase the question: Is it possible to send an e-mail to someone without knowing their address Having said that, you can 'broadcast' messages to everyone: this is really only useful to send out an 'is anyone out there ' message, and the server respond with an 'i'm here at xyz address '; the conversation will then continue through a connection established to that address. ...Show All
Windows Forms How to Deploy an VB 2005 application?
I have done a small application and i would like to test the deployment features availables in VB 2005 Express Edition. I have seen some tutorial redarding this point but all of theses refers to Setup Projects availables in VB 2003. In VB 2005 Express Edition this option is unavailable. Could u share with me your experience with this topics Thanks If you're interested in our new "Clickonce" feature you should be able to try it out by going to the Build > Publish menu item. The setup projects you talk about are not available in Express editions. Neil ...Show All
.NET Development Error retrieving correct number of Copies in Devmode Structure (Windows 32 API - WinSpooler.drv)
Hi, I am using winspool.drv to spool print job using a notify call back mechanism. To obtain the print job information, I am currently filling up the JOB_INFO_2 structure which is giving me access to DEVMODE structure. My devmode structure is returning me valueable information about print job except the flag dmCopies which is specified as short dmCopies ; "Selects the number of copies printed if the device supports multiple-page copies." in MSDN. Please check following link. http://msdn.microsoft.com/library/default.asp url=/library/en-us/gdi/prntspol_8nle.asp Now what if I do not have a printer that support multiple-page co ...Show All
Smart Device Development PocketPC SerialPort and turning off/on the device
Hi, Here a simple C# example that reads data from a GPS Device Assume two Buttons on the form and one Textbox. Further a SerialPort with the DataReceived Event handled in the form. public class Form1 : Form { public delegate void SetText ( string strPar); public SetText myDelegate; public Form1() { InitializeComponent(); } private void Form1_Load( object sender, EventArgs e) { myDelegate = new SetText (SetTheText); serialPort1.BaudRate = 4800; serialPort1.Handshake = System.IO.Ports. H ...Show All
Visual C++ how can i use the type struct in VISUAL C++??... i'm new in visual c++
hi! i have a program in c++ and i want to do it in visual c++, but i found a problem, in the code program made in c++ i use a type struct : struct ind { char *c; int f; } but i think that in visual c++ doesn’t exist the type struct , i'm not sure..... can i use the type struct in VISUAL C++ or what other kind of struct may i use i think that is the main question.... WHAT other type can i use instead of the struct in visual c++ , i want to declare two variables of the type ind: ind pob; ind pob2; so i can use the structure pob[0].c, pob[1].c , pob[1].f ...Show All
Visual J# litlle problem
Helllo, I want to create the simple program, but i don't know how to do one thing: i have 2 texbox , label and button in textboxs you type numbers, and the answer appears in label. And all it should be programmed on button click. But i need that, if my number is smaller thatn 18 and bigger than 25 then label set text , f.e. " it good" or smtg, and i have these groups: 18.5 < rez < 24.9 25 < rez < 29.9 30 < rez < 39.9 40 < rez < 70 rez is that ansver, and on each other must be different text, that i want to set but i don't how to do that, i had tried to make 4 if functions but then works just last. write me how to do t ...Show All
Microsoft ISV Community Center Forums Business Scorecard 2005 Installed - Just cannot connect to Analysis Services database
Followed the readme for installation step by step. Installed the Server and the Builder on the same machine - db is SQL Server 2005 April CTP. - Will the Business Scorecard work with the April CTP - Launched the BS Builder and when trying to connect to a ADOMD.NET datasource, in server specified the <Servername>, the database dropdown always comes blank.....error "could not connect to data source" (Analysis Services is running, The AS 2005 instance has 2 databases, one a result of my successfull cube deployment) Checked the known issues with SQL 2005, could not find a soln... A quick help would be great.... Regards ...Show All
Visual Studio 2008 (Pre-release) WinFX beta 2 is there
Go and get it http://msdn.microsoft.com/windowsvista/downloads/products/getthebeta/default.aspx Well with WinFX there isn't really any notion of "upgrade". It's really just "uninstall (the old) and reinstall (the new)". Yes, you should definitely uninstall .358 and then install 3.0.03906.22 (aka Beta 2). ...Show All
Visual Studio Express Editions VB.NET & SQL Server Installation Problems
Hi, Maby someone can help... I've just downloaded the .img installation file of VB.NET (the latest express edition) and extracted it and installed it. Before then, I uninstalled VB.NET Express edition BETA 2. On completion of the install of the latest VB, the SQL Server installation failed and when I started VB, there where absolutly no templats what so ever. I re-installed the whole lot again and check out all the advice that there was but still nothing works... Please help, any advice will be gladly accepted. Matt. Matthew this is the same question http://forums.microsoft.com/MSDN/ShowPost.asp ...Show All
Visual Basic problem reading a double
I have a xml document, and one of it's values is a number in the format 1,5. And i need to insert in a excel cell that value * an integer, the problem is that when i convert 1,5 to double i got 15 instead of 1.5. I tried modifying the format of the number to 1.5 or replacing the , with a . but with no success. If i don't convert the number to double i got only 1. Now i convert 1.5 to 15 and then multiply it by the integer and then divide it by 10. It works, but it's not elegant, and the thing is that in the xml document i can have 1,5 or an integer, and in that case i can't divide by 10. So i need to compare the number in search of a , befor ...Show All
