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

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

maddinthegreat

Member List

Joe H
ziman
K-2
Aaron Oneal
Ofir Epstein
harlequinben
Bilberry71
wdudek
trun_gup
Gazuga
jkeele
blackghost
glynnd
Tejas34
R Raghu
DVen
Ultrawhack
Iulian Surugiu
Peter Chapman
edwinzzz
Only Title

maddinthegreat's Q&A profile

  • Visual Studio Express Editions Webbrowser control versus I.E. Explorer

    Hello, I have an application running with a webbrowser control. In some webpages I get script errors . When I navigate through these same pages, outside the application , and using I.E.7, I have not these script errors. Is there somme differences between the Webbrowser of V.B. and the I.E. 7 browser Sorry... Wrong link.... please note this is a bit complicated.... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=706113&SiteID=1 ...Show All

  • .NET Development Reporting Services Configuration Manager & SSL

    The report server and report manager were both deployed (as virtual directories) in the same default web site by using Reporting Services Configuration Manager. This was done both in a development machine ( http://DevMachine/ ) and deployed machine ( http://www.outsiderealworld.com/ ). http://DevMachine/WebApp http://DevMachine/Reports http://DevMachine/ReportServer http://www.outsiderealworld.com/WebApp http://www.outsiderealworld.com/Reports http://www.outsiderealworld.com/ReportServer Both worked fine until, a test certificate from Verisign was applied to the development machine. In Reporting Services Configuration Manager - Report Server Virtual Directory, I choose Required SSL Connection - 3 - All SOAP APIs because it is ...Show All

  • SQL Server finding report wizard in sql

    I need to create graphs in access in a lick of a button all the data will be in the sql transfered from the access. If anybody did this before ar having Idea please let me know I was talking about the Report Wizard in Microsoft Access. SQL Server does not have a report wizard. For SQL Server, you want to investigate installing SQL Server Reporting Services, it will let you create very nice reports inside Visual Studio against SQL Server. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Loading textures as an embedded resource

    I have been trying to get my textures to load from the assembly rather than disk but have come across a strange problem: When loaded from disk the image size is correct at 1280x720: backgroundTexture = Texture2D .FromFile(graphics.GraphicsDevice, "./Textures/twistBkg.png" ); When loaded from a resource stream it thinks the image is 1024x2048: System.Reflection. Assembly a = System.Reflection. Assembly .GetExecutingAssembly(); System.IO. Stream s = a.GetManifestResourceStream( "Textures.twistBkg.png" ); backgroundTexture = ( Texture2D ) Texture2D .FromFile(graphics.GraphicsDevice, s); Any ideas why/how to correct this Thanks Leaf. I have raised it on th ...Show All

  • Windows Forms Setting Currency format on a DataGridView

    Hi,   This question might seem very basic to most of you.  Not for me it seems...  How can I set the following currency format "$9,999,999.99" for one of my DataGridView column   I would also like this same column to be right justified.   By the same way, how can I set a TextBox control to handle currency number format    I already tried the MaskedTextBox control  but really don't like the "$ ________.__" allways showing because of the mask.  I would rather expect an empty textbox from start and then the number showing with the "$" at it's left as the user is typing it.  Am I dreaming  Any good trick or article on the subject Thanks in advanc ...Show All

  • Visual C# Simple resource question

    I am semi new to Visual C and have a question about adding resources or items. I have a program that I created that needs to read from a file. This file only contains a small amount of data. My question is, if I add an item such as a text file, is this file compiled in to the the program code or is the file external to the program Is there a better way to do what I am trying to do. My simple project just stores a number and reads the file when the machine boots to repopulate the field with the number in the file. Thanks for your help in advance, Steve Thanks for your response. How does the application settings work What I am doing is creating my own windows restart program. When I set the value in the p ...Show All

  • Windows Forms TreeView Child and Parent Checkboxes

    Hi all, I am sure this is an easy one for someone out there Ok, I have a TreeView Control with checkboxes and what I would like to do is when a parent node is checked I would like the children of that node to be checked. In addition, when a child node is checked I would like its ancestors checked. Now, I know how to get the checkboxes checked programatically. I am using the AfterCheck event to accomplish this. The problem is assume I have the following structure node1 | -------child1 | | | -------------child2 | | | -------------child3 | -------child4 If I have all the nodes Checked and I uncheck child4 then what will happen is the AfterCheck Event fires off because of Child4 and then Node1 gets U ...Show All

  • .NET Development New column update problem....!

    I made a procedure Public Sub Novo(ByVal nova1 As String, ByVal nova2 As String) that creates a new oledbDataAdapter with insert update select and delete commads. I also added that commands can change depending how many columns are in a Table. I add a new column with this code: Private Sub Button4_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click Try Form2.Studenti1Data.Tables.Item(Index(ComboBox1.Text)).Columns.Add( "TEST Marko" , GetType ( Integer )) Form2.Studenti1Data.Tables.Item(Index(ComboBox1.Text)).AcceptChanges() Form2.Table1DataGridView.AutoGenerateColumns = True Novo(Form2.Student ...Show All

  • Windows Forms in this function i want to add checkbox

    in this coding i want to add checkbox instead of 1 and 0 note 1 and 0 are comes from the table which datatype is (tinyint) how can i do this mTable = objDB.GetData(strquery) DGrid.DataSource = mTable PercentageStatus_Col.MappingName = "PercentageStatus" PercentageStatus_Col.HeaderText = "Percentage Status" PercentageStatus_Col.Width = 110 TableStyle.GridColumnStyles.Add(PercentageStatus_Col) DGrid.TableStyles.Add(TableStyle) Take a look at the datagridboolcolumn's TrueValue and FalseValue ...Show All

  • SQL Server Checking Job Status using T-SQL

    Hi. How can i check the job status using SQL Query I have modify the sp_help_job and the sp_get_composite_job_info to retrun only 1 value. :) ...Show All

  • Visual C++ Cannot Get Proper Build of Petzold's DLL Sample Code

    I am attempting to build Charles Petzold's sample code for DLLs. The code in particular is the EdrLib code. The problem I am having is that a DLL is built but does not work. It is not even close to what appears to be the proper size, i.e. my debug build is 44K while the debug build supplied with Petzold's code is 197K. On further examination using the test harness I built using Petzold's code, EdrTest, it works with Petzold's dll but not with mine. The working environment is Visual Studio Professional 2005 on a Win2K box with the Windows 2003 Server SDK. Am I missing something critical. The project was set up as a Win32 projec, DLL, empty project. Thanks in advance for your assistance. Hi Ken, can you elaborate a bit on how ...Show All

  • Software Development for Windows Vista Vista doesn't like my Control panel applet

    I have a control panel applet, which works fine both for XP and Vista. The only problem is that on Vista the Compatibility Assistant dialog appears after the applet has finished, saying "Did this control panel work correctly " It seems that Vista recognizes my applet as some legacy stuff. How can I make it fully compatible with Vista Thank you in advance. There is some good info at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=463884&SiteID=1 . I copy-n-pasted the basic manifest file from one of those posts, and modified it a bit to match my dll name and company name. I then ran mt.exe, a tool which, in recent MS Windows Platform SDKs, recognizes the trustinfo section and requestedE ...Show All

  • Microsoft ISV Community Center Forums VBA script not accessing another workbook

    I have written a simple application for user that pulls information from another workbook. When my workbook is open, the source worksheet cannot be accessed, but when I shut my workbook down, the source workbook can be accessed. This was written using office 2003 but was saved in a 97 to 2003 format and the user is using windows xp. This is happening on the user's computer but not on my own which is on the same network. Derek, there could be several reasons you're experiencing technical difficulties. Too clear things up, could you post the VBA Code here for analysation. Thanks, halfazner =] ...Show All

  • Software Development for Windows Vista Missing WorkflowWebRequestContext Class.

    The System.Workflow.Runtime.Hosting namespace contains classes that are related to services and security provided to the workflow runtime engine by the host application. the System.Workflow.Runtime.Hosting namespace contains several classes related to workflow security and to active directory services. one of these classes WorkflowWebRequestContext Provides access to the workflow runtime engine instantiated by the WorkflowWebHostingModel. This class cannot be inherited. My problem: in my project i needs to use this class. but when add the namespace system.workflow.runtime.hosting i not find the "WorkflowWebRequestContext." any one can help me. thanks. The WorkflowWebRequestContext is now internal (and po ...Show All

  • .NET Development Webservice cannot get object from ROT

    I have 64bit Windows XP where is running a 32bit application and a webservice hosted by IIS 6.0. The 32bit application (implemented in VS C++ 6.0) gets COM interface (of 32bit inproc server) and registers it in ROT. The webservice (implemented in C#) needs to get this interface from the ROT and use it. The problem is that getting of interface in C# webservice by calling Marshal.GetActiveObject() fails with error: "Operation unavailable (Exception from HRESULT: 0x800401E3 (MK_E_UNAVAILABLE))" The code works fine for 32bit Windows XP with IIS 5.1. I have read that windows applications and webservices are running on separate "winstations" and so they have diffrent ROTs. I have tried to use ROTFLAGS_ALLOWANYCL ...Show All

©2008 Software Development Network