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

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

kennm

Member List

Pockey
arists
Ilya Haykinson
Designer1
Dareman
Prince of Dhump
Milzit
Gusbin
Rocky82
thomas_woelfer
1hhChip
pigi76
Gagandeep Singh
AlexBB
Joao Richiard
Muhammad Azeem Azam
TkNeo
DaveKStl
Student4508
KyleNHS
Only Title

kennm's Q&A profile

  • Smart Device Development Help with Invoke on CF

    I have been trying to nail this problem for a week now, but can't seem to get it right. I am building a Jabber application for the PocketPC and am using a third-party component for n-software. The n-software component does the usual things: expose a connect method, but also an OnSync event that fires when the device has logged into the Jabber server successfully. The OnSync THEN downloads the Jabber Roster (ala MyBuddies). Once I have these buddies, I want to parse them and put them, by group, into a TreeView. The issue is the old threading problem. I can't get the TreeView to load the Roster. ANy help would be appreciated... THANKS. My code is as follows: Delegate Sub MyEventHandler(ByVal sender As Object, ByVal e As nsoftware.IPWor ...Show All

  • Visual Studio Accessing a control on a Microsoft report

    Accessing a control on a Microsoft report I've created a report with the Microsoft reporting technology in vs 2005. Is there a way to access a control on the report like in ACTIVE REPORTS 3 For example: I've got a label on the report and I want to pass data to that label ("lblClient") In active reports I can pass data to the label like this: lblClient.text = "WhatEverINeedItToBe" Is it possible in Microsoft reporting / Crystal reports TIA Hi, if you want to acces to outer report elemts, you can do it, like this: =ReportItems!txtFirstname.Value & " &qu ...Show All

  • Visual C# How to create a LogFile...?

    Hi... I want to create a Log file in my application. I want to use this log file to put the text received & transmitted on my PC serial port throgh my C# application. I am receiving large text on my PC serial port. Is there is any special class to create a log file in C#. Thanks in advance, Vinay im not sure about that to be honest. It would probably handle itself. If you are going to be storing a large amount of strings, I would advise against it as I still think this is going to be overkill but you could use a MemoryStream and append data to that. The memorystream appends to itself and uses the memory as a backing storage. Then you can write the contents to file afterwards: http: ...Show All

  • SQL Server Database access by machines running SQL Servers 2005 32-bit and 64-bit

    Hello We have 1 machine running SQL Server 2005 x64 (64 bit). The other machine is backing this SQL Server up. It is a 32-bit machine, so it requires ( ) a 32-bit version of SQL Server 2005. Would this back-up machine work correctly on a database previously managed by a 64-bit machine and vice versa. Thank you! No, the things that were developed on the DEv machine can be deployed without any problem on the production machine as from your description. On the Prod system the 64bit framework will take care of the assemblies. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Software Development for Windows Vista not using release()

    Hi, In some of the directshow documents, the authors use release() method after they are finished with some interfaces. For example: // get next filter EnumFilters -> Next (1, & Renderer , & fetched ); Renderer -> EnumPins (& EnumPins ); EnumPins -> Reset (); numoutputpins = 0; while ( EnumPins -> Next (1, & InPin , & fetched ) == S_OK ) { InPin -> QueryPinInfo (& pinfo ); pinfo . pFilter -> Release (); InPin -> Release (); if ( pinfo . dir == PINDIR_OUTPUT ) { numoutputpins ++; // we can jump out if we found an ...Show All

  • SharePoint Products and Technologies Share "Site libraries and lists" with a subsite

    Hi all, is there any way to share a Site library or list with a subsite For example, imagine that I have a Web application. This Web application have a web site collection and two sites: Group (Top-level site) and Enterprise1 . The Enterprise1 is a subsite of Group . I have a Announcements list on Group and I have added some announcements to that list. Now I want to add this Group Announcements List as a WebPart in Enterprise1 . Is it possible Regards, Mateus dlgross wrote: In WSS 2.0, you can do this by creating a DataView web part in FrontPage, not sure how to do it in V3 Hi dlgross, I've done this using the Micosoft Office Sharepoint Designer. I've added a DataView into a page ...Show All

  • Visual C# Assistance

    Hello everyone. I am pretty green in programming and therefore my question might sound rather silly or naive. I need make a program where: When int p =0; I get 12340 When int p =1; I get 23401 When int p =2; I get 34012 I will appreciate any help regarding how to solve the problem. At the moment, this is what I have made: int p = 0; for ( int i = 1; i <= 4;) { p = i++; this .Label1.Text += p + "<br/>" ; Result: 1 2 3 4 Regards wan private void Form1_Load( object sender, EventArgs e) { int p = 0; int temp = 0 ...Show All

  • Visual Studio Team System Web Test

    Is it necessary that my web test has to pass in order to make sure that the load test runs correctly..because even if my web test is failing i can run my load test and get results....will that be right ...Show All

  • Visual Studio dll reference doesn't work on another machine

    Hello, I hope someone will have an answer to this question... I have two projects: An addin project and a console project. Both are sending/receiving a struct using the following from the addin project: MyObj.GetType().InvokeMember(sMethodName, System.Reflection.BindingFlags.InvokeMethod, null, MyObj, oParam); // where MyObj is the console project. All of that works on my development machine just fine!! But when I try to send that to any another machine that does NOT have Visual studio installed, the program breaks at the line above saying: "an error occurred here: Exception has been thrown by the target of an invocation. and exception System.Runtime.Interopservices.COMException (0x8002801D): Library not registered... (TYPE_E ...Show All

  • .NET Development Getting Length of the Request Stream!!!

    I'm implementing a custom sink and so I have a class that implements the IClientChannelSink interface. In the implementation of the ProcessMessage method of this interface, I need the length of the request stream. [C#] void ProcessMessage( IMessage msg , ITransportHeaders requestHeaders , Stream requestStream , out ITransportHeaders responseHeaders , out Stream responseStream ); I simply used len = requestStream.Length; and there was no compile error for this. But at runtime I catch an exception that is complaining about a missing method named get_Length(). What else could I do Shadi, it sounds like the underlying stream doesn't ac ...Show All

  • Visual C# Error:System.StackOverflowException: Exception of type System.StackOverflowException was thrown.

    Dear all, when I executed the following aspx file, the error of "System.StackOverflowException: Exception of type System.StackOverflowException was thrown. " occured.  Pls help to identify the error for me. Thks. CS file: using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Collections; using database; namespace article {  public class webcolumn  {    private string _colid;   private string _colname;   private string _upcolid;   private string _layer;      public string colid   {    get {return _colid;}    set {_colid=value;}   }  &nbs ...Show All

  • Visual Studio Team System error when get new version file from TFS, (gzip, crc)

    Hi all, I checked out a power designer file (db.pdm) from team foundation server and moified it, then I gave it to my teammate, he changed some and copy to the folder override the original one. next time he can not got the latest version of this file, very time he meet this error: the crc from Gzip script does not match the crc that calculated from unzip data . ( I use chinese version, so I translate the error description to english, I paste the original chinese error description below: GZip 注中的 CRC 与 解 的 据中 算出的 CRC 不匹配) Thanks in advance. V.C. I have tried uninstall and reinstall, but it doesn't work, it seems much like the server had known me, the first time I get latest TFS would alert me ...Show All

  • Windows Live Developer Forums Tile Problem

    Hi, I am overlaying a tile on map; the code is as follows var bounds = [new VELatLongRectangle(new VELatLong(47.602386954016104, -122.33883351087571),new VELatLong(47.601764813442514, -122.33762651681901))]; var tileSourceSpec = new VETileSourceSpecification(); tileSourceSpec.ID = "lidar"; tileSourceSpec.TileSource = "Tile.jpg"; tileSourceSpec.NumServers = 1; tileSourceSpec.Bounds = bounds; tileSourceSpec.MinZoom = 12; tileSourceSpec.MaxZoom = 18; map.AddTileSource(tileSourceSpec); var tileLayer = new VELayerSpecification(VELayerType.VETileSource,"1", "lidar"); tileLayer.ZIndex = 100; tileLayer.Opacity=0.9; ...Show All

  • Visual Basic SQL Server vs. Local Data File

    I am creating a standalone database application that will not be connecting to a remote computer. Would it be better to create an SQL Server database for my program or just use a local data file I have tried to create an SQL Server database from within VB Express 2005, but it gives me an error stating that remote connections are not permitted and says that I need to change my default settings to allow this. I have no idea how to fix that.  What are the advantages and disadvantages of using an SQL server vs. a local data file if the program is only going to access the data from the computer that the program is installed on SQL Server is better in terms of data management, you can store/update/ ...Show All

  • SQL Server T-Log Backups fail from 7am to Noon

    This is a weird one. I have my server backing up the tlogs every 15 minutes 24 hours a day. Every day between 7 am and 12 noon they fail. I can't figure out why. Nothing that I know about happens between 6:45 and 7am that would cause an error. At 7am I get error 8309 in the App Event log. BACKUP LOG WITH TRUNCATE_ONLY or WITH NO_LOG is deprecated. The simple recovery model should be used to automatically truncate the transaction log. I don't get this at any other point in the day. After that I get a messages that the backup plan fails until noon. At noon the full backup runs, and then the TLog backups start running again. In the SQL log I get this.. Executing the query "BACKUP LOG [libData] TO DISK = N'E:\\sqlBackups\\tlog ...Show All

©2008 Software Development Network