Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
V

vertig0730

@vertig0730
About
Posts
50
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • c++ to vb.net
    V vertig0730

    Thanks for the start but its out put is not right. I am only getting the first line of the file. it is not a txt file but a .bin if i try a text file it works fine. any help. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work -- modified at 22:48 Monday 23rd January, 2006

    Visual Basic csharp c++

  • c++ to vb.net
    V vertig0730

    i need to convert #include "stdafx.h" #using using namespace System; int _tmain() { unsigned char a1[16]; unsigned char a2[16]; unsigned int tempWRITE; //FILE *in = fopen("c:/test.bin","r"); FILE *in = fopen("c:/test.bin","rb"); FILE *out = fopen("c:/new.txt","w"); while(!feof(in)) { fread(a1,1,16,in); a2[0] = a1[3]; a2[1] = a1[2]; a2[2] = a1[1]; a2[3] = a1[0]; a2[4] = a1[5]; a2[5] = a1[6]; a2[6] = a1[4]; a2[7] = a1[7]; a2[8] = a1[9]; a2[9] = a1[11]; a2[10] = a1[8]; a2[11] = a1[10]; a2[12] = a1[14]; a2[13] = a1[12]; a2[14] = a1[15]; a2[15] = a1[13]; fwrite(a2,1,16,out); } fclose(in); fclose(out); return 0; } 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic csharp c++

  • some help with a simple project
    V vertig0730

    This program converts a .bin to a readable file but it also increase the overall size(not good) any help or ideas. #include "stdafx.h" #using using namespace System; int _tmain() { unsigned char a1[16]; unsigned char a2[16]; unsigned int tempWRITE; //FILE *in = fopen("c:/test.bin","r"); FILE *in = fopen("c:/test.bin","rb"); FILE *out = fopen("c:/new.txt","w"); while(!feof(in)) { fread(a1,1,16,in); a2[0] = a1[3]; a2[1] = a1[2]; a2[2] = a1[1]; a2[3] = a1[0]; a2[4] = a1[5]; a2[5] = a1[6]; a2[6] = a1[4]; a2[7] = a1[7]; a2[8] = a1[9]; a2[9] = a1[11]; a2[10] = a1[8]; a2[11] = a1[10]; a2[12] = a1[14]; a2[13] = a1[12]; a2[14] = a1[15]; a2[15] = a1[13]; fwrite(a2,1,16,out); } fclose(in); fclose(out); return 0; } 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Managed C++/CLI help

  • Crystal reports drill down
    V vertig0730

    I need a report to automatically drill down on the first group in the report CrystalReportViewer1.DrillDownOnGroup but the group is always different any ideas 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic

  • Data from external file
    V vertig0730

    Thanks for the directions I did this Imports system imports system.io then in the form load Try ' Create an instance of StreamReader to read from a file. Dim sr As StreamReader = New StreamReader("MyFile.txt") Dim line1 As String ' Read and display the lines from the file until the end ' of the file is reached. Do line1 = sr.ReadLine() ComboBox3.Items.Add(line1) Loop Until line1 Is Nothing ComboBox3.Items.Add(sr) sr.Close() Catch Er As Exception ' Let the user know what went wrong. Console.WriteLine("The file could not be read:") Console.WriteLine(Er.Message) End Try 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic help

  • Data from external file
    V vertig0730

    I would like to create a external text file or .inf file to hold the list for a combobox. Any help or direction would be great. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic help

  • Fast Printing in VB dot NET (DOS mode)
    V vertig0730

    Are you trying to make the report print on opening or Without the dialog box 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic csharp help

  • Crystal Report Error (Urgent)
    V vertig0730

    from google search: vb.net crystal report installer http://www.vbcity.com/forums/faq.asp?fid=54&cat=Crystal Reports The Solution: Some basic info first; I was using VB.Net (Visual Studio.net 2003) in a Windows Form. The version of Crystal Reports used was that which came bundled with Visual Studio (this appears to be 9.1.5000.0 according to the reference within VB Studio). The reports used are embedded within the project. Here’s what I did. Apologies in advance if much of this is common knowledge –but it’s usually the simplest point that if overlooked causes the whole thing to go pear shaped and fail to work. Producing the Deployment Project: Open Solution Explorer, right click on the “Solution Name” at the top and Add a New Project. On the window that appears, move to Setup and Deployment Projects. Click on Setup Project (not the wizard), put a name for your deployment project (make a note of the location where the folder that the deployment project will be created in) and then click OK. A File System dialog will appear – solution explorer should be displayed on the left of screen. Within solution explorer – right click over your deployment project and select Add – Project Output. Another window will appear – select Primary Output (make sure configuration is showing Active) and click OK. This will result in the detected dependencies being updated & a primary output icon appearing in the deployment project. Right click on the deployment project name again and Add – Merge Modules. Add the following modules. Crystal_Database_Access2003.msm Crystal_Database_Access2003_enu.msm Crystal_Managed2003.msm Crystal_regwiz2003.msm VC_User_CRT71_RTL_X86_---.msm VC_User_STL71_RTL_X86_---.msm These were the appropriate modules for my application given that I am using VS 2003. You can check your specific needs by going to this site click here And finding the environment appropriate to you i.e. VB.net 2003, Full versions of Crystal Reports etc… Right click on Crystal_regwiz2003.msm and go to its properties. Enlarge the MergeModuleProperties tree and enter the product licence key. This can be found by opening the Help menu on Visual Studio and then opening About Microsoft Development Environment. You will see the 19 character licence code for Crystal Reports in the Installed Products List. Go onto Build – Configuration Manager . Check that the Project & Deployment Project which appear are set to “Release” and the Build check box for each is checked. Build the Project. If all is well the build

    Visual Basic csharp help workspace

  • combobox question
    V vertig0730

    I know that this is probly how the control was made but is there a way to adjust the scroll bar to be wider. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic question

  • How to create shortcut key in vb.net toolbar
    V vertig0730

    You need a MainMenu. It is a function of the Menu control 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic csharp help tutorial

  • Crystal Selection Formula
    V vertig0730

    I need to do an "AND" statment in my selection formula CrystalReportViewer1.SelectionFormula = "{events.ddate} = " & (moddate) & "" And "{child.name} = '" & (modname) & "'" each formula works on its own but when I run them togther I get an error about child.name can not be converted to a long I have also tried CrystalReportViewer1.SelectionFormula = "{events.ddate} = " & (moddate) & "" & "{child.name} = '" & (modname) & "'" That gives me an error that say "The rest of the statement does not look apart of the formula" HELP! 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic help json

  • [Message Deleted]
    V vertig0730

    If you want to be single why are you being so short? Rethink this Dim FirstNum, SecondNum As Short 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic

  • Label on form with Image background
    V vertig0730

    Hello, I am using a Form with a Image for a background. But i want my Labels to alow the imaged background to come through like the windows desktop in XP does for the icons text. OK i know its simple please remind me. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic

  • Confusion on the way Firewall works.
    V vertig0730

    Just like everything in life there is an exception. Someone has told the firewall to "trust" site www.microsoftelearning.com. you have to get the system admin to add the codeproject to your list of safe sites. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    ASP.NET com sysadmin

  • Application container
    V vertig0730

    I know how much you want to build your own but try this one. http://www.download.com/Arlington-Kiosk-Browser/3000-2356_4-10279241.html?tag=lst-0-1[^] 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic asp-net docker hardware sales question

  • HOW WE CLOSE A FORM FROM OTHER END
    V vertig0730

    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci986256,00.html[^ Maybe this will help you 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic

  • how to dissable print option in word and also dissable addin's
    V vertig0730

    Maybe Dave can double check me but if you assign the key sequence to something else like form1.focus then it might bypass the print function. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic tutorial com help

  • PDF-417 barcode readers
    V vertig0730

    try ebay i got a bunch of barcode readers for work at about $10 a piece 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    The Lounge css question

  • Simple Scrollbar question
    V vertig0730

    Wait holdup I dont think so. If you are using vb .net standard winform one of the properties for the form is AutoScroll which by default is set to false if you set it to true it will Automatically put Scroll Bars on a form when they are necassary. 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic question

  • Seperate decimal from whole number
    V vertig0730

    I am trying to edit the decimal part of a number so if a person enters 40.25 i can chane it to 40.375 but i need it to work with any whole number any ideas? I was thinking i could use: dim a as decimal dim b as integer dim c as decimal a = textbox1.text b = textbox1.text if a - b = .25 then c = b + .375 textbox2.text = c I wished we used the metric system in the US would make my like easy 1. Out of clutter, find simplicity. 2. From discord, find harmony. 3. In the middle of difficulty lies opportunity. Albert Einstein three rules of work

    Visual Basic question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups