Software Development Network Logo
  • .NET Development
  • Visual C#
  • SQL Server
  • Visual FoxPro
  • VS Team System
  • Visual J#
  • Windows Live
  • Visual C++
  • VS Express Editions
  • Windows Forms
  • Game Technologies
  • Microsoft ISV
  • Visual Studio
  • Smart Device
  • Visual Basic

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

JohnCo_18334

Member List

Che3324
stan_gamla
Vidya Vrat Agarwal
Destroy89
DEVIL King
vamphibian
renis
holthaus
Yoni
Sauas
sendashwinemail
Anonymousrtewreer
Lester Leonard Go
E A S
Dave Smalley
Nicky7
Niraj Sikotara
Billkamm
VH-BIL
ckress
Only Title

JohnCo_18334's Q&A profile

  • Smart Device Development Getting the Topmost Window at any instance.

    Hello I'm trying to subclass the top most window on which the User is currently working with. I have acchived this by using GetForegroundWindow API call and I tried to hook my own window procedure. I have been able tap some UI related window messages that I'm peeking for, which are being sent to this foreground window. The problem I face is when the window contains a seperate dialog then GetForegroundWindow() function does not return the active dialogs handle. Instead it returns the active applications handle. Can anyone let me how can I get access to the active dialog with which the user is working on. Any inputs in this rega ...Show All

  • Visual Studio Variable in Page Header Not Showing.

    Hi i got the same Case as I'm Have This Page HEader that has a txtbox that reference to a hidden text box in my page body. It works With Repeatwith function in the reportviewer but when i export to Pdf trys to print out. It dun work anymore as the Header Variable just dun show For example in Reportviewer its like tt FILLING NUMBER : "The Number" in PDf its Filling Number : nothing (at 1st page to last 2nd page) But on the Last page it showed. so i read thru this forum and sorta same situation i tried its method but dun seems to work. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=339319&SiteID=1 ...Show All

  • SQL Server Very newbie question

    Hello, I am a newbie programmer, and an even bigger newbie to the world of SQL/SQL CE. I was programming a Pocket PC program using an XML database, but that didn't fufill all my requirements/needs. So, that's how I got to SQL. I would appreciate infos and input on the following question(s): I am using SQL Server 2000, Visual Studio 2003, and the SQL CE 2.0. I have created an SQL database out of an existing mdb file, and would now like to implement this into my pocket pc database program. I do not want to edit, change, or do anything but look at the database when it's on the pocket pc, so I would like to know if I have to crea ...Show All

  • Visual FoxPro How to receive record ID???

    The subject is: I want to select some records from some table ("TableA", "TableB", ...) using Select SQL to a temporery table, then I will choose one record from this Temp Table. How can I know the exact position of this record on the source table "TableA". Please give me some advices!!! Thanks Hi, you can use RECNO() in your select : SELECT *, RECNO() as position FROM tableA INTO CURSOR temp ...Show All

  • SQL Server Internal Activation - calls stored procs in other DBs

    Hi all I am using internal activation on a queue to process the messages, should an error be encountered I call stored procedure A in the same database to log the error. Part of the processing in stored procedure A is a call to stored procedure B in another database (on the same server), however I have not been able to get this call to B to work. Currently I get the error "The server principal XXXXXX is not able to access the database YYYYYYY under the current security context". I have tried various combinations (too many to remember) of database owners, roles and permissions as well as EXECUTE AS on both A and B and the Queu ...Show All

  • Visual Studio Team System Disconnected modified files

    Thanks ... however, I'm going to have to find someone else in our company who has the login credentials for Industry Partners, since I don't know what the id/password is for our company. This is the only place I can download this ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. complex Matrix question inside: at least, for me.

    I am attempting to have a simple cube ( a die ) bounce and settle onto a flat surface in a somewhat realistic way. I have come across two mathematical issues (that aren't easy to google, btw) 1) to describe the cube free spinning in the air, I first set 3 constants, X , Y , Z , and on each update would used Matrix.RotationYawPitchRoll( X *t, Y *t, Z* t), mulitplied times a "current rotation" matrix rotMat to find an updated rotMat . So, the cube would have a rate of spin along each of it's three axis. However this looked odd, and I began to wonder if an object could actually behave this way in free rotation, namely, would the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DrawImage(img, pts)

    Sorry if this is the wrong place for this question but it it related to 3D games programming... I have noticed that Graphics.DrawImage(img, pts) accepts an array of 3 Point objects in the second argument.  In the spirit of adventure I passed in an array of 4 to see what would happen (I was hoping it would render an image inside an uneven quad).  It did not work but it did throw an exception indicating tht this functionality had not yet been implemented. Does this mean that in future releases of the framework, the Graphics object will have the ability to render images stretched to fit a quad Cheers Wossy Yeah I resolve ...Show All

  • SQL Server Pass through Authentication

    We have Reporting Services 2000 standard edition installed and everything works fine. You can log in and run reports and the Reporting Services security rolls work. The problem is when a user goes to the url of reporting services web server it prompts them for a login. They enter their Windows domain login and they get in. Is there a way to configure Reporting Services to use the user's Windows Domain login credentials (pass through) and not prompt for them, similar to SharePoint. Here is our configuration: We have a NT Domain (not active directory) all servers and client machine’s are in the same domain. IIS for Reporting Services i ...Show All

  • .NET Development Sending Email using C# help plez.

    i am trying to send Email using vs2005 & C# in windows Application this is my code : try { MailMessage mai = new MailMessage ( "kimo.am@gmail.com" , "kimo_am@yahoo.com" , "hi from star" , "kokowawa kyky" ); SmtpClient sm = new SmtpClient ( "smtp.google.com" ); //sm.Credentials = new NetworkCredential("user name", "password"); sm.EnableSsl = false ; sm.DeliveryMethod = SmtpDeliveryMethod .Network; //SmtpPermission per = new SmtpPermission(PermissionState.Unrestricted); sm.Send(mai); } catch ( Exception e ...Show All

  • SQL Server Rendering reports programatically

    I have just migrated all my SSRS 2000 reports to a different server on SSRS 2005. As a quality check I would now like to render all my 2005 and 2000 reports programatically to a directory so I can compare them.  I have a listing of the reports I want to run allong with their parameters (from the execution log). How would I go about rendering them from this list There were some changes to all of the renderers from 2000 to 2005. As such, I wouldn't be surprised if there are some slight changes. The data renderers (XML, CSV) are probably your best bet for doing comparisons. ...Show All

  • .NET Development How to remove HTML controls by JavaScript?

    I wanna delete a tags "<iframe></iframe>" when I click on a button. If anyone can help me Thanks a lot in advance! Thank you Pascarello! But I still have a question about <iframe>, I think proberly you can help me.   Like your reply,you use <iframe> tag to include a HTML file,now,I want to get an object in that file you have included. For example, you have a textarea in http://Pascarello,com  ,how to get the content of the textarea in your included file ...Show All

  • Visual J# Visual J#

    Hello, I'm new to this software and new to programming itself but I do know a little bit of Java and Visual Basic. I was wondering though, what exactly is Visual J# Can someone please tell me and help me out. Hi, J# is a programming language like C# is. It is one of the languages shipped with visual studio. J# has been developed to target those java developers who are interested in migrating to .net. That's why J# syntax is similar to java. J# has it's own set of class libraries, different from .net class libraries and it provides developers flexibility to use either of them. J# class libraries are there so ...Show All

  • SQL Server Error while registering a new sql server

    TITLE: New Server Registration ------------------------------ Testing the registered server failed. Verify the server name, login credentials, and database, and then click Test again. ------------------------------ ADDITIONAL INFORMATION: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53) When I try to regiter a sql server, I take this error message. I a ...Show All

  • Visual Basic Function CInches

    Hi i was using this code in MS Excel and was working fine but i need to use it in a small application i'm making in Ms visual studio 2005, if any one can help thanx. '\ This function converts a string like 5'-6 1/4" to a decimal number '\ of inches that can be used in calculation. Function CInches(Text_string_containing_values_for____Feet_Inches) '\ These values are used to examine the input string, one character at a time Dim vVal As String '\ shorter name for input string Dim i As Integer '\ counter to step through each character in input string Dim vChar As Variant '\ temporary storage of each input string char ...Show All

©2008 Software Development Network