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

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

AFTIadmin

Member List

Lolchickenzor
Peter Pallos
Surfsune
Nicolas S.
simon_
dion1979
FannwongCindy
Terence Curd
rako77
Yassi
Computer-Desk
Jarek Błaszczyk
Scott McKeown
Tryin2Bgood
naiad
llorrac
Doraemon_1
brunp
Scurvy Lobster
Carbond
Only Title

AFTIadmin's Q&A profile

  • Software Development for Windows Vista Flash Professional 8, | VISTA | Bug

    Hi I recently installed Flash 8 on my computer I found when I double click on a symbol to open it, it as dotted lined boxes slow increses in size then opens the symbol this is very frustrating is there anyway to make it faster like it was on XP Hiya, If you switch to windows classic in your themes then it will work ...Show All

  • Visual Studio Express Editions Keycode for '9' key and 'period' key

    I am reseting the number '9' key (across the top of the keyboard) to '0'. At the same time, I am reseting the period key to the number '9'. When I pressed the period key, the number '0' appears. Can anyone tell me how to keep this key, the period key, from showing the number '0' and show the number '9' instead My code is below. If e.KeyCode = Keys.D9 Then e.SuppressKeyPress = True If e.Shift Then SendKeys.Send( "0" ) Else SendKeys.Send( "0" ) End If If e.KeyCode = Keys.U Then e.SuppressKeyPress = True If e.Shift Then SendKeys.Send( "1" ) Else SendKeys.Send( "1" ) End If If e.KeyCode = Keys.I Then e.SuppressKeyPress = Tru ...Show All

  • Visual Basic VB.net how to do a dowhile loop for datatable

    Dim dRow As DataRow For Each dRow In Employee.Rows If (dRow("NumberKey") = "1756") Then "blahblahblahblah" End If Next the point is that i have to scan through all the rows in the Employee datatable to look for one numberkey. It is not very effecient I want do to do a loop that will stop right after i am able to match the numberkey with the number i m trying to find. can someone help me.. it is sorta of like a do while loop in C++, but this is for a datatable Sounds like you need to do a little reading on SQL. The SQL Statement is probably going to look something like. SELECT ID, NameField FROM Table1 INNER JOIN Table ...Show All

  • Visual Studio Tools for Office Retrieve Outlook calendar

    Can anybody tell me how does one retrieve an Outlook calendar and store it in a database I would like my app. to detect appointements from outlook, display them in a datagridview in my app., and store the info in a DB. I looked at this: ms-help://MS.MSDN.vAug06.en/enu_kbvbnetkb/vbnetkb/313801.htm#2  and it doesn't seem to be working. Just as I get to the line below, I get an error saying: 'type outlook.application not defined'. Dim olApp As New outlook.application Which namespace(s) should I use to accomplish this. I've already added a reference to the outlook object and am using MS Outlook 2003. Any help appreciatd, thanks in advance. Sorry about that man, anyway, I tried re ...Show All

  • SQL Server Problem with merge replication

    Hi all, I am struggling with this replication game - it's enough to make data cleansing from ERP systems look easy! Hats off to those who deal with it daily, and hopefully can help with this problem. I have an inventory table with a primary key of locationID and productID. Most locations can only have one product in, but some can hold many, so there is no unique locationID constraint. My subscribers are laptop users, who can change what is in a given locationID during the week. Their application logic ensures that the those locations that can only hold one product have only one product in, using stored procedures. The date the inventory was changed is on the table as well. Users synchronise about once a week and occasionally two user ...Show All

  • Visual Basic Dataview.Rowfilter

    I have 7 datagrids that represent the days of the week. I have been unable to use just one dataset and use the rowfilter to show the data in the grids. (one of the columns in the table is [day] which is "Monday", "Tuesday", and so on.. I can get Sunday and Monday to show by themselves correctly but when Tuesday is added everything goes blank and Sun. and Mon. no longer show. it has forced me into filling a dataset for each grid which takes time and makes the program look like it's hanging. I know it is an odd question but I have no clue as to why it works a couple times and then breaks if you add more and even breaks the previous ones that did work. trust me, I have tried many things from using one dataset one ...Show All

  • Visual Studio Express Editions Compile project from command line

    I would like to build a C# project from the command line. I know of the compileroptions that can be used to specify the output etc. but what do I give as an argument to tell the compiler to build the complete project. I thought maybe it would require the .csproj file. Hi stanjo, This post ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=653855&SiteID=1 ) should answer you question. Scott ...Show All

  • Visual Studio problem adding solution to Sourcesafe

    Very simple task you'd think, add a solution to sourcesafe and keep it in the same directory structure and location with reference to the root, NOT so!!!! SourceSafe through Visual Studio keeps creating additional structures. This is ridiculous. My solution is at C:\projects\Prototypes\IDE\MySolution\MySolution.sln The root of the present SourceSafe is C:\projects 1. I select the solution in Visual Studio and select "Add solution to source control". A dialog appears prompting me with name: MySolution.root location: $/ This creates a node name MySolution.root in the root dir C:\projects, which I do not want. 2. Instead I change the name to MySolution and change the location to C:\projects\Prototypes\IDE\ This then, frustratingly, ...Show All

  • Commerce Server Extending Baskets and PurchaseOrders

    If I want to add properties to both the Basket and Purchase Order classes, do I have to extend each of them separately The Documentation says not to extend from OrderForm directly. Also, if the answer is that I indeed need to extend both the PurchaseOrder and Basket classes, how do I map the basket changes since there doesn't appear to be a Basket class for the storage mapping anywhere. Thanks, Dave Hey Dave, Vinod blogged about how to add columns to the OrderTemplatesAndBaskets table . As for the notion of the automagic with column names it isn't like that anymore with CS2007. The reason being that there was a change in serialization strategy. It's all moving in the right direction towards a full blown entity mapping system. ...Show All

  • SQL Server If Syntax in Report Builder

    I wanted to apply formula for the date field in my report created with Report Builder.I guess I need to use the functions which are available in the same. Basically I wanted a simple formula, if date exists says "Yes" if not 'No" If(rec_date isnull,"No","Yes") but is not taking. Please help me in getting the correct syntax. Thanks in advance. Praks Thanks to both of you for your time. But still it doesn't work. First of all Report Builder has only limited fuctions available. Below formulas work. IF(state="NJ","Yes","No") IF(rec_date=#7/31/2006#,"No","Yes"). Here state and rec_date are the fields. Please not ...Show All

  • Visual C++ Compiling from VS .Net 2k3 to VS .Net 2k5

    Hi all, I have recently received code which I must re-compile, the only thing is that the code was compiled in VS 2003 .Net, and I'm trying to re-compile it in VS 2005. I'm receiving alot of errors, and I have no Idea how to fix them, could any one please help !! Thanx in advance. ERRORS: Error 1 error LNK2001: unresolved external symbol " .cctor@@$$FYMXXZ " ( .cctor@@$$FYMXXZ ) Stdafx.obj Error 2 error LNK2001: unresolved external symbol " .cctor@@$$FYMXXZ " ( .cctor@@$$FYMXXZ ) AssemblyInfo.obj Error 3 error LNK2001: unresolved external symbol " .cctor@@$$FYMXXZ " ( .cctor@@$$FYMXXZ ) AssemblyInfo.obj Error 4 error LNK2001: unresolved external symbol " .cctor@@$$FYMXXZ " ( .cctor@@$$FYMXXZ ) Gdi.obj Error 5 error LNK2001: un ...Show All

  • SQL Server Is there a way to loop through tables in update TSQL statements, based on name criteria?

    I'm updating a table on my SQL server with fields from tables in a linked server. This linked server has about 100-150 table names that all start with public.CF and was hoping I could just create some sort of loop to update my table with all the tables that start with public.CF* name. All the tables have the same fields names. Below is my statement I use to update my table, I would just want to run a loop and change out public.CFATY with the next table name like public.CFATZ. Any help would be greatly appreciated and would save me hours of work. Thanks SELECT * FROM OPENQUERY(SCH,'SELECT [Account_ID], [Last_Action_Date], [Next_Work_Date] FROM [public.CFATY]') AS A INNER JOIN WorkList AS B ON A.Account_ID = B.[ACCOUNT#] Update WorkLi ...Show All

  • Visual Basic i dont know how to connect to database in vb.net iwant to lear through wizard

    i dont know how to connect to database in vb.net i want to lear through wizard i am using vb.net 2005 and my database server is sqlserver2005 i dontknow how to connect to database i would like to learn to connect to database through wizard manner can any one please tell me or send the links where i can learn to connect to database through wizard manner Try taking a look at the VB data samples located here: http://msdn2.microsoft.com/en-us/vbasic/ms789075.aspx#data ...Show All

  • Visual Basic copying a Uint16 array

    Hi Everyone, I am new to VB . net, (used to be VB6) and have a problem copying a Uint16 array to another uint16 array. This is the code: Dim buffer(image_height, image_width) As System.UInt16 For a = 1 To image_height - 1 retcode = FLIGrabRow(device, buffer(a, 1), image_width) Stat_bar.Panels(2).Text = Format((100 * a) / image_height, "0") & "%" Next Dim buffer2(image_width * image_height) As System.UInt16 For a = 1 To image_height For b = 1 To image_width buffer2(a * b) = buffer(a, b) Next Next End Code So I have a 2D array named "buffer" that i need to copy to a 1D array, named "buffer2". The code executes witho ...Show All

  • Visual Studio Team System Team Foundation Servers Command Line Tools.wmv

    I found a short video from the team system rocks site ( http://vstsrocks.net ) relating to TF command line utility h.exe. But I can't seem to find this utility in my Team Explorer setup. Does the h.exe still exist or has it been replaced by the tf command line utility ...Show All

©2008 Software Development Network