CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > Visual Basic


Visual Basic Discuss Visual Basic programing.


Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 12-20-2006, 12:32 PM
 
Join Date: Jun 2005
Location: USA
Posts: 180
rweatherly is on a distinguished road
Random Access

I am trying to read the first xxx characters of a .bmp file into an array so I can get the header data. I have done this in VB6, but am having real time with the new lingo.

Can anyone help?
Tweet this Post!Share on Facebook
Reply With Quote

  #2  
Old 12-20-2006, 01:11 PM
Switcher's Avatar
Moderator
 
Join Date: Apr 2005
Location: Vectorink.com
Posts: 3,659
Blog Entries: 2
Switcher is on a distinguished road

Originally Posted by rweatherly View Post
I am trying to read the first xxx characters of a .bmp file into an array so I can get the header data. I have done this in VB6, but am having real time with the new lingo.

Can anyone help?
I assume you mean VB.NET?


.
Tweet this Post!Share on Facebook
Reply With Quote

  #3  
Old 12-20-2006, 01:19 PM
Switcher's Avatar
Moderator
 
Join Date: Apr 2005
Location: Vectorink.com
Posts: 3,659
Blog Entries: 2
Switcher is on a distinguished road

I'm not really sure what your asking?

This works in VB.NET 2003. So it should work in 2005. (This is some code I wrote a while back, as an example only)


Dim zzz1 As String
Dim zzz2 As String

zzz1 = Format(e.X, "##0.000")
zzz2 = Format(e.Y, "##0.000")

StatusBarPanel1.Text = (" X: " & zzz1 & " " & "Y: " & zzz2 & " " & "Z: 0.100")






.
Tweet this Post!Share on Facebook
Reply With Quote

  #4  
Old 12-20-2006, 01:20 PM
Switcher's Avatar
Moderator
 
Join Date: Apr 2005
Location: Vectorink.com
Posts: 3,659
Blog Entries: 2
Switcher is on a distinguished road

Are you looking for a decimal place?






.
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 12-20-2006, 02:31 PM
 
Join Date: Jun 2005
Location: USA
Posts: 180
rweatherly is on a distinguished road

Sorry, I must have been too vague with my problem. What I want to do is open a file for random access, and read from it. In VB6 (from what I remember) you would do this:

dim a as string * 1
open filename$ for random len =1
recloc=100
get 1, recloc, a

The above would get the character at position 100 in the file.

With VB Express (which I think is the same as vb.net) you have a differnet open statement and get statement. I have tried them, but I get a record length error.

I was hoping someone had some sample code that worked.
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6  
Old 12-20-2006, 03:10 PM
Switcher's Avatar
Moderator
 
Join Date: Apr 2005
Location: Vectorink.com
Posts: 3,659
Blog Entries: 2
Switcher is on a distinguished road

Public Sub GetPixel_Example(e As PaintEventArgs)
' Create a Bitmap object from an image file.
Dim myBitmap As New Bitmap("Grapes.jpg")
' Get the color of a pixel within myBitmap.
Dim pixelColor As Color = myBitmap.GetPixel(50, 50)
' Fill a rectangle with pixelColor.
Dim pixelBrush As New SolidBrush(pixelColor)
e.Graphics.FillRectangle(pixelBrush, 0, 0, 100, 100)
End Sub
Link:
http://msdn.microsoft.com/library/en...asp?frame=true

Like the RGB color value? The code above gets the "X=50 & Y=50" location of a .jpg (just change to .bmp)

I think that everything in .net has to be declared as a "New Bitmap" no matter what (GDI+ thing, going on)




.
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 12-20-2006, 05:33 PM
 
Join Date: Jun 2005
Location: USA
Posts: 180
rweatherly is on a distinguished road

Thanks for the input, but I should not have mentioned bitmap. My question is how to open and read from a random access file.
Tweet this Post!Share on Facebook
Reply With Quote

  #8   Ban this user!
Old 12-21-2006, 08:20 AM
 
Join Date: Nov 2006
Location: USA
Posts: 590
NinerSevenTango is on a distinguished road

I personally can't stand dot net.

Sorry, just couldn't resist.

I found AutoIT does what I want without all the random web searching it takes to find out how to do simple things.

I'm sure it's just a mental limitation of mine, but nowhere could I find a concise description of the overall scheme of things. And I found examples of ten lines of code to do simple functions. After spending weeks playing with the language to write a simple routine I chucked the whole thing and went looking for another language.

From now on, I will stay away from any software with the word "enterprise" anywhere on its website.

End of rant, please disregard.

--97T--
Tweet this Post!Share on Facebook
Reply With Quote

  #9   Ban this user!
Old 12-21-2006, 02:51 PM
 
Join Date: Jun 2005
Location: USA
Posts: 180
rweatherly is on a distinguished road

97T-

I agree with you. Maybe I am just not the organized type, but it has gotton so "structured" that it makes it difficult to do simple tasks. I realize that it also allows more felxability, but it makes it too difficult to learn and use for simple tasks.
Tweet this Post!Share on Facebook
Reply With Quote

  #10   Ban this user!
Old 02-05-2007, 10:38 PM
 
Join Date: Feb 2007
Location: usa
Posts: 7
jaredp is on a distinguished road

You may have already figured out your problem, but if it helps I had the same problems with some fills in VB6 and found that it was reading some of the data as on end of file code. I was able to open in binary and loop through till I got the data I needed.
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 02-11-2007, 05:35 AM
 
Join Date: Feb 2007
Location: USA
Posts: 2
rp74 is on a distinguished road

rweatherly- Did you figure out the code for file I/O? I have done this in VS '03, and can pull out some code if you still need it.
Tweet this Post!Share on Facebook
Reply With Quote

  #12   Ban this user!
Old 02-11-2007, 12:34 PM
 
Join Date: Jun 2005
Location: USA
Posts: 180
rweatherly is on a distinguished road

rp74-

Thanks -- I found several ways to do it. In the end I decided that I would just stick with doing it in Excel.
Tweet this Post!Share on Facebook
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 11:54 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353