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

Software Development Network >> Andrew Grammenos's Q&A profile

Andrew Grammenos

Member List

Nathan Blevins
.net sukbir
Tryst
Abhishek Chadha
RamGuy
Buis8907
D. Choquette
CharissaJB123
Josh Unger
Inferno986
Bret Grinslade
Alexei Pavlov aka BlackTiger
martinx1
Alex2200
Paulustrious
XpyXt
Jon Stroh
MarikaT
Robert Lelieveld
Arda Cetinkaya
Only Title

Andrew Grammenos's Q&A profile

  • Smart Device Development Accessing POOM from C#

    Using C# in Visual Studio 2003 .Net I'm trying to access the POOM Contacts list. Long ago I built a simple program with eVB to do something similar but after reading dozens of links I still can't figure out how to do it. Can anyone shed some light Robert W. Vancouver, BC Should there be ”much simpler way”, there will be no 3rd party toolkit, right But you are correct, there’s a way but only on WM 5.0. So, you have these options: Drop support for older devices (pre WM 5.0), upgrade to VS 2005 and use WM 5.0 features. Purchase 3 rd party toolkit, it should work on all devices but you probably want to verify that with manufacturer. Code everything yourself. ...Show All

  • Gadgets File upload with Sidebar Gadget

    Is there any possible way to upload a file through a gadget I am creating a gadget that takes a word document or .txt file as input, post that to our servers and then we display information to you every day based on that information through the gadget. (the user gets a infoId that will give them their own customized info) Any ideas would be appreciated. Thanks. Thor. I'm new to this Adodb.stream, can anyone tell me how i can read the file passed on the server side I am using PHP language for the server script. ...Show All

  • SQL Server Problem executing procedure and how can I use their results in a select statement

    I have this Stored Procedure that walk through a table that stores hierarchical data and reorganize the output, so the resultset will be ordered by this hierarchy. The table structure is (fieldnames in english between parentheses for better comprehension): CD_CATEGORIA (CD_CATEGORY) DS_CATEGORIA (DS_CATEGORY) CD_CATEGORIAMAE (CD_MOTHERCATEGORY) Here is the Stored Procedure code: CREATE PROCEDURE [dbo] . [sp_RetornaCategorias] -- Add the parameters for the stored procedure here @ID int = 0 AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON ; declare @TabelaSaida table ( cd_categoria int , ds_catego ...Show All

  • Visual C# Passing a reference argument using ref

    Hi, I have two classes A and B. I need to pass A to B so that when a graphic symbol in B is clicked it modifies code in A. i.e code in B needs to modify code in the passed class A. public class B(ref A m_a){ } Several classes( C and D) use class B and I have a class hierarchy such that C and D are derived classes of A. I am having problems with conversion error messages when trying to pass references of derived classes. i.e B b = new B(ref D) the compiler says that it cannot convert D to A Is it possible to pass a reference object by reference when the object is a derivative (like above ) I am trying to pass by ref so that an object of B does not get loaded by the object D. I only want to pass the address and h ...Show All

  • Audio and Video Development Event Target

    Hi Chapter 8 of specification gives the larger picture of Event Processing. It says that user events are fist processed by the script and after that markup gets chance to process the event. eg if a user presses a navigation key then first the script (through event handlers ..if one is regestered ) first processes the gesture and after that (if allowed by script) the markup processes the gesture --changes the focus to the next element (depending on the navigation key). If the above is correct then this means the target for the keyboard events is always the current focused element. One exception might be access ( or shortcut) keys in which case the target is the element for which the short key is defined. ie script cannot override the acc ...Show All

  • Windows Forms How can I AUTO-HIDE a toolbar?

    How can I AUTO-HIDE a toolbar for a program like Internet Explorer (like the favorites menu Thanks, I suppose you need additional controls as these here: http://divil.co.uk/net/controls/sandbar/ http://www.telerik.com/ http://www.infragistics.com/ hope this helps ...Show All

  • SQL Server Snapshot Agent,

    Dear Colleagues, I am using Windows Server 2003 RT, and SQL Server 2005. When Replication is performed with SQL Server Mobile. All 3 taskes i.e. Publisher creation, Article Publish, Snapshot agen starting. All are ok. However after replication is done when checking the Status of the Snapshot Agent it is not Running, and I cannot make it Run as well. Please advice me as to what could possibily be wrong with it, what can I do. Thankx. Hi Mark. The Snapshot agent isn't a 'continuous' agent, it basically runs to create a snapshot of the articles at a point in time for initializing new subscriptions, and then is run on a set schedule, or possibly only on demand for continuously connected subscribers. Not sure if wha ...Show All

  • .NET Development How can I get CPU core clock speed?

    subject You can use the managed WMI classes found in the System.Managment namespace to obtain the # of CPU, speed, stepping, etc... System.Management.ManagementScope ms = new System.Management.ManagementScope( "\\\\localhost\\root\\cimv2" ); System.Management.ObjectQuery oq = new System.Management.ObjectQuery( "SELECT * FROM Win32_Processor" ); ManagementObjectSearcher query = new ManagementObjectSearcher(ms, oq); ManagementObjectCollection queryCollection = query.Get(); foreach (ManagementObject mo in queryCollection) { if (3 == Convert .ToUInt16(mo[ "ProcessorType" ], System.Globalization. CultureInfo .InvariantCulture)) { foreach (PropertyData prop in ...Show All

  • Visual Studio Team System Software installation and requiremnents guide template.

    Document I am looking for is a software installation and requiremnents guide template. Meaning - system and application are ready to be installed in a customer site - template for a detailed installation gude (system requirenments, network topology, services, security for software requirenments etc) I can not find this document template in MSF Thanks in advance Leonid Niraev As Joe mentioned, these docs are not part of MSF for Agile Software Development, but also they are not yet in the MSF for CMMi Process Improvement, but you can find some like those in the Patterns and Practices area . MSF is now part of Patterns and Practices team at Microsoft, so there might be some cross collaboration on existing guides (such ...Show All

  • .NET Development Unable to emit assembly: Referenced assembly 'Interop.FAXCOMEXLib' does not have a strong name

    I have a COM+ application, it has several components, all of which are native components inherited from System.EnterpriseServices.ServicedComponent, this application is signed by a strong name it is registered by regsvcs32 and its up and running fine now I am trying to add faxing capabilities to this application using Microsoft Interop.FAXCOMEXLib.dll (fxcomex.dll) the problem is that it doesnt build now, it fails with an error message : Unable to emit assembly: Referenced assembly 'Interop.FAXCOMEXLib' does not have a strong name i've tried the tlbimp.exe command but it fails with an error message: TlbImp error: Unable to locate input type library: 'C:\tarasol\TarasolEngine\bin \interop.faxcomex.dll\' seems i ...Show All

  • Software Development for Windows Vista CallExternalMethod is not called

    Hi! Good Day! I'm new to WF and so far I have developed a sequential workflow, something like a helpdesk application, and I would like to ask for your help regarding some issue that I encountered. Basically what the system does is the system will wait til a User creates a ticket. Then it will be approved or disapproved by another user (Approver). If the ticket has been disapproved, the system will send the User the status of the ticket. But if the ticket has been approved it will go then to another user (Provider) to give solution or escalate it. Then it will send the status to the User. Here the problem goes, the CallExternalMethodActivity is called only if I press the button twice to Approve the ticket, which internally call ...Show All

  • SQL Server MDX Query never finishes

    I am populating flatfiles from MDX queries run i SSIS against AS databases. I have ran in to problems with MDX queries returning large resultsets that never finishes. The query performed is purchase calculations over different time periods for each member in the customer dimension. There are 6-8 calculated members created and the customer dimension contains about 3,5 million members. When query is run, after 1-2 hours the server stop allocating memory and starts to get data from cache in intervals. In the end of each interval, memory is dropped. In perfmon it seems to be no activity during long periods I have given it as long as over 3 days without any result. Server is 8 x 64bit cpu with 16 gig memory. Some help in this ...Show All

  • Visual Studio Express Editions How to make TABControl look like this?

    Is this posble http://i31.photobucket.com/albums/c386/dfox13/tab.jpg Tabs at the left side and horizontly alligned... If this is not an ordinary Tab Control, what control will I use to make it look like that Thanks in advance! I'm having the same Prob. One Possebility to solve this is to built a Workaround like this: Use a ordinary tab control, but Hide the top header page) -> http://www.dotnetrix.co.uk/tabcontrols.html (2nd Example from the bottom) and than built your own Navigation Menu on the left side and select the tabPage you wish to show programmatically, as a respond to the navigate button click event. If you find a better Solution let me know and post here. ...Show All

  • Windows Forms from string to form

    Suppose you have the name of the form : string fname = "FormSomething"; How do I create a form object with fname as name Apparently this is not enough: Form f = new Form(); f.Name = fname; Also tried: f.CreateControl(); Can anyone please tell me how to get the form object Thanks!!! Hi, What about form.name (its property). So, what do you really want To call the form by "FormSomething" Or some other use If you want to show the "name" on the title bar just use form.text Thanks ...Show All

  • .NET Development Unique name for the validation report

    Hi, I have developed a tool for generating a validation report. The tool reads off huge volume of data and checks for invalid data(records). Any invalid record found is spitted out into a report. Right now, the tool is designed in such a way that each time the tool is run, the same report (say validation_report.txt) gets overwritten with a different set of invalid records. My question is: How can I create a report with a unique file name everytime the tool is run..(like validation_report_1.txt, validation_report_2.txt..etc) I was looking at threads as an option..where each thread would generate a different report. Would that make it too complicated is there a simpler way of doing it Thanks ...Show All

©2008 Software Development Network