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

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

alpefusk

Member List

Smartcard User
Davids Learning
wuyueduzun
twaltz
Geoff Stockham
PaulYuk_MS
Emphyrio
Deerhake44
spydude777
samiha
KarenK
rskorski
Jacco Mintjes
VoiceOfExperience
milicica
sxf
FormerJAVAProgrammer
d_xflow
spinal
AdriM
Only Title

alpefusk's Q&A profile

  • SQL Server Generate SQL for a table

    Hi I have two questions i) is there any SP which will generates SQL Script for a table including all constarint(PK,FK), index etc. and the table data in the format of "INSERT INTO" . if NO, how can i create to do so, or any other SP which will help me( may be third party one) ii) Where had "Scptxfr.exe" gone in SQL Server 2005 Regards, Thanks. Gurpreet S. Gill joey I dont want to create it by .NET code infact only by using the some SP, or inside SSMS only. I read the artical but i dont find any thing about where is the SCPTXFR.EXE had gone, only one line say, "this is missing", but they are refering the Beta version of SQL Server. Regards, Thanks. Gurpreet S. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Path to becoming a professional game programmer

    I'm sure a lot of aspiring game programmers out there are looking for a road map on how to become a pro. (I know I am!).  Based on all the great products coming out, and the ones that already exist, it's probably very confusing for someone new to this.  I put together a quick "road map" based on my (limited) knowledge to help those rookies get to the finish line.  Please feel free to add to, change or comment...especially if you're already in the busniess! Update(11/22/06) - moved some items around and added new categories based on suggestions Beginner - Torque X Create some simple games with TorqueX Game Builder ...can't comment much more on this since I've never used it Begi ...Show All

  • Visual Studio Team System check in comments - forcing typing

    Dear All How can i force the user to type comments when he performs check in to his code Thnks alot Ron Ron, You need to look into a "Custom Checkin Policy" to force this behaviour. See Jeff Atwood's excellent post for more details:- http://blogs.vertigosoftware.com/teamsystem/archive/2006/08/22/3417.aspx Good luck, Martin. ...Show All

  • SQL Server Can't add database to projects

    http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=497273&SiteID=1 I have gone through the above and, while I can connect to the sql server and activate connections, I can not add a sql database to a project. Open a project Right click - add new item Choose sql database or Add existing item choose existing sql database results in: "Connections to SQL server files (*.mdf) require sql server express 2005 to function properly blah blah blah" Like I said, I can connect to the DB through the server explorer and view table definitions and data. I just can't add one to a solution. I have reinstalled sqlexpress already and am trying to avoid having to reinstall visual studio. OK, is the SQL Exp ...Show All

  • Visual C++ Problem converting the most basic ATL project from VS6 to VS2003

    I recently ran a batch file intended to set up my VS2003 environment. This batch file was distributed my by employer, but who knows if there are problems. I tried the following test: I created a new ATL project in VS6. I immediately saved the project and closed the IDE. I opened the project in VS2003 and converted it. I immediately attempted to compile and got the following error message: anothertest command line error MIDL1001 : cannot open input file oaidl.idl Does anyone know what might be happening Would reinstallation of VS2003 help I also tried to create a brand new ATL project in VS2003. Without changing the code or any settings, I attempted to compile. The error I got was: C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\at ...Show All

  • Visual C++ GetProcAddress doesnt find the function in my dll

    Hi all! I've just started dealing with dll-s for two days, but I got stucked and dont see how to move on..so to make my first steps, with some searching I created a Test.dll with a function fnTest() in it. Exactly it's prototype in the header file looks like the following: __declspec(dllexport) int fnTest(void); If I'm using implicit linking it's ok. The trouble is on when I try to link it explicitly. HINSTANCE Testdll; Testdll = LoadLibrary("Test.dll"); They are still good, it finds the Test.dll, but the GetProcAddress returns with NULL, although it should work..(The dll is correct, it worked while linking implicitly): fnTestptr importaltfnTest; importaltfnTest = (fnTestptr)GetProcAddress(Testdll,"fnTes ...Show All

  • Visual Basic Executable runs for one user and not another?

    I wrote an application in VB (Visual Studio 2005) and took it to a client's office on a CD. I copied the program.exe to one of the client's computers (running Windows XP) and the program runs fine. I copied it to the computer at the next desk (running Windows 2000), and it aborts immediately with an unhandled exception error. It won't run on their server either (Small Bus Server 2000). I'm an old VB6 programmer. Did I miss something in the documentation about how to distribute my applications Is there something wrong with the client not using XP for his operating system Without seeing the exception its difficult to determine an exact cause BUT for a VB 2005 application to work requires both ver ...Show All

  • Visual Studio Express Editions serial port

    Is there a way to controll the serial port at this level, i need outputs to trigger transistors/relays/triacs (not sure yet) can i create my own hardware/ software interface to control my hardware which would control other things. thanks, average joe Carsten, thank you for the link and the write up, I have been having a hard time finding good documentation on the serial port. Being new to VB and .net, this info will go a long way in helping me with my app. ...Show All

  • SQL Server Full-text catalog population issue (Content Index has been shutdown)

    Hello all, I am trying to build a full-text search index on a table that contains about 33 million rows. Unfortunately this is not working as expected. As suggested in a msg in the event log I took a look at the .gthr file with the gthrlog.vbs tool. But I am still not any wiser, I cannot find more info on the error that I'm getting. For readability reasons I will post the full content of the resulting log in a reply to this message. Thanks in advance to anyone who can help me out with this issue. I already tried: deleting and recreating the catalog DBCC CHECKDB - no issues found Some more info: I am trying to build an index of a varchar(6000) column I have a primary key constraint (clustered) on one column (int, identity increment 1) the ...Show All

  • Visual Studio Express Editions Getting an Error when I use the Backspace to clear a textbox

    Hey all, When I test my code out, enter a number then backspace all the way back to the beginning i get an InnerException error. Here is the code that is throwing the error: Private Sub txtSequenceNumber_TextChanged( ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles txtSequenceNumber.TextChanged Dim SequenceNumberSelect As Integer = CInt (txtSequenceNumber.Text) Sequence2 = SequenceNumberSelect End Sub Above this I have a keypress event that spots the backspace....but I still get an exception when I backspace and lcear out all the numbers. Thoughts, Ideas, Links Thanks ahmedilyas wrote: ye ...Show All

  • Visual Studio Express Editions Issue manipulating numeric values in textboxes

    I am building a program which has many text boxes most of which are user inputs and a few which output results based on the user inputs However i noticed that I cant do something like this; textbox1.text = textbox2.text + textbox3.text because the resault will turn out to be "textbox2textbox3" This only happens when i try to add some values from textboxes but it seems that the other operators work fine doing it the same way The only way that ive found to get the "+" operator working like the others is to define a variable and assign it to the value in the textbox, like this; Dim value2 as Double = textbox2 Dim value3 as Double = textbox3 textbox1 = value2 + value3 but this way seems pr ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Update() Running too many times before drawing new frame

    I'm having a slight issue with timing animations...I'm using the IsFixedTimeStep = true to limit the frame drawing to 4 times per second, but its running the Update() method 2 times before each frame draw, meaning I'm only getting frames 1 and 2 of the animation and never 0 and 3...help please protected override void OnStarting() { base .OnStarting(); LoadResources(); graphics.DeviceReset += new EventHandler (graphics_DeviceReset); // Call Update 4 times per second IsFixedTimeStep = true ; TargetElapsedTime = new TimeSpan (2500000); } void graphics_DeviceReset( object sender, EventArgs e) { throw new Exception ( "The method or operation is not implemented." ); } ...Show All

  • Visual Studio Crash in setup.exe after VS2005 SP1 failure due to insufficient disk space

    Dear all, Sorry if this question has already been asked but I cannot install VS2005 anymore on my machine. The scenario was: - Installation of VS2005 - Attempt to install VS2005 SP1. - VS2005 SP1 setup reports insufficient disk space to copy a file and ask to retry after making space on disk - "Retry" pressed after making space on disk - VS2005 SP1 setup reports an error and stops installation - Uninstallation of all VS2005 components - Attempt to install VS2005 The result is a crash in setup.exe. Error signature: EventType : visualstudio8setup P1 : 183 P2 : 8.0.50727.42_rtm_x86ret P3 : msi P4 : inst P5 : f P6 : ca_installassemblydef.3643236f_fc70_11d3_a536 P7 : - P8 : 1603 P9 ...Show All

  • Visual C# Reference question

    There will be no code in here. Everything is just logorrhea. I need to dynamically update an Graphics object that I borrowed from a demo. In short, a plot is created and when I decided to analyze the curve, I click a button and a set of routines go into action and the end result is a set of marks on this plot surface. The marks are all bmp files. All this software is confined in a separate Class. I should add an important thing: the plot is located on a dynamically, at runtime created TabPage and when I do not need the plot anymore I click another button and the TabPage is destroyed. Therefore the TabPage and the Plot operate in a separate thread. I also need to create another Plot on an another individual TabPage. This second plo ...Show All

  • Smart Device Development embedded c++ 4.0 - select a cpu shared

    I 've got the following error message box during build time. ... The build cannot proceed because the current target CPU for the dependent project does not match the one for the active project, Please select a CPU shared by all the projects ... next time, the caution message box is appeared.  that has following text message, ... 'C:\\[my_project_folder]\ARMV4Rel\myproject.bsc' cannot open file. File not found. ... I was add CPU setting , configurations > Add Project Configuration >> CPU tab >>> Win32 [WCE ARMV4] >> Copy settings from >>> my_project_name - Win32 [WCE ARMV4] Release. please answer my post.            ...Show All

©2008 Software Development Network