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

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

JoeBlow123

Member List

Ganesh Muthuvelu
bhavu
The Samster
m_umair_85
AndyL
John Mears
stlaural
Evil Booger
MichielE
evald
andy72
Jacco Mintjes
Siddarth_Chordia_b1f86e
Ruprect8696
avaya12
Benjamini
GusBraga
BrettM
Hauri
vgrigor
Only Title

JoeBlow123's Q&A profile

  • Internet Explorer Development How to catch certain browsing events

    Hi everyone, i'm currently developing a BHO with ATL as i'm in need to write an application that would record the interaction between a user and the browser while surfing the internet. With my BHO i'm able to get notification of the events thanks to the DIID_DWebBrowserEvents2 interface. This way i can record when new windows are opened, a page is navigated to, a print template is istantiated and so on. But this just takes care of half of the events i'd like to catch. What i'd like to record too is when a user presses the back, forward and refresh button, saves a page or the content of a link, adds a bookmark, and similar. I can't get notifications of those events from the DWebBrowserEvents2 interface. How could i manage in getting this in ...Show All

  • SQL Server CREATE ENDPOINT failing with no errors

    I'm hoping someone can shed light on a problem. I'm running SQL under a service account on a Windows 2003 R2 SP1 machine. The machine is also a domain controller. When creating an end point I get back a success message and can view the endpoints in sys.http_endpoints. However, when using httpcfg query urlacl there are no end points registered with http.sys. Using IE to try and access the /SQL wsdl returns a 404. There is nothing in the event log or the sql logs about any failure. The same TSQL code works fine on a development server. I've added the code below but am guessing its a permissions problem. I've followed the instructions at http://msdn2.microsoft.com/en-us/library/ms184379.aspx including SPN registration for the ...Show All

  • Visual Basic Write data in VB.NET to Access using SQL

    Okay, I have an Administrator page that is able to create new users. I have a simple adduserform that has a TabControl added in it with a tab for General Info and User Info. Those have quite a few texboxes for input and outside of the TabControl are 3 buttons that are Save, Clear, and Exit. What I want to do is have the Save write the data to my small database that I have for users. If you want to see an example of my screen you can see it here.... http://redbearcustoms.no-ip.info/VB/adduserform.html ahmedilyas wrote: Dim theOleDbConnection as new OleDbConnection(" ConnectionStringHere ") Dim theOleDbCommand as new OleDbCommand("INSERT INTO [tableName] ( field ...Show All

  • Visual Studio .net 2003 IDE closed when i build the solution?

    Hi All, im facing a problem that is weired and annoying and need your help please im working on a solution consistes of 6 projects, web applications and windows applications along with web setup projects. the problem is that when i build the solution in order to run it the .net close its window i tried to reopen it again but the problem persists, restarting the computer or shuting it down didn't solve the problem either, scanning my computer with norton antivirus up to date didnt found any viruses, formatting the computer didnt change anything either, sometimes its working after restarting the computer 3-4 times sometimes dont work at all please help me Regards, Ghassan ...Show All

  • SQL Server Beginning with SQL Express

    Hi everyone, I want to set a database which will be made of two parts: - One main set of files which is shared among users - Another set of files which is proper to each users and will be mainly used for processing infos. Because I must support Windows 2000 and XP as O/S platforms, I can't use SQL Everywhere. It seems that I'm stuck with SQL Express. My questions are the following: - Can SQL Express manage database files with variable namepath - How can I configure SQL Express so that such a file may reside on a dynamically configurable path, I mean, which would be configured by application Many thanks in advance for your help, Stephane I'm still not clear on what is contai ...Show All

  • Smart Device Development Parsing MIME data

    Any one knows how to decode or parse MIME data. Lalit I am sorry but your question is out of context. This forum is dedicated to questions related to Device Emulator only. -Thanks, Mohit ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Optimal WaveFormat's Properties for VOIP

    I am using DirectX DirectSound's WaveFormat for capturing voice from microphone. What are the optimal properties of WaveFormat (AverageBytesPerSecond, BitsPerSample, SamplesPerSecond and etc.) for VOIP (using UDP transfer protocol). And what the optimal datagram of voice to be sent using UdpClient.Send Well, I am using WaveFormat just for capturing audio from mic, maybe there is a better way. As I capture from mic, I want to send it. Very basic simple VOIP - of course it's not the real thing, just a way to transfer voice in real time. ...Show All

  • Visual C# Sudoku Check Complete Board Function

    Hi, i have a 2d array containing all the sudoku numbers, i have created a function to check whether a number is duplicated in any of the rows or columns, but now i need to check whether their are duplicates in the nine 3 x 3 boxes. anyone have any ideas heres the code so far to check the rows and cols: for (int row = 0; row < 9; row++) { for (int col = 0; col < 9; col++) { for (int col2 = 0; col2 < 9; col2++) { if (col2 != col) { if (board.Cells[row, col].Value == board.Cells[row, col2].Value) { TextBox1.Text = "Duplicate"; } } } for (int row2 = 0; row2 < 9; row2++) { if (row2 != row) { if (board.Cells[row, col].Value == board.Cells[row2, col ...Show All

  • Visual Studio Team System Cannot compile C++ unit tests

    I am a new user to the Visual Studio Team Suite. I have created a default test as described in the help file, and compiled. No errors. I then merely add in the header for the class I will be writing a unit test for, and I end up with the following message when I compile: 1>MyTests - 3140 error(s), 0 warning(s) If I look at all the messages, they are all complaining about Visual Studio's header files. For instance: 1>C:\Program Files\Microsoft Visual Studio 8\VC\include\vadefs.h(89) : error C4956: 'va_list *' : this type is not verifiable What am I doing wrong Jonathan Scott Hello Not sure what is happening to you. First you should verify that you can create a managed C++ unit te ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. z-buffer sorting?

    In experimenting with drawing multiple objects on the screen, I've found an interesting situation. I the picture below, the larger craft is closer to the camera, the smaller craft away from the camera. But if you look at it, the larger craft cuts into the shape of the smaller one, even though it is far enough away not to do that. In my drawing code, I know I'm drawing my smaller craft after the first, so there is clearly some kind of z-buffer problem. What I don't know is how to decide which object to draw first reglardless of camera positioning, or even if XNA has any help with that. Any ideas http://www.spellflight.com/images/zbuffer.PNG It's simple, just set these two render states before you draw y ...Show All

  • Visual C++ hi

    hi __asm { int 3} For VC 7.1 or later, there is also the intrinsic __debugbreak(); ...Show All

  • Visual Basic Moving text from one place to another

    For my program I need to be able to take text from one text box where the user will enter information and include that in a text box with information. (ex. for an aircraft callsign, Cessna N4734W is entered in a textbox on one form, then when they are viewing another form, the text wil need to have the callsign in the info - Cessna N4734W, requesting takeoff - or something among that sort.) I also need to know howto make it so when a button is pressed, that information will be entered into a textbox. The textbox where the "request takeoff" part is a masked textbox. This is a major part of my program and I need any help anyone can provide me with! Thanks maybe you can create a modula to store the databas ...Show All

  • Software Development for Windows Vista windows vista adoption?

    hi all, i know its not a platform to ask this question but i didnt found any better forum to have my reply than this one.. so plz if you all can comment.. What are the features apart Vista UI & media stuff and .Net 3.0(as i can install in on winxp) in windows vista because of them i should switch to vista only major features plz... why i'm asking this question as i believe its just a UI & User friendliness enhancements in the vista nothing else.. regards faraz Thanks for the quick reply and this is kinda reply i was expecting.. truly speaking when i explored features as you mentioned and found few things really useful but majority of the features made windows vista resource hungry especially in mem ...Show All

  • SQL Server Cannot open database

    My mdf file was deleted. I was able to restore the said file but unfortunately I can no longer open it. I have also noticed that the recovered mdf file was smaller than the file before it was deleted. What can I do to open the database file I have tried the following lines using osql utility. 1> use db1sql1 2> go Msg 946, Level 14, State 1, Server JDI11-31, Line 1 Cannot open database 'db1sql1' version 525. Upgrade the database to the latest version. No - as I explained before, the database isn't accessible because the corruption is preventing the upgrade steps from completing. This means that no SQL Server tools can connect to the database. Your only recourse in this case is to restore from a b ...Show All

  • .NET Development f

    I am writing a small application which allows user to enter an URL then download a file on the net. In addition, I use the progress bar to show the downloading status. These code as below using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Net; namespace DowloaderProgress {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }      &n ...Show All

©2008 Software Development Network