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

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

GTH

Member List

DeamonX
twonjosh
Olley
Tim Mercer
Ram Pradeep
beesol
barkingdog
Dave Yasko
jalden
dezrtluver
Tablet 007
Carlos Silva
kayki
Alvin Kuiper
Drozdi
SulaimanA
kastanienreis
Hassan Ayoub
robertmundinger
Fluxtah
Only Title

GTH's Q&A profile

  • Visual Basic ConfigurationManager.AppSettings Error

    hii all! When i tried to access a value from the configuration file ( ConfigurationManager.AppSettings("ADMIN")) i am getting an error: 'ConfigurationManager.AppSettings' is not declared or the module containing it is not loaded in the debugging session. can you please anyone help me who have experienced the above said error thanks in advance, best regards, Ammar. (platform: .NET Framework 2.0, VS 2005, SQL Server 2005) any help, suggestion, URLs would be greatly appreciated! best regards, Ammar. ...Show All

  • Visual Basic input / output

    i have recently purchased a velleman 8055 usb interface board. i have only done a little vb programming. I am trying to convert the digital inputs to boolean or something that i can use to control the outputs. eg if input 1 = true then setdigitaloutpt but i cant do it...please help... see below thanx heaps Public Class Form1 Inherits System.Windows.Forms.Form # Region " Windows Form Designer generated code " Public Sub New () MyBase .New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call End Sub 'Form overrides dispose to clean up the component list. Protected Over ...Show All

  • Internet Explorer Development IE 7 opening to Run Once page with error on it.

    I downloaded updates last week. I have been using IE7 for a while with no problem. I dwnloaded the updates. Now when I open my browser the page tries to go to http://runonce.msn.com/runonce2.aspx . There is an error reported for this page and it will not open up I get a blue screen. How do I eliminate this I have my home page set in the tools section but when opening it won't go to my home page until I hit the home button on the tool bar. This page is really "run once". However you don't have a chance to finsih. That's why it keeps apearing. Base on my testing, this problem should only happen to IE7 beta. It is fine on IE7 RTM. ...Show All

  • Windows Live Developer Forums Autozooming

    Hello to everyone. My problem is: when i am adding a new pushpin to the map, its (map) autozooming on that pushpin. I don't need it. How can I prevent it note: map autozooming when I using Find method and not when I adding new pushpin. nCognito wrote: Hello to everyone. My problem is: when i am adding a new pushpin to the map, its (map) autozooming on that pushpin. I don't need it. How can I prevent it note: map autozooming when I using Find method and not when I adding new pushpin. I would suggest storing your current latlongs and then map.SetCenterandZoom after your find/add pushpin call ...Show All

  • Visual Studio Express Editions TableAdapter.Update only works when I move from record to record

    Hello everyone, I am still new to VB.NET and I am having a little trouble using TableAdapters. Now, I figured out the "Copy Always" thing, which seems to be a problem for beginners everywhere (are you listening MS ). My TableAdapter.Update() method works, but only if I move from the current record. I am using data bound controls. If I just make a change in a data field press Update button, nothing happens. For it to work, I have to make the change, move from the current record, and THEN press Update. Does anyone have any idea why this happens Thanks. master20 Hi, if you're binding your data through a BindingSource control, try calling its EndEdit() method just before calling table ...Show All

  • SQL Server insert null

    Hi, I have an insert query that has a select query to select the records to be inserted (See below). How do you make sure a null is entered into the field of a nullable field if there is no data to select for that field insert into table1 Name, Lastname) select name, lastname from externalTable Please note that if lastname in externalTable is empty, then I would like Lastname in Table1 to be inserted as null. Currently Table1.Lastname just inserts an empty value and NOT a null. Hope you know what I mean. Thanks Try this declare @testtab table ( firstName varchar ( 10 ), lastname varchar ( 10 )) insert into @testtab select '' , 'xx' insert into @testtab select ' ' , ...Show All

  • Visual C# Translucent Image

    I would like to know how to determine the color of a translucent image when it is on top of another image. To better explain it, for example, let say I have 2 images A and B and B is a translucent image and is on top of A. I would like to know the RGB values of the overlapping area of image B. I know I can use GDI+ to create translucent images and it will do the rest for me. But that's not what I want, I would like to know the way to determine the color. Thanks in advance. You need to Call GetPixel(int x, int y) method on a Bitmap to get the color at a specific X and Y coordinates, See Here: Bitmap myBitmap = new Bitmap("hello.jpg"); Color pixelColor = myBitmap.GetPixel(2, 2); pixel ...Show All

  • SQL Server Cross assembly or cross domain calls not supported

    If I compile a simple .NET DLL with the following function and register it as an assembly in Analysis Services: public static int MyFunction(object o) { return 99; } When I run the following query I get an error which reads " Execution of the managed stored procedure failed with the following error: Cross assembly or cross domain calls not supported!. Execution of the managed stored procedure failed with the following error: Cross assembly or cross domain calls not supported!. Execution of the managed stored procedure CSng failed with the following error: Microsoft::AnalysisServices::AdomdServer::AdomdException. " with member test as MyAssembly.MyFunction(CSng("2.5555")) select test on 0 from ...Show All

  • SQL Server Custom Report Item example not rendering right?

    I'm trying to work with the custom report item example (PolygonsCRI.dll) from the latest SQL Server 2005 downloads. I've followed all of the instructions on how to deploy the report. The report is now available on my Report Server, and I can load the Polygons.sln report and view it in the designer. However, whenever I preview the report in the designer or view the report on the server, the polygon report items just show up as big blank spots - there's no image there and no indication of an error. The chart on the report renders just fine, though. Does anybody have any ideas on what could be causing this Thanks, Glenn Burnsider There is a typo in the PolygonsCRI.vb and .cs file. The class name shou ...Show All

  • Software Development for Windows Vista how to register dlls with regsvr32?

    i have installed my C# application on a machine. but when i tried to register the dlls with regsvr32 it gives me an error -- "dll is loaded but entry point in DllRegisterServer was not found. The file can not be registerd." what may be the problem thnx ...Show All

  • Visual Studio 2008 (Pre-release) OR-Mapping (DLinq_Overview_for_CSharp_Developers 7.1.1)

    Hi, I have a Question about the Mapping how is descriped in 7.1.1 in the DLinq_Overview... Document. I made a class for the Mapping to a DB that looks so: [Table] [InheritanceMapping(Code = "I", Type = typeof(ICQ))] [InheritanceMapping(Code = "P", Type = typeof(Person), IsDefault=true)] public class Person { [Column(IsDiscriminator = true)] public string DiscKey; [Column(Id=true, AutoGen=true)] public int PID; [Column] public string Name; [Column] public string Vorname; } public class ICQ : Person { [Column] public string ICQNummer; [Column] public string ICQNick; } public class DB_test1 : DataContext { public Table<Person> Person; publ ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Shader data flow questions

    Two questions: 1. Is there any decent way to get a small chunk of data (4-8 bytes) from a vertex shader back to the CPU I would only do this in direct response to a mouse click, so it need not be fast, just possible. 2. The MSDN reference material here would suggest that a variable declared static could carry information from one shader invocation to the next, so that one could, for example, calculate a running min, max, or average of some property over all vertices. But in practice it seems that my static variable is zeroed afresh for every vertex. Below are the bones of my test case. The CPU program is providing each vertex with the "extra" variable, of which extra.x is a unique id for each vertex, sta ...Show All

  • Visual FoxPro Excel to cursor SPT problems

    I am using a SPT solution to take information from a .xls file and importing it to a cursor with this solution: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=509710&SiteID=1 However, I am now receiving problems where before I had not. Now I am getting Error 1466: Connection handle is invalid. Any ideas guys I can't see what the problem is but it occurs at the sqlstringconnect( ) line. Thanks! Like I posted above: It would seem that the error (#1466) comes during the sqlexec( ) function. Any ideas from that Dave M. might know best (as he generated the code), but you might also. Ontop of this I am working with SQL Server 2000, not using FoxPro tables, so there is no .dbf file in existence. That's be a problem. ...Show All

  • SQL Server How can we check the language by which functions, stored-procedures, and triggers are written in SQL Server 2005?

    Hi, all here, Could please any experts here give me any guidance in what way can we check in what language (T-SQL or CLR language ) the user defined database engine objects :functions, stored-procedures and triggers are written Thanks a lot in advance for any guidance and advices for that. With best regards, Yours sincerely, ...Show All

  • .NET Development TAPI programing problem

    Hi. I have a voice modem name "IC+56K External Data Fax Voice Modem Pnp". I using TAPI 2.0 to write an application to dial out and generate wave file to information to customers. Example i dial out to number 0236789, i meet a problem as follow: The phone number 0236789 still not pickup yet, but in my application it get the message the line is connected. So it do generate wave file to the line while it is not connected in real. I don't know why, i use Windows XP. Do you have any experience in this field. Please, help me. Thanks. My knowledge is minimal about TAPI but if you look Michael Dunn's TAPI Site , there maybe is answer or links to your problem. ...Show All

©2008 Software Development Network