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

Software Development Network >> Jason Wilborn's Q&A profile

Jason Wilborn

Member List

Ana Maria Bisbe
robinjam
KevinBurton
davehomebrew
Víctor Manuel
KeeperMustDie
Joni222222
BigGuy
DavidTait
PugV
BobP - BIM
Pure Krome
sunny123
Ian Tanner
FernandoAlvarez
cdnhype
Nic-Gun
Danielarbib
msp1502
Sarah Cartwright
Only Title

Jason Wilborn's Q&A profile

  • SQL Server pull subscription

    Hello, i have one publisher with one pull subscription. when i make any change in publisher, that change is propegated to subscriber, but when i make any change in subscription, the change is not reflected. i have tried a lot of options but no one worked. please help me. Regards, Dear Greg, i have tried a lot of combinitions and what you noted is one of them. with no one of combinitions i could not succeed. The thing which i need to have a system with syncronized data and the only thing that came in my mind was this model to make data syncronized between nodes. ...Show All

  • Visual Studio Express Editions no symbols are loaded for any call stack

    I get a no symbols are loaded for any call stack error when trying to debug my program, is there a way to make it create the .pdb Debug: 'Client.exe': Loaded 'C:\Projects\soc\soc\debug\Client.exe', Binary was not built with debug information. 'Client.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded. 'Client.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded. 'Client.exe': Loaded 'C:\Projects\soc\soc\debug\RakNetDebug.dll', No symbols loaded. 'Client.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll', No symbols loaded. 'Client.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded. 'Client.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll', No symbols loaded. 'Client.exe': Loaded 'C:\WINDOWS\system32\advapi ...Show All

  • .NET Development Help with Raw Socket

    Are there any example of how to construct a raw icmp packet Mariya Atanasova - MSFT wrote: If you're just looking for Ping, there is a Ping class already in the System.Net namespace. http://msdn2.microsoft.com/en-us/library/system.net.networkinformation.ping.aspx Mariya No hes looking to Learn ICMP ...Show All

  • .NET Development Concurrency Violation

    Whenever I update or delete records using sqldataadapter update method I get an error message saying: concurrency violation:the update command affected 0 of the expected 1 records. I am using master-detail records and this error only occurs when I delete or update records of the child table through datagridview control. There is no problem while updating records of the parent table. Please help. You can't update a joined table directly. You can try updating using the join in a subquery to find the record you want to update. Declare @Fname varchar(50) SET @FName = 'Adamus' Update Employees Set Fname = @Fname WHERE LName = (Select LName from Operations o JOIN Employees e on o.employeeid = e.employeeid WHERE o ...Show All

  • SQL Server MSDE2000 Installation

    Hi Im installing MSDE2000 on new Machine Pentium IV LGA Processor HT technology; OS Windows 2000 Professional. Its getting roll Back after some installation. The same setup if im installing on my other new Machine With Scoket 478 Processor OS Windows2000 Professional. Its installing completly. Is there any compatibilty problem. Please Advice me what to do. Thanks In advance You will need to have a look in the installation log and post that here to investigate the problem. Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • SQL Server Formatting Date as integer

    I want to for that format the date in YYYYMMDD and MMDDYY, with no '-' as data type is integer I have used the following code (not the conversion function as I don’t need Hyphen '-') for YYYYDDMM SET @DATE = CONVERT ( INT ,( CONVERT ( VARCHAR ( 4 ), DATEPART ( YYYY ,GETDATE())) + CONVERT ( VARCHAR ( 4 ), DATEPART ( MM ,GETDATE())) + CONVERT ( VARCHAR ( 4 ), DATEPART ( DD ,GETDATE())) )) & for MMDDYY SET @DATEUS = CONVERT ( INT ,( CONVERT ( VARCHAR ( 3 ), DATEPART ( MM ,GETDATE()))+ CONVERT ( VARCHAR ( 3 ), DATEPART ( DD ,GETDATE())) + SUBSTRING ( CONVERT ( VARCHAR ( 4 ), DATEPART ( YY ,GETDATE())), 3 , 4 ) )) I am getting the result YYYYMMDD= 200688 MMDDYY =8806 ...Show All

  • Visual Studio 2008 (Pre-release) IssuedToken sample

    Hi I'm looking for a working sample to understand the working of the issuedtoken security setting (the clientcredentialtype setting) .. I wanted a sample that used wshttpbinding and keep the federation stuff out of the picture for the moment. As far as i've understood i must configure the clientcredentials section to specify address and binding for the STS to use ... thank a lot .. Enrico Sabbadin If you have a wsHttpBinding with a clientcredentialtype of "issuedToken" like this: <wsHttpBinding> <binding name="Blah"> <security mode="Message"> <message clientCredentialType="IssuedToken" /> </security> </bindi ...Show All

  • Windows Forms DataGridView Column Editor code generation issue

    I've used the sample shipped with Beta2 to build a custom DataGridViewColumn that supports masking.  When editing the columns in a DataGridView my new control shows up as one of the DataGridViewColumn types (kudos!).  However, the problem comes when I try and set some of the custom properties on the column through the Column Editor designer.  The designer sees the properties and I can set the values, but it doesn't write the values into the designer code in the *.designer.cs file.  Here is an example of one of the properties.   [Browsable(true), Description("The mask to apply to the text in the column."), Category("Masking"), DefaultValue("")]   public virtual string Mask   {    ...Show All

  • Visual Studio 2008 (Pre-release) something strange with RM

    Hello, It is very very strange, if I enable RM and call to a service, the fith time I call to the server it doesn't connect and gives an exception about retry time or something. But always the fith time i call it!!! The other four work!!! I am using June version I know that I don't give too much info :( Here is the client config: < system.serviceModel > < bindings > < wsHttpBinding > < binding name = " bc " closeTimeout = " 00:01:00 " openTimeout = " 00:01:00 " receiveTimeout = " 00:10:00 " sendTimeout = " 00:01:00 " bypassProxyOnLocal = " false " transactionFlow = " false " hostNameComparisonMode = " Stro ...Show All

  • Visual C# Querying AD using System.DirectoryServices

    I am new to querying AD and could use some help. My requirements are to get all email addresses, email aliases, and email domains from AD. Does anyone have a sample of this Thanks, Derek Do these scripts need to run on the Domain Controller Locally Or can you connect remotely using the LDAP connection format thingy ma' jig LOL... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creators Club Benefits

    "Both subscriptions provide aspiring game developers with access to thousands of game assets from Microsoft and key partners such as Turbo Squid Inc., as well as white papers, specialized starter kits, samples and technical product support to help turn Your World, Your Game into a reality." Am I missing something here Where can I get access to these 'specialized starter kits' and 'samples' Have I been deceived into buying this subscription If so, is there some way I can get my money back Maybe I'm missing something... I understand your complaint. I shared it initially as well hoping to have all sorts of starter kits available. But to tell you the truth, game design depend ...Show All

  • SQL Server for instance: How do I get the quantity of the last Date for every Location ?

    Hello, How do I get the quantity of the last Date for every Location See example given: select [Measures].[Quantity] on columns , ( nonemptycrossjoin ( [Location].[Location].[Location] , [Posting Date].[Posting Date] , 2 ) ) on rows from [Logistics] This query will give me the following result: Locations Date Quantity Location A 2006-01-01 5 Location A 2006-01-05 3 Location A 2006-01-07 7 Location B 2006-01-01 2 Location B 2006-02-05 3 Location C 2006-01-01 2 Location C 2006-01-01 2 Location C 2006-01-02 3 Location C 2006-01-03 3 This is what I want Location A 2006- ...Show All

  • Smart Device Development Using HttpWebRequest GPRS connection remains open

    Hi I am using HttpWebRequest and HttpWebResponse to perform a POST to a web server this is all working fine. I close the response and its stream by calling the HttpWebResponse.Close() method. The problem is that the Pocket PC still shows the GPRS connection as being open. Does anyone know a way I can force this to close This is the behavior of Connection Manager of the OS on PPC and SP 2003 or later. Even if you use ConnMgrReleaseConnection, the established connection is not disconnected. To disconnect the connection, you can try using RasEnumConnections and then RasHangUp, but I haven't verified the details of the calls. Cheers, Anthony Wong [MSFT] ...Show All

  • Windows Forms Problem with drag/drop on TreeView after user has scrolled

    The drag and drop has been working great in my TreeView control until the TreeView got so large that the user needs to scroll. Now GetNodeAt no longer provides the correct value. Here is a piece of the code: Private Sub tvFolders_DragDrop( ByVal sender As Object , _ ByVal e As System.Windows.Forms.DragEventArgs) Handles tvFolders.DragDrop Try ' Determine if a set of keys is being dragged If e.Data.GetDataPresent(m_formatKeys, True ) Then ' Get the node defined as the drop target Dim oTargetNode As TreeNode = tvFolders.GetNodeAt(tvFolders.PointToClient( New Point(e.X, e.Y))) End If End Try End Sub If the user has the TreeView scrolled, the oTargetNode is wrong. It appears t ...Show All

  • Visual C++ MSVCR80.dll missing message when launch Windows live messenger

    Hello I need help, i can't launch Windows live messenger because it have error message which says, "MSVCR80.dll was missing, try to re-installed, it may solve the problem." I already did it, but didn't work at all, still same error message came up. I tried to download .dll file and unzip it to the system directory, but came up another error message. Can you help me to fix this problems Thanks a lot... I had the same problem my solution- run uninstaller and then navigate to program files and delete the folder for msn messenger (these contain files that the uninstaller did not remove and that cause the problem to be repeated when you install msn again) then run installer problem solved :D ...Show All

©2008 Software Development Network