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

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

toc996

Member List

kc ppm
rsd_za
Barry_S
Erasure
Travis Penno
BizTalk User
Dock
bmgun79
Ruwan
Wizard_SHill
Dana Ballinger
joceryl
Chris Bennet
Emiy
JonathanMA
RamyaPatki
Víctor M.
simon burgess
Antonio from Malibu
David J B
Only Title

toc996's Q&A profile

  • Visual Basic Tab Control Problems in Beta 2

    It seems that the Alignment Property for the TabControl in Visual Basic in Beta 2 has problems. If you want the Tab Pages, tabs to be on the Left or Right side of a form, they will appear once set in the designer. But, any TEXT you put on the tabs is missing. With the Tabs set to TOP the text appears normally.  There is no errors raised or anything. Just no text. Have I missed something here I looked and tried several other settings and there is nothing in the Tab Page Collection that allows the text to appear vertically as it would need to be if the tabs are set for Left or Right.  james   ...Show All

  • .NET Development Compacting an Access 97 DB from VB.NET 2003

    Hi everybody, Here's my code, Imports System.IO Public Class Access97Routines    Public Shared Sub RepairCorruptDatabase(ByRef corruptDB As FileInfo, ByVal destinationFileName As String)    Dim accessApp As New Access.Application       Try          accessApp.DBEngine.CompactDatabase(corruptDB.FullName, destinationFileName)       Catch ex As Exception          MsgBox(ex.ToString, MsgBoxStyle.Critical, App.Title)       Finally  &nb ...Show All

  • Visual Studio Visual Studio 2005 doesn't want to run!

    I downloaded uninstall tool to kill previously installed Beta2. Than I ran Visual Studio 2005 Final Release setup. All went well, setup completed successfully. But... I launched Studio IDE, it showed Studio Logo and than disappeared. It didn't run. Oh, Lord, give me strength... :) To fix my machine, I only had to uninstall the VS 2005 Extensions for Windows Workflow Foundation. Thanks for the tip! ...Show All

  • .NET Development System.Threading.Monitor.Enter (under the hood)

    What do the threads that are locked out do when they are locked out And does the Sleep call help get { if(dsUsers == null) { if(IsdsUsersLocked) System.Threading.Thread.Sleep(50); lock(UsersPadlock) { if(dsUsers == null) { IsdsUsersLocked = true; dsUsers = (3 sec call to the database server accross heavy network traffic); IsdsUsersLocked = false; } } } return dsUsers; } The sleep call appears to help when dealing with 100 or more threads but i don't know what really happends to the thread that are locked out. According to some thread states they say they are [sleepwaitjoin] when the sleep is on and [running] when t ...Show All

  • Visual Studio Express Editions Massive iostream errors

    Hey, i'm kinda new to Visual C++ Express and i'm having a problem when I include iostream. I've installed Platform SDK and this is what I compile: #include <iostream> using namespace std; int main(){ cout << "Hello" ; return 0; } I get tons of errors from this: ------ Build started: Project: empty_project, Configuration: Debug Win32 ------ Compiling... 2.cpp C:\Program Files\Microsoft Platform SDK\Include\stdio.h(103) : warning C4229: anachronism used : modifiers on data are ignored C:\Program Files\Microsoft Platform SDK\Include\stdio.h(104) : warning C4229: a ...Show All

  • .NET Development how to build X64-bit lib

    hi all I want to porting my app from 32 to 64-bit,I am use vs6 and platform sdk 2003 sp1,and I think all the setting is ok there, how can I build the lib used for x-64, I can not find the "link" tab to add "/machine:AMD64",any one can help me thanks a lot!!! I have made a 64bit program with VC6.0 and PSDK,I think you can do it too. I met the same problem as you. I think there are some resources still 32bit,like some libs,or some obj files……I adjusted my problem now. good luck. my MSN:hupo1982@sina.com ...Show All

  • Visual Studio 2008 (Pre-release) How to reload the window form and restore its original layout?

    Hi There, Our product called AssetViewer has a main UI (TabControl). The main UI changes dynamically to respond to the different AssetType. when displaying a new asset item, if the AssetType is different, the UI view is to be adjusted from its original layout instead of its previous state. Since the previous state has made too many changes and it may need more codes to track these changes. Thanks, Billy, Hi Nick, Very sorry to reply you so late. The "Window Form" mentioned in the question is a generic term. Our application UI is achieved by using Avalon. UI class inherits Window class ( public sealed ...Show All

  • Visual Basic Accessing Public Function located in another Project referenced within the same Solution

    I've to a solution with two projects: Bungalow New Programs New Programs has a ref to Bungalow. Bungalow has a Module called Bungalow which has a Public Function (clone_control()) From within 'New Programs' I can not access Clone_Control. However, if I drag (wihin the Solution Explorer) the Bungalow module from Bungalow to New Programs, then it works OK. I thought that adding a reference was like letting all the contents of the referenced project be "in" in the referring project. Is this just the way it works or am I missing something MORE INFO In addition, if I ...Show All

  • Visual C++ MSVCR80.DLL Unable to locate component

    Hi, I am trying to use Visual C++ 2005 to build the project which was create by Visual C++ 2003. When I run the code, an error message pops up. "MSVCR80.DLL - Unable to locate component" who knows how can I fix this problem Thanks a lot! Yang Hi George! I have checked the directory you asked me for to look for the DLL files, nothing is over there. What do I have todo now Tamer ...Show All

  • Visual Studio Team System Work Item State Transition integration with Builder

    Two fields are related to Work Item/Builder integration. 1: FoundIn 2:IntegrationBuild The usage scenario for the "FoundIn" filed is: If a build fails, a new bug work item is created because bug work item type has a "foundin" filed and "Build Failure" is a "Reason" for inital transition. However, I could not figure out the usage scenario for "IntegrationBuild".uhang Please advise. Thanks very much, Yuhang ...Show All

  • Visual Basic IDE not picking up my 'Backspace' or 'Enter' keystrokes in the debugger

    The debugger isn't picking up my keystrokes for my 'Backspace' or 'Enter' (carriage return). As far as I can tell those are the only two keystrokes from my keyboard that are not being caught. Any ideas Logitech wireless keyboard. Hi, Windsailor, Sorry to hear about the problems! Where are the keystrokes failing – in the Immediate Window, Watch Windows, or in the editor itself (while doing Edit & Continue) --Matt Gertz--* VB Compiler Dev Lead ...Show All

  • Visual Studio HOWTO: Localization and Reports

    What do I have to do get the date and time as displayed on the reports to use the culture setting of the ASP.NET thread culture. I have tried changing the regional settings on the box with no luck. We are trying to localize our reports to swedish, portuguese. I am having a hard time understanding the tweaks that has to be done to get this working. All the asp.net controls understand the culture, whats up with the reportviewer control. Why is it not using the ASP.NET current thread culture BTW, the language property of the reports seems to have no impact either. Appreciate if MS can direct us to some sample code and reports. Than ...Show All

  • Visual Studio Express Editions Can not download the C# e-book from benefits portal

    I, too, have another kind of a problem. I just recently registered VC#, and I received the email with the Benefits Portal. When I try to download any of the goodies(I am a complete newbie-begginer-so I am very much interested in the e-book .pdf file) I get only a dreamweaver file. Can anyone help me As you have a different problem I split the post so you have a new thread instead. are you trying to download from this page https://connect.microsoft.com/downloads/downloads.aspx SiteID=40 This download https://connect.microsoft.com/Downloads/DownloadDetails.aspx SiteID=40&DownloadID=242 What hap ...Show All

  • Visual Basic Shared Directory Exception

    When my application trys to access a shared directory on the intranet it throws the error:  An unhandled exception has occured in your application....Object reference not set to an instance of an object.  Here is the code that I'm using: Dim DataDir As String = txtLocation.Text         ' Add the ending character if it does not exist         If Not DataDir.EndsWith("/") And Not DataDir.EndsWith("\") Then             If DataDir.IndexOf("/"c) <> -1 Then DataDir &= "/" &n ...Show All

  • Visual Studio Express Editions Newbie Trying to get specific data from an sse database

    I am trying to query a specific field from my sse database based on two different variables. And use this information to fill a textbox with an integer. The first variable is a combobox that is filled with data in one of the other tables in the sse database. This table has a PKcolumn that is an integer and the identity of the column. The only other column is a nvarchar(30) string (which is the actual data in the combobox) The second variable is a numeric up down that isn't actualy using info from the database but will be a reference. It has a max value written in to the code: if NumericUpDown1.Value > 20 Then MessageBox.Show ...Show All

©2008 Software Development Network