Software Development Network Logo
  • Game Technologies
  • Visual C#
  • Windows Vista
  • .NET Development
  • VS Team System
  • Microsoft ISV
  • SharePoint Products
  • Audio and Video
  • Visual Studio
  • Visual FoxPro
  • Windows Forms
  • Visual C++
  • Smart Devicet
  • Visual Basic
  • SQL Server

Software Development Network >> wandasoozq's Q&A profile

wandasoozq

Member List

Module
BABU_NEO
juicyjuice
Artix
DanoruX
PhrankBooth
Joe Lucas
Lugaidster
StarPilot
nsam
Ilan D
OLE DB driver creator
Vijay Guru Prasadh
yogibear0810
DrJazz
darkwarrior0404
R.Tutus
Ori'
Suthy67
OmarSoto
Only Title

wandasoozq's Q&A profile

  • SQL Server Customizing the report scheduling...

    one of the requirements is that if the report takes a long time to run the user can start report processing and later when that report is processed user can see that in his 'My reports' section, What will be the best way to do this, my main concerns are - 1 How can I use scheduling to accomplish this. 2 How to save the report, as snappshot or what... 3. How can I find in my Web app. that report is ready or not and show a link to it. 1. The parameters needs to be set when creating the subscription not schedule. A schedule can be shared among subscriptions. As I mentioned, if you decide to use subcribed delivery, it will be the end user who will set the parameters. When the user clicks on the link, the report will be ope ...Show All

  • Visual Studio Ctrl-Backspace functionality rolling back

    VS 2005 has a new behaviour of the shortcut. I dislike it! Does anybody know how to restore the old VS 6.0 behaviour Thanks! Thank you for complete answer. I've even found similar feedback http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=91162 I wonder what is " language package" Is this a plug-in from third-party companies ...Show All

  • Visual Studio 2008 (Pre-release) RichTextBox, insert an Inline element at CaretPosition (in an existing Run)?

    If I have some text “XXXYYY” and the CaretPosition is between the “XXX” and the “YYY”. How can I then add my own Inline element at the cursor position If I use “ this .richTextBox1.CaretPosition.Paragraph.Inlines.Add(myInline) “ it will (of cause) add to the end of the current run. Best regards, Thomas Andersen No. I need to insert a Inline (I think ), because I want to add a Hyperlink. Best regards, Thomas Andersen ...Show All

  • SQL Server 'Could not allocate space for object 'dbo.SORT temporary run storage'

    Hello all, I’m trying to transfer/transform some data from one table to another, both on the same database. The source table holds 92M records. To do so I'm using the next statement: INSERT INTO [dbo].[Messages1] ([Time] ,[ID] ,[ResponseTo] ,[MessageMD5] ,[source] ,[dest] ,[arln_err] ,[ErrorDescription] ,[ErrorNumber] ,[ErrorSource] ,[ErrorType] ,[HttpCall] ,[HttpStatus] ,[QuoteAmount] ,[ReservationPickupLocation] ,[RatePickupLocationDescription] ,[RateReqCarType] ,[RateReqPickupLocation] ,[RejectMessage] ,[ReservationAmount] ,[ReservationCarType] ,[ReservationCarTypeDescription] ,[RatePickupLocation] ,[resp1] ,[ResultNum] ,[strRejectMessage] ,[strResultNum]) SELECT [Time] ,[ID] ,[ResponseTo] ,[MessageMD ...Show All

  • Microsoft ISV Community Center Forums Collection Item: Parent / NextItem

    Hi, I am struggling with classes. This is what I want to do, in VBA (test it in Excel please): I want to add a property/function to my class, named NextItem and PreviousItem. These return the next and previous items in the collection. I have several separate collections where I keep my items in. So if I want to determine the next and previous item, I need to figure out in which collection the item resides before I can start to loop through that collection. Unfortunately there is no collection.item.parent. That is what I need to simulate I thought about adding a property ParentCollection to the class, but how can I use that property as a pointer to a collection and retrieve the collection from that pointer. Help! ...Show All

  • .NET Development TcpClient.Close()

    what happen if TcpClient.Close() is called when the async operation(BeginRead /BeginWrite) in progress thnx Hi, "we will unregister any async ops on the underlying socket when it is disposed so you dont need to worry about it." I don't get what "we" and "you" meaned here. Do you mean that OS (we) will unregister any async ops that developers (you) don't need to worry I developed an CE application which makes use of tcpClient to talk to a remote server. Somehow, I found this tcpClient will cause problem when the application closes itself if I call tcpClient.close. if I don't call tcpClient, it seems OK. regards dajiang ...Show All

  • SQL Server Inserting Dummy Data

    No one answered this question, how do people normally insert dummy data into tables I mean, where does the data typically come from what process is used to insert the data Note: This is for testing purposes, eventually to be tested in a Web-based front-end which I know nothing about. thx, Kat Hi Joey, I did send an email to your account, did you get it My question about the above script is this: wouldn't I have to give new values to the parameters each time I ran this script thx, Kat ...Show All

  • Windows Live Developer Forums What happened to the robot gallery???

    Where did all of our entries go I wondered why I only was getting 10 hits a day. https://www.robotinvaders.com/main/Gallery.aspx Actually, the rules state that "The resulting Robot application which is developed using the SDK must be hosted by the Participant and be available upon entry and without subsequent modification for the duration of the Contest Term and throughout the judging period ." Because the judging period hasn't ended yet, we are still supposed to host our bots I think. Btw, most of the bots also appear on http://gallery.live.com and you can of course place the address of the bot on other pages related to the bot ...Show All

  • SQL Server HELP!! i deleted services!

    i have installed vs 2005 and sql server enterprise edition on an xp pro sp2 machine.but i could not connect to the mssqlexpress default database that it came with.in a moment of madness i deleted the mssqlserver services (3 of them).how do i reinstall them i thought uninstalling the products and reinstalling them would help but it did not. please help! cheers yes it it is possible, the only thing is that you do not have access to all the functionality.i have solved the prob by uninstalling and installing the work edition. thanks ...Show All

  • Visual C# Assigning By Reference

    Quick question, in this code fragment From my own experiance; though I'm now one for 'rtfm', I have found that Connection.Details = Conn.Details passes a copy whereas Connection = Conn passes a reference. I cannot explain why and it has lead me to start reading books for begineers again. Hell! I've always picked up new tricks, in every language, whenever I go back to basics anyway. ...Show All

  • Visual C++ Adding objects to ArrayList?

    Hi, I want to use an ArrayList to store objects (see below) ArrayList *arrylst = new ArrayList(); MyClass1 *class1 = new MyClass1(); arrylst->Add(class1); However, it gives me an error saying it can’t convert class1 to type object. My question is how can I get it to work Thanks for your help! Try ref class MyClass1 { }; ArrayList^ arraylst = gcnew ArrayList(); MyClass1^ class1 = gcnew MyClass1(); arraylst->Add(class1); Consider reading up on a text such as http://www.codeproject.com/managedcpp/cppcliintro01.asp . ...Show All

  • Smart Device Development Installing VMNet

    Hi, Searched the forum but can't find an answer to what is probably a simple problem. I am trying to run the Standalone Device Emulator 1.0. It requires installation of the VMNet device emulator. I installed the driver, it shows up in the Add/Remove program list, but it doesn't appear in the network connections. When I run the emulator, I don't have an option to connect to VMNet, so it appears the service has not started. I don't see a VMNet service listed, so I don't know how to start it. I'm missing something here. Your help would be appreciated. Jeff You seem to be doing correct thing. Are you getting any error message or what Why do you think above is not working Can you please let me know a little mo ...Show All

  • Visual Studio Express Editions GuidanceAutomationToolkit.msi

    Is it impossible to install GuidanceAutomationToolkit.msi if you only have VS Express C# I tried to install it and the installer tells me C# is not installed. I click on the msi file and it give me the following message "C# language is not installed. Do you want to see information of the product Click Yes to be directed to a web page, click no to exit." [Yes ] [No] Yes takes me to http://msdn2.microsoft.com/en-us/vcsharp/aa336789.aspx No exits. I was wondering if there was a workaround. ...Show All

  • Windows Forms Input String was not in a correct format

    Hi I am a new bie to the c# programing . i am getting this error at the time of form_load. where when i run the form it works properly.i have come to the conclusion that the problem is at the line cmd.Parameters["@vendorid"].Value=int.Parse(cmbSrchVendor.SelectedValue.ToString()); Problem is that , this problem only exists at the time of form_load. required help and a solution ASAP. private void cmbSrchVendor_SelectedIndexChanged(object sender, System.EventArgs e) {SqlConnection con; try { con=new SqlConnection("connetion string"); con.Open(); //int id = Convert.ToInt32(cmbSrchVendor.SelectedValue.ToString.SelectedValue); // string str="select * from tblvendor where (vend ...Show All

  • SQL Server Connection String Error

    Hi Team I am new to WEB sites as I normal work with Win apps. I am using Server 2003 with SQL server 2005 Delevoper. The server is on my own network in the same room.. I have made a new Web Site in Visual Studio 2005 DotNet Framework 2.0. It runs fine on testing. I can log in and move around just fine. BUT when I publish it to the server the following happens: I Can find the web site in internet explore from my Domain name ( www.rbsoft.com.au ) or Static IP. I get the default page up ok. Then when I click on login I will get the login page. So I fill it in and click Login. Then I get the follwing Error message. An error has occurred while establishing a connection to the server. When connecting to SQL Server 2 ...Show All

©2008 Software Development Network