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

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

OzerK

Member List

ahmedWebDev
GregWilliams
EyalRF
CV.
ab2304
enric vives
Greenstrike
Maartin
gg1
pinkybaby
m.m.b.
JR2006
ShadowRaven
Kirk Lipscomb
mrpu
GSReddy
.net sukbir
nepenthean
linker
LKharlamov
Only Title

OzerK's Q&A profile

  • Visual Studio Error on a Help File Build

    Hello, I received the following error when building a help file on a project: Error: Unresolved assembly reference: System.Windows.Forms (System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac) required by apiregedit The project is building fine and I don't see any broken references. Thanks in advance for your help :) Bob Hanson Rashmi, My blog posts here http://blogs.msdn.com/sandcastle/archive/2006/07/29/Creating-a-Chm-build-using-Sandcastle.aspx and FAQ post http://blogs.msdn.com/sandcastle/archive/2006/07/30/a-few-faqs-about-sandcastle.aspx explains the /dep switch for MrefBuilder. Please let me know if this helps Anand.. ...Show All

  • Smart Device Development Streaming Multimedia

    Does anyone know how to stream audio and video using RTP or and RTP like implementation to and from a smart phone The Smart Devices Native C++ development forum is likely a better place for RTP related questions as there is no good managed story for working with RTP on devices: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=35&SiteID=1 Here's a thread from that forum that may get you started: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=706226&SiteID=1 ...Show All

  • SQL Server How to create report parameter programmatically?

    Hi, I'm working on custom report manager. It manages "report entities" and "report templates" (actually, RDLs uploaded on the server) and stores one-to-many relation between them. The task is to store "MasterEntityID" report parameter in every RDL and keep it up in actual state whether RDL is being assigned to another entity or new RDL is being uploaded and assigned. I've covered the first issue with SetReportParameters() web method, but how should I deal with the second one Uploaded RDL may be short of the param, so I have to add it programmatically while uploading. Thanks, Anatoly The new parameter must be added to the report definition under the <Rep ...Show All

  • Windows Live Developer Forums Local Live Url

    Hi I am making a link from VBA (Access 2003) to local live site, i want to know the url so i can do this Local.live.com/.......City, Postcode (....... being the indentify) it's the same as maps.googles.com/maps q= city, postcode etc I want to use windows live local as it gives a better quality picture of the place i am linking to Regards Go to local.live.com, click on help (bottom right) type in "build your own url" in search box, click the submit search button Now you have all the links you need in building specifically what you need Hope that helps ...Show All

  • SQL Server Replicar SQL 7 ( Publisher ) y SQL 2005 ( Subscriber )

    Quisiera saber si se puede y como llevar a cabo la replicacion con SQL 7 (Publisher) y SQL 2005 (Subscriber). Desde ya muchas gracias. For your SQL 7.0 publisher and SQL 2005 subscriber, only Transactional/Snapshot Replication is supported. You will limited to the functionality of 7.0 publications. ...Show All

  • .NET Development Database Structure design and User Interface Design

    Hello All I am having a bit of a dilemma designing Data Storage and User Interface for a project; here is my situation, bare with me as I am fairly new to this. I am creating 2 eCommerce websites, one to sell DVDs and the other to sell Health Supplements. I also need to create a central windows application to handle the CMS, Reporting and also to allow sales staff to take orders over the phone. It is the windows application, ordering section, displaying products which are giving me problems. The staff will need to firstly enter all the customers’ details, they will then go to a form where they can search products and add them to a cart/basket. A Health supplement has different attributes to DVDs, fo ...Show All

  • Software Development for Windows Vista Asp.net Workflow Return Messages Pattern???

    Hi, I've got a asp.net web app and a state machine workflow running in process using the manual scheduler. What i'm wondering about is what people are doing when returning messages to the ui. e.g. i've got a webpage which needs to call a state machine workflow which can do some work. But i need to get back an error or success message etc. I'm currently Enqueueing a work item like so: --------------------------------------------------------------------------------------------------------------------------------------------- CommandEventArgs eventArgs = new CommandEventArgs (); eventArgs.CommandName = command; eventArgs.Data = new ServiceEventArgs (uniqueId, data); WorkflowInstance instance = WorkflowManager . ...Show All

  • SQL Server Trigger and send to the fax printer

    Can SQL Server let me create a triger and send the data to the fax printer n send it to that particular person Sending data to fax printer can be achieved with MS Office tools (word) in this case, check this http://www.devx.com/vb2themax/Tip/18627 article for information. ...Show All

  • Smart Device Development Question: Class Library for both Compact and Non-Compact Framework

    Hi, I have a class library project with a number of classes which I can (de)serialize to and from an xml file. I can compile this class library and use it in a forms or asp.net app without a problem. If I copy all the class files to a smart device class library project it also compiles and works fine on a smart device. In the end I want to use these same classes in forms, asp.net, smart device and WPF implementations of the same application, but I want to prevent having to maintain the class files in 2 different projects. Preferably I want the class library and application projects all in the same solution. I have done some looking around, but haven't found an elegant way to accomplish this yet. Does anyone have a suggestion Thanks in adv ...Show All

  • Visual Studio Express Editions Can't download from microsoft also

    I ve been having a similar challenge. I can not download from microsoft. I have comcast and have spoke with them they say they are not blocking my modem and that it is a microsoft problem. I have three PC's in my home and none of them can download from microsoft. They all have valid windows XP installed. I am able to get auto updates, and when XP is reinstalled onto my pc its goes through the validation just fine. I get a can not display the webpage every time i try and download something. I am not able to even open the validation link pages to run the validation checker tool. I have XP pro and Explorer 7 which i have made sure that all the active X options are enablesd and that the enable third party extentions in the ad ...Show All

  • .NET Development Create class instance similar to "CreateObject"

    I want to create objects by their name like its done in vbscript with "CreateObject". I'll get the Type by GetTypeFromProgID(name), then get the location of the corresponding Typelibrary by querying the Registry fot the "InprocServer32" hive of the Type's GUID. Now i can load the TypeLib via LoadTypeLibEx and build a .net Assembly using TypeLibConverter. Thats it so far, here comes the difficult part: With Activator.CreateInstance i get System.__ComObject, so i need the "original" Type to be able to invoke methods of my instance. To get the "original" Type i need the fully qualified class name to pass it to Assembly.GetType(). The other way around, i can pass the fully qualified class name to Assembl ...Show All

  • Smart Device Development Installer for PPC and PC app

    I have an application that has a client component that runs on a PPC device and a Server component that runs on a PC. I would like to build a unified installer that installs both components. I am not sure what the best way to do this is. Both components use the same "large" data files and only differ on the .exe used. I would rather not have to duplicate the data files across two cab files. Any ideas about what would be the best way to do this I was thinking of using ezsetup to install the PPC side of things, that would mean that the cab file (which contains all the data files and the two different .exe files, one for PC and one for PPC) would also be copied/extracted from the setup.exe to the Activesync directory on the PC. So I was ...Show All

  • Visual Studio Express Editions Deserialization

    This is very aggrevating!!! I have serialized three simple questions (textboxes) that is entered by the user. I cannot figure out how deserialize and have the three textboxes show what I have serialized My code (Visual Basic Express) on my main form is as follows: Imports System.Xml Imports System.Xml.Serialization Imports System.IO Public Class Form1 Private theCollectionOfPatients As New ArrayList() Private Sub DoSerializePatient( ByVal patientcollection As ArrayList) Dim theTypes(1) As Type theTypes(0) = GetType (ArrayList) theTypes(1) = GetType (Patient) Dim theSerializer As New XmlSerializer( GetType (ArrayList), theTypes) Dim theWriter As New FileStream ...Show All

  • Visual Basic how can we find the spacific text in the text file?

    how can we find the spacific text in the text file for eg ABC12345 ABC48587 ABC75891 acctually i want to get the 5 numbers after abc thanks thanks a lot acctually i have problem to get the 5 numbers after ABC. for eg fkj;dsfjajdfjd;fljdkfjfj ABC12345 ffjkfdjfkdjkjdkfjfjdkjfkdfj dlfkjdjffpeureoiuiureiuier ABC67890 fkdlfkdkfdfkf this is the situation.... how can i get only 5 number after ABC and all the number are store in array.... thanks ...Show All

  • Visual Basic Directory Security Attributes

    Window XP Pro, VB.NET 2005 standard or VB.NET2003 Enterprise I have problem on how to get a Directory’s Users Security Attributes. Say Directory DirA have three users(one group) GroupUser1, UserA and UserB. How can I use VB.NET 2005 to get the information of any one of the three user/group permissions (Full Control, Modify, Read & Execute, List Folder Contents, Read, Write, Special Permission). Those permissions are either Allow or Deny. I will save all those information to a database or a text file if I know how to read those permissions. I searched this forum, but no direct answer found yet. I tried to explore system.io.directoryinfo with no success. Thanks In Advance for any advice! ...Show All

©2008 Software Development Network