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

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

Reena33

Member List

MisterMoon
Llorean
Kevin Berry
alvi_du
Troy Lundin
ReneeC
He is Cool
esafari68
barkingdog
Jonathan Ward
Zulbaric
invantix
Sondre - MSFT Regional Director
Maher K. Al-Jendasi
Mystagogue
Encoad
Ying06
Spollie
Surezsu
d_xflow
Only Title

Reena33's Q&A profile

  • Smart Device Development Slow Connection Manager / GPRS connection

    Hi, I'm using the following code in a loop every second to check that the GPRS connection is active, and if not then connect it. It worked fine under VS2003 but since changing to VS2005 it runs incredibly slowly and makes the program inoperable. Can anyone shed some light on it or offer any improvements Thanks if ( ( ( Global.connMgr.Status != ConnectionStatus.Connected ) && ( Global.connMgr.Status != ConnectionStatus.WaitingForNetwork ) && ( Global.connMgr.Status != ConnectionStatus.WaitingForPath ) && ( Global.connMgr.Status != ConnectionStatus.WaitingForPhone ) && ( Global.connMgr.Status != ConnectionStatus.WaitingForResource ) && ( Global.connMgr.Status != ConnectionStatus ...Show All

  • SQL Server Merge Rep - Partition jumping

    Hello, We are merge replicating data from a server to client servers. The publication has a static row filter. If a change is made on the client to the field defining the partition, we are seeing a problem. After a synch, the record is deleted from the client. Here are more specifics: There are work orders created on the branch office server with a status of "Scheduled". These are replicated to the main office server upon a synch. Only records with a status of 'Scheduled' are replicated to the central server. If the client server changes the status from 'Scheduled' to unscheduled, the record then falls outside of the partition defined by the row filter. Upon synch, the change in status is sent to the server. The server ...Show All

  • Visual Basic Show Hidden Picture

    Here's the code I'm using, what I want is for the pbBlackout to slowly drop revealing the pbPicture underneath. but what I have does not work untill the Do Loop has finished. I thought that each time it went through the loop it would drop the picture by 1 pixel. All help welcome. Private Sub PicReveal() Do Until MoveTop = pbPicture.Bottom System.Threading.Thread.Sleep(25) MoveTop += 1 pbBlackout.Top = MoveTop Loop End Sub Thanks Nobugz, That did it, It's been a while since I played with VB6 and forgot all about Refresh() now I'm using VB.Net. Cheers Ps Did try to Mark as Answer and post was helpful but there was an error. ...Show All

  • Visual C++ How to unregister a activex component once it is used by the page moved to new page or using different event

    We implement an Activex component and sign the component, etc. Our application security requirement make us it work like an Applet with respect security and how it is stored and deleted. e.g. If a html page has an applet, it is instantiated in that page and the javascript can use that applet the applet life cycle ended when we move to new page. As I understand it, ActiveX component is downloaded and registered to windows registry with respect to our implementation of DllRegisterServer in the component. We implement DllUnregisterServer() also. But When you move to new page IE does not call unregister this component What am I doing wrong if not how to achieve something like this Can a component call unregister itself explicitly Regards Kr ...Show All

  • Visual Studio Team System Urgent question, Team Foundation Server support 64 bit installation?

    I have some question I want to know if possible to install my Team Foundation Server in 64 bits, can I do that Yes, you can install in 64bits, it will run under WOW64 environment, here you have more information: http://blogs.msdn.com/robcaron/archive/2005/10/28/486302.aspx ...Show All

  • SQL Server Restoring Database through .mdf file

    how 2 restore database in MS SQL 2005 using .mdf & .ldf file You don’t need to restore from a MDF, you can simply attach the files using either the sp_attachdb commadn from TSQL or the option that comes up while rightclicking on the database node in SQL Server MS. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Basic Count property

    I need to code a click button procedure that displays the total number of items in a list box. I can't figure out what to do. Any help is appreciated cmazur wrote: Try this... Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim count As Integer = 0 count = Me .ListBox1.Items.Count Label1.Text = count End Sub Hope this helps... Or this Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Me .ListBox1.Items.Count.ToString() End Sub ...Show All

  • SharePoint Products and Technologies Welcome!

       Welcome to this new forum, which is part of the SharePoint forums group that contains a comprehensive set of forums designed to cover all aspects of SharePoint Products and Technologies. I’ve held off on having these forums created for over a year because we already had a handful of newsgroups in place, but the benefits (search, moderation, filtering, stats, flexibility, planned enhancements, etc.) and the recent surge in usage have convinced me that it’s finally the right time to embrace forums as the de facto channel for community Q&A and discussion .      This particular forum is for general questions and discussions, which I’d expect will mostly be presales oriented. Detailed technical topic ...Show All

  • Visual Studio Using the IN filter??

    I'm trying to use a param to filter a report, but I don't want the report to be filtered when it loads up, in other words, show ALL on load. What I tried is setting the Parameter default values to a list of all the possible values like this: "ABC, DEF, GHI" then I set the report filter to use the "IN" operator so when the report is getting the values to show it should evaluate to the particular value being in the list I've plugged in, however the rpeort is blank. What is the correct way to enter the list of values in the param default field so I can use the IN filter It sounds like the configuration of the report parameter is the root cause of the problem. You have to get that part correct first. Assuming you are ...Show All

  • .NET Development Get XML from a XSD file

    I have an ASP.NET 2.0 applciation that has a XSD file in the project. The XSD file is quite large with table information etc... and I was wondering if there was a way to get a XML document based on the Schema of the XSD file Is there a WriteToXML() method that I am missing or something Please take a look at the foloowing 2 articles at MSDN: XML Schema Definition Tool (Xsd.exe) and The XML Schema Definition Tool and XML Serialization ...Show All

  • Smart Device Development Can't set focus in custom event handler

    Okay, I am trying to set focus to a control on my form in the handler of a custom event. But it doesn't work. If txtBox1 has focus and my custom event is triggered, then I want to set focus to txtBox2. But the Me.txtBox2.focus statement below does not work. Here is a sample of my code: Public Class clsReader Public Event OnRead(ByVal e As System.ComponentModel.CancelEventArgs) Private Sub ReceiveEvent() Handles SerialPort.OnComm rxBuffer = SerialPort.InputArray RaiseEvent OnRead(New System.ComponentModel.CancelEventArgs) End Sub ... End Class Public Class myClass Private WithEvents EIDReader As clsReader Public Sub WeHaveARead(ByVal e As System.ComponentModel.CancelEventArgs) Han ...Show All

  • SQL Server Package Configurations - some requests

      To any Microsoft SSIS developers reading this forum, some requests: 1) do NOT allow a package to run if it has "package configurations" enabled and one or more XML files with configurations cannot be found; 2) update the properties window with the properties read from the "package configurations"; 3) allow relative paths in the "package configurations" locations (relative to the package location) Thank you :-) Tom, If you want to make requests for future enhancements then do so at Microsoft Connect . Regarding point #1, quite a few people have asked for this but then alot of people during the beta timeframe asked for the behaviour to be the way it is now. You just can't please ...Show All

  • Visual Studio 2008 (Pre-release) WCF / IIS 6

    Hi I'm trying to run a WCF-Service under Win 2003 / IIS 6 (on Vista / IIS 7 it works!). But here I always get the exception: System.ServiceModel.FaultException: An error occured when verifying security for the message. I am using message-security with a custom Username-Authentication: <system.serviceModel> <services> <service behaviorConfiguration="RmsServiceBehavior" name="connvision.CvSystem.Core.Services.RangeManagerService.RangeManagement Service"> <endpoint binding="wsHttpBinding" contract="connvision.CvSystem.Core.Services.RangeManagerService.ServiceCont racts.IRangeManagementService" bindingConfiguration="RmsBinding" /> </serv ...Show All

  • Smart Device Development IrDA from PDA to Microcontroller

    Hi, I'm making a project involving a PDA and an Atmel128 microcontroller board. I like to have the PDA and the microcontroller to communicate through IrDA by sending some data from an EEPROM on the microcontroller to the PDA and then show it in a little application on the PDA. For statistical purposes. I've come up with a plan on how they will exchange data. The PDA sends a request to the Microcontroller establishing a connection to the Microcontroller (Socket ), the Microcontroller agrees and starts sending data through the serial connection which has an IrDA receiver/transmitter attached. When all data is transmitted the PDA sends an "All clear" signal or whatever it's called and a "Disconnect" signal and closes ...Show All

  • SQL Server how to loop through several excel sheets in a file in integration services

    Hello, I'm new at Integration services and I have an excel file with information in several worksheets. I want to loop through some specific sheets to retrieve the data and save it in a database table. I know how to retrieve the data from one sheet, but I don't know how to do it for several sheets. Any ideas ...I would appreciate any help. The last bit of pre-processing I want to do in Excel, I know how to do in an Excel macro, but not in SSIS. Can anyone adapt this into an SSIS Script task Here is the macro code snippet: Sub ClearWorksheets() With Application .Calculation = xlManual .EnableEvents = False Worksheets("MyData").Range("A:H").Clear .EnableEvents = ...Show All

©2008 Software Development Network